From puneeth074 at gmail.com Wed Mar 2 12:33:42 2016 From: puneeth074 at gmail.com (puneeth kumar) Date: Wed, 02 Mar 2016 12:33:42 +0100 Subject: [TYPO3-dev] =?utf-8?q?_How_to_create_custom_modules_in_Typo3_7=2E?= =?utf-8?b?Ni4y?= Message-ID: Hi I am new to Typo3, I am using typo3 since last few days, I want to know how to create custom modules in typo3. If any one developed custom module the please share me the sample custom module. Regards, puneeth From thomas at visualworx.de Thu Mar 3 15:29:12 2016 From: thomas at visualworx.de (Thomas Mammitzsch) Date: Thu, 3 Mar 2016 15:29:12 +0100 Subject: [TYPO3-dev] setUid on new model instance Message-ID: Hi list, is it possible (i know its not recommended) to set the uid of a newly created model instance somehow? I tried it via a setUid-Setter method in the model, but the instance doesn't get persisted it seems, even after persistAll call. Btw. its extbase 6.2 regards, Thomas From ms at ipandmore.de Thu Mar 3 15:36:13 2016 From: ms at ipandmore.de (M S) Date: Thu, 03 Mar 2016 15:36:13 +0100 Subject: [TYPO3-dev] =?utf-8?q?_Repository_doesn=27t_save_at_updateAction?= Message-ID: Hi all, i am trying to edit an object but it doesn't save my changes at updateAction. Can someone help me with this? /** * action edit * * @param \voiceRec\voiceRec\Domain\Model\Voicerecording $voicerecording * @ignorevalidation $voicerecording * @return void */ public function editAction(\voiceRec\voiceRec\Domain\Model\Voicerecording $voicerecording) { $this->view->assign('voicerecording', $voicerecording); } /** * action update * * @param \voiceRec\voiceRec\Domain\Model\Voicerecording $voicerecording * @return void */ public function updateAction(\voiceRec\voiceRec\Domain\Model\Voicerecording $voicerecording) { $voicerecording->setCommentator('test'); $this->repositoryService->get('Voicerecording')->update($voicerecording); $this->redirect($_REQUEST['backAction'], $_REQUEST['backController'], $_REQUEST['backExtension'], $arguments); } -- Kind regards, Michael forum.typo3.org/index.php?t=tree&th=208338 direct_mail forum.typo3.org/index.php?t=tree&th=210808 powermail forum.typo3.org/index.php?t=tree&th=212804 Core forum.typo3.org/index.php?t=tree&th=213115 clickenlarge From edrush at posteo.de Thu Mar 3 15:42:48 2016 From: edrush at posteo.de (Wolfram Eberius) Date: Thu, 03 Mar 2016 15:42:48 +0100 Subject: [TYPO3-dev] =?utf-8?q?_Re=3A_Standalone_View_without_links?= References: Message-ID: Had a similar situation - great, works - thanks a lot! From ms at ipandmore.de Thu Mar 3 16:02:43 2016 From: ms at ipandmore.de (M S) Date: Thu, 03 Mar 2016 16:02:43 +0100 Subject: [TYPO3-dev] =?utf-8?q?_Re=3A_Repository_doesn=27t_save_at_updateA?= =?utf-8?q?ction?= References: Message-ID: Btw, it works if i am removing an object. $this->repositoryService->get('Voicerecording')->remove($voicerecording); But the Edit-Action dosn't work? -- Kind regards, Michael forum.typo3.org/index.php?t=tree&th=208338 direct_mail forum.typo3.org/index.php?t=tree&th=210808 powermail forum.typo3.org/index.php?t=tree&th=212804 Core forum.typo3.org/index.php?t=tree&th=213115 clickenlarge From richard at ocular.co.nz Thu Mar 3 21:50:25 2016 From: richard at ocular.co.nz (Richard Davies) Date: Fri, 4 Mar 2016 09:50:25 +1300 Subject: [TYPO3-dev] setUid on new model instance In-Reply-To: References: Message-ID: Hey Thomas, I would recommend not doing this. If you create an object that is related to other extbase objects this could break those relations. That said, my workaround idea would be: - Create object - Add to repository - Persist - call getUid() - Use a $GLOBALS['TYPO3_DB'] query set uid = x where uid = y - If you need to use the object to create relations with the correct uid, load the updated object from the repository Richard On 4 March 2016 at 03:29, Thomas Mammitzsch wrote: > Hi list, > > is it possible (i know its not recommended) to set the uid of a newly > created model instance somehow? I tried it via a setUid-Setter method in > the model, but the instance doesn't get persisted it seems, even after > persistAll call. > Btw. its extbase 6.2 > > regards, Thomas > _______________________________________________ > TYPO3-dev mailing list > TYPO3-dev at lists.typo3.org > http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-dev > From typo3 at 2016.schams.net Sat Mar 5 02:15:15 2016 From: typo3 at 2016.schams.net (Michael Schams) Date: Sat, 05 Mar 2016 12:15:15 +1100 Subject: [TYPO3-dev] TYPO3 CMS 8 and REST API Message-ID: Hi TYPO3 community! Work on the next TYPO3 CMS development cycle has just began and I look forward playing with the first v8 sprint releases later this months: https://typo3.org/news/article/kicking-off-typo3-v8-development/ Last year (early June 2015 to be precise) I triggered a conversation re headless TYPO3 CMS and a RESTful API provided by the TYPO3 core "out-of-the-box": http://lists.typo3.org/pipermail/typo3-dev/2015-June/049810.html I understand that a few extensions already exist (e.g. EXT:restler and EXT:rest) which aim to provide possible solutions. I dare to ask the question again, if any projects/ideas/plans exist to integrate this technology in the core of TYPO3 - maybe in version 8 at one point? The main reason why I am so keen on this topic is, that we see this as an important selling point. Competitive CMS such as WordPress or Drupal claim they support REST APIs already for example (having said that: I have not worked with this yet, so I can't confirm this). Also, clients have asked us about this and I doubt, that we are the only TYPO3 company in world facing these questions :-) Any feedback or a status update in this regards? Cheers Michael From luberti at archicoop.it Sat Mar 5 10:58:36 2016 From: luberti at archicoop.it (Ivano Luberti) Date: Sat, 5 Mar 2016 10:58:36 +0100 Subject: [TYPO3-dev] TYPO3 CMS 8 and REST API In-Reply-To: References: Message-ID: Hi , I recently read this interview http://typo3worx.eu/2016/03/miles-ahead-typo3-v8-development-started/ to Matthias Schreiber and Benni Mack. They talk about new developments to allow integration of 3rd parties products via API and /or composer. You should/could ping them on slack and talk about your ideas and maybe share their answers on the list. Il 05/03/2016 02:15, Michael Schams ha scritto: > Hi TYPO3 community! > > Work on the next TYPO3 CMS development cycle has just began and I look > forward playing with the first v8 sprint releases later this months: > > https://typo3.org/news/article/kicking-off-typo3-v8-development/ > > Last year (early June 2015 to be precise) I triggered a conversation re > headless TYPO3 CMS and a RESTful API provided by the TYPO3 core > "out-of-the-box": > > http://lists.typo3.org/pipermail/typo3-dev/2015-June/049810.html > > I understand that a few extensions already exist (e.g. EXT:restler and > EXT:rest) which aim to provide possible solutions. I dare to ask the > question again, if any projects/ideas/plans exist to integrate this > technology in the core of TYPO3 - maybe in version 8 at one point? > > The main reason why I am so keen on this topic is, that we see this as > an important selling point. Competitive CMS such as WordPress or Drupal > claim they support REST APIs already for example (having said that: I > have not worked with this yet, so I can't confirm this). Also, clients > have asked us about this and I doubt, that we are the only TYPO3 company > in world facing these questions :-) > > Any feedback or a status update in this regards? > > > Cheers > Michael > > > _______________________________________________ > TYPO3-dev mailing list > TYPO3-dev at lists.typo3.org > http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-dev > -- ================================================== dott. Ivano Mario Luberti Archimede Informatica societa' cooperativa a r. l. Sede Operativa Via Gereschi 36 - 56126- Pisa tel.: +39-050- 580959 tel/fax: +39-050-8932061 web: www.archicoop.it ================================================== From dmitry.dulepov at gmail.com Sat Mar 5 14:49:43 2016 From: dmitry.dulepov at gmail.com (Dmitry Dulepov) Date: Sat, 05 Mar 2016 16:49:43 +0300 Subject: [TYPO3-dev] [TYPO3-english] RealURL 2.0 Message-ID: Hello! Since RealURL 2.0 went live a couple of days ago, active support for version 1 is stopped. Forge project for version 1 is now hidden. I will make one final review of feature requests there to see what I can copy to new tracker. New project page is here: https://github.com/dmitryd/typo3-realurl Bugs for v2 only should be sent here: https://github.com/dmitryd/typo3-realurl/issues Documentation is here: https://github.com/dmitryd/typo3-realurl/wiki Anybody now can collaborate and submit a pull request in an easy way. Right now 16 of 19 pull requests were merged (3 declined). Currently I aim to release a new version on a daily basis if there are bug reports that I can fix. The plan is to continue this until the end of the next week. Than periods of updates will be longer. I do not actively monitor mailing lists but I will try to answer questions if you have them. Happy realurl-ing! -- Dmitry Dulepov Today is a good day to have a good day. From fsu-lists at cobweb.ch Mon Mar 7 08:28:22 2016 From: fsu-lists at cobweb.ch (=?UTF-8?B?RnJhbsOnb2lzIFN1dGVy?=) Date: Mon, 07 Mar 2016 08:28:22 +0100 Subject: [TYPO3-dev] [TYPO3-english] RealURL 2.0 In-Reply-To: References: Message-ID: Hi Dmitry, > Currently I aim to release a new version on a daily basis if there are > bug reports that I can fix. The plan is to continue this until the end > of the next week. Than periods of updates will be longer. Thanks a lot for all that work! -- Francois Suter Work: Cobweb Development Sarl - http://www.cobweb.ch TYPO3: Help the project! - http://typo3.org/contribute/ Appreciate my work? Support me - http://www.monpetitcoin.com/en/francois/support-me/ From jigal.van.hemert at typo3.org Tue Mar 8 07:26:22 2016 From: jigal.van.hemert at typo3.org (Jigal van Hemert) Date: Tue, 8 Mar 2016 07:26:22 +0100 Subject: [TYPO3-dev] How to create custom modules in Typo3 7.6.2 In-Reply-To: References: Message-ID: Hi, On 02/03/2016 12:33, puneeth kumar wrote: > I am new to Typo3, I am using typo3 since last few days, I want to > know how to create custom modules in typo3. If any one developed custom > module the please share me the sample custom module. Both the core and TER are full of (system)extensions that provide one or more backend modules. If you plan to use extbase to write the code I'd advise to have a look at the book by Patrick Lobacher and Michael Schams [1]. It shows you how to write both frontend plugins and backend modules, how to register them and how to use templates to make them fit in with the rest of the TYPO3 backend. Many well-known extensions provide a backend module. You could have a look at their code and see how they register the module and how the code and templates of the module are built. [1] https://leanpub.com/typo3extbase-en -- Jigal van Hemert TYPO3 CMS Active Contributor TYPO3 .... inspiring people to share! Get involved: typo3.org From jigal.van.hemert at typo3.org Tue Mar 8 08:07:15 2016 From: jigal.van.hemert at typo3.org (Jigal van Hemert) Date: Tue, 8 Mar 2016 08:07:15 +0100 Subject: [TYPO3-dev] Last updated: Page and Content In-Reply-To: References: Message-ID: Hi, On 25/02/2016 11:26, Gion Koch wrote: > @Bernd > Your are right. For now, only the change of default content elements > like a textblock or something similar should be considered. > > @Jigal > I am using Typo3 6.2.13, still need to update to the latest, and the > following TS Snippet is used for preparing the SYS_LASTCHANGED for > displaying in the frontend: > > lastUpdate = TEXT > lastUpdate { > data = page:SYS_LASTCHANGED Shouldn't this be register:SYS_LASTCHANGED ? The field in the page record is only updated after the page is rendered. It then turns into a chicken-egg story (the page record contains the information of the previous change, during rendering the new date/time is calculated and stored in the page record, you display the previous value). > It is always the same result. I am editing a normal text element, but > the SYS_LASTCHANGED field doesn't update. I've checked the result on the > page and to be sure directly in the database. Probably I will test this > in an empty environment with 6.2.13 and the latest version. I've tested with page.999 = TEXT page.999 { data = register : SYS_LASTCHANGED strftime = %c wrap = Last modified:| } Changing the text of a text content element also changed the timestamp. -- Jigal van Hemert TYPO3 CMS Active Contributor TYPO3 .... inspiring people to share! Get involved: typo3.org From puneeth074 at gmail.com Tue Mar 8 10:16:23 2016 From: puneeth074 at gmail.com (puneeth kumar) Date: Tue, 08 Mar 2016 10:16:23 +0100 Subject: [TYPO3-dev] =?utf-8?q?How_to_create_custom_modules_in_Typo3_7=2E6?= =?utf-8?q?=2E2?= References: Message-ID: Hi , Thanks for the replay, can you please share me any of the custom extensions you have developed here is my mail id: puneeth074 (at) gmail.com From post at bergische-webschmiede.de Wed Mar 9 13:07:32 2016 From: post at bergische-webschmiede.de (Stefan Padberg) Date: Wed, 9 Mar 2016 13:07:32 +0100 Subject: [TYPO3-dev] Change TCA with ExtensionManagementUtility Message-ID: Hi, I have to change the TCA. Adding columns and fields to palettes is easily done with the appropriate methodes 'addTCAcolumns', 'addToAllTCATypes', 'addFieldsToPalette' and 'addFieldsToAllPalettesOfField'. But how can I delete fields from types and palettes? I cannot find appropriate methods in the ExtensionManagementUtility. I only know $GLOBALS['TCA']['my_extension']['palettes'][10]['showItem'] = 'field1,field2,field3'; Is this recommended? Best regards Stefan -- Bergische Webschmiede Dipl.-Ing. Stefan Padberg TYPO3-Integrator und Webprogrammierer :: Borner Str. 18 - 42349 Wuppertal :: +49 202 97648355 :: +49 173 9219845 :: post at bergische-webschmiede.de :: http://www.bergische-webschmiede.de From jigal.van.hemert at typo3.org Wed Mar 9 14:13:04 2016 From: jigal.van.hemert at typo3.org (Jigal van Hemert) Date: Wed, 9 Mar 2016 14:13:04 +0100 Subject: [TYPO3-dev] Change TCA with ExtensionManagementUtility In-Reply-To: References: Message-ID: Hi, On 09/03/2016 13:07, Stefan Padberg wrote: > I have to change the TCA. > > Adding columns and fields to palettes is easily done with the > appropriate methodes 'addTCAcolumns', 'addToAllTCATypes', > 'addFieldsToPalette' and 'addFieldsToAllPalettesOfField'. > > But how can I delete fields from types and palettes? I cannot find > appropriate methods in the ExtensionManagementUtility. You can easily disable fields (for all or for specific types) with Page TSconfig. It's not really necessary to remove things permanently from TCA. https://docs.typo3.org/typo3cms/TSconfigReference/PageTsconfig/TCEform/Index.html -- Jigal van Hemert TYPO3 CMS Active Contributor TYPO3 .... inspiring people to share! Get involved: typo3.org From post at bergische-webschmiede.de Wed Mar 9 16:00:20 2016 From: post at bergische-webschmiede.de (Stefan Padberg) Date: Wed, 9 Mar 2016 16:00:20 +0100 Subject: [TYPO3-dev] Change TCA with ExtensionManagementUtility In-Reply-To: References: Message-ID: Am 09.03.2016 um 14:13 schrieb Jigal van Hemert: > Hi, > > On 09/03/2016 13:07, Stefan Padberg wrote: >> I have to change the TCA. >> >> Adding columns and fields to palettes is easily done with the >> appropriate methodes 'addTCAcolumns', 'addToAllTCATypes', >> 'addFieldsToPalette' and 'addFieldsToAllPalettesOfField'. >> >> But how can I delete fields from types and palettes? I cannot find >> appropriate methods in the ExtensionManagementUtility. > > You can easily disable fields (for all or for specific types) with Page > TSconfig. It's not really necessary to remove things permanently from TCA. > > https://docs.typo3.org/typo3cms/TSconfigReference/PageTsconfig/TCEform/Index.html Yes, I know, but I want to do it in an extension. -- Bergische Webschmiede Dipl.-Ing. Stefan Padberg TYPO3-Integrator und Webprogrammierer :: Borner Str. 18 - 42349 Wuppertal :: +49 202 97648355 :: +49 173 9219845 :: post at bergische-webschmiede.de :: http://www.bergische-webschmiede.de From jigal.van.hemert at typo3.org Wed Mar 9 17:00:36 2016 From: jigal.van.hemert at typo3.org (Jigal van Hemert) Date: Wed, 9 Mar 2016 17:00:36 +0100 Subject: [TYPO3-dev] Change TCA with ExtensionManagementUtility In-Reply-To: References: Message-ID: Hi, On 09/03/2016 16:00, Stefan Padberg wrote: > Am 09.03.2016 um 14:13 schrieb Jigal van Hemert: >> You can easily disable fields (for all or for specific types) with Page >> TSconfig. It's not really necessary to remove things permanently from TCA. >> >> https://docs.typo3.org/typo3cms/TSconfigReference/PageTsconfig/TCEform/Index.html > > Yes, I know, but I want to do it in an extension. \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPageTSConfig() -- Jigal van Hemert TYPO3 CMS Active Contributor TYPO3 .... inspiring people to share! Get involved: typo3.org From typo3 at 2016.schams.net Thu Mar 10 04:01:24 2016 From: typo3 at 2016.schams.net (Michael Schams) Date: Thu, 10 Mar 2016 14:01:24 +1100 Subject: [TYPO3-dev] How to include DataTables in the BE of TYPO3 7.6.x and above Message-ID: Hi, What is the best way to include the jQuery plug-in DataTables [1] in the Backend of TYPO3 CMS 7.6 and how can I use it? I tried several ways, but they all fail in 7.6.4. The HTML source shows that require.js [2], jquery [3] and DataTables [4] are included ([2] and [3] from the core, [4] from my extension). As soon as I include [4], Firebug throws the following error: --- cut here --- Error: Mismatched anonymous define() module: function ( $ ) { "use strict"; return factory( $, window, document ); } http://requirejs.org/docs/errors.html#mismatch --- cut here --- I do not know if this causes problems, JavaScript in my own MyExtension.js (see below) file gets executed without problems. My main problem is, I do not know how to trigger DataTables once included. $('table#mytable').DataTables(); $().DataTables(); $.DataTables(); I included my own CSS and JS files via the be.container ViewHelper [5] as follows: --- cut here --- --- cut here --- Any ideas what I am doing wrong here? Cheers Michael [1] https://www.datatables.net [2] file: sysext/core/Resources/Public/JavaScript/Contrib/require.js [3] file: sysext/core/Resources/Public/JavaScript/Contrib/jquery/jquery-2.1.4.js [4] file: ../typo3conf/ext/myextension/Resources/Public/JavaScript/Libraries/jquery.dataTables-1.10.11.js [5] https://fluidtypo3.org/viewhelpers/fluid/master/Be/ContainerViewHelper.html From ms at ipandmore.de Thu Mar 10 09:27:39 2016 From: ms at ipandmore.de (M S) Date: Thu, 10 Mar 2016 09:27:39 +0100 Subject: [TYPO3-dev] =?utf-8?q?_Re=3A_Repository_doesn=27t_save_at_updateA?= =?utf-8?q?ction?= References: Message-ID: Hi all, i have forget to set my own read / write permissions for the FE-user / for the required fields. -- Kind regards, Michael forum.typo3.org/index.php?t=tree&th=208338 direct_mail forum.typo3.org/index.php?t=tree&th=210808 powermail forum.typo3.org/index.php?t=tree&th=212804 Core forum.typo3.org/index.php?t=tree&th=213115 clickenlarge From post at bergische-webschmiede.de Fri Mar 11 10:16:53 2016 From: post at bergische-webschmiede.de (Stefan Padberg) Date: Fri, 11 Mar 2016 10:16:53 +0100 Subject: [TYPO3-dev] Change TCA with ExtensionManagementUtility In-Reply-To: References: Message-ID: Am 09.03.2016 um 17:00 schrieb Jigal van Hemert: > Hi, > > On 09/03/2016 16:00, Stefan Padberg wrote: >> Am 09.03.2016 um 14:13 schrieb Jigal van Hemert: >>> You can easily disable fields (for all or for specific types) with Page >>> TSconfig. It's not really necessary to remove things permanently from >>> TCA. >>> >>> https://docs.typo3.org/typo3cms/TSconfigReference/PageTsconfig/TCEform/Index.html >>> >> >> Yes, I know, but I want to do it in an extension. > > \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPageTSConfig() > It seems not to be possible to set 'sys_file_metadata' via PageTsConfig, is it? For example, this: TCEFORM.sys_file_metadata.description { label = Caption } has no effect. Is there another way/syntax which I'm not aware of? Regards -- Bergische Webschmiede Dipl.-Ing. Stefan Padberg TYPO3-Integrator und Webprogrammierer :: Borner Str. 18 - 42349 Wuppertal :: +49 202 97648355 :: +49 173 9219845 :: post at bergische-webschmiede.de :: http://www.bergische-webschmiede.de From ralf.rene at online.de Fri Mar 11 11:01:19 2016 From: ralf.rene at online.de (=?UTF-8?Q?Ralf-Rene_Schr=c3=b6der?=) Date: Fri, 11 Mar 2016 11:01:19 +0100 Subject: [TYPO3-dev] Change TCA with ExtensionManagementUtility In-Reply-To: References: Message-ID: Am 11.03.2016 um 10:16 schrieb Stefan Padberg: > It seems not to be possible to set 'sys_file_metadata' via PageTsConfig, > is it? > > For example, this: > TCEFORM.sys_file_metadata.description { > label = Caption > } > > has no effect. try in USER-TSconfig: page.TCEFORM.sys_file_metadata.description.label = Caption -- image[FORMAT] - Ralf-Ren? Schr?der http://www.image-format.eu ... Wir geben Ihrem Image das richtige Format From post at bergische-webschmiede.de Fri Mar 11 12:26:26 2016 From: post at bergische-webschmiede.de (Stefan Padberg) Date: Fri, 11 Mar 2016 12:26:26 +0100 Subject: [TYPO3-dev] Change TCA with ExtensionManagementUtility In-Reply-To: References: Message-ID: Am 11.03.2016 um 11:01 schrieb Ralf-Rene Schr?der: > Am 11.03.2016 um 10:16 schrieb Stefan Padberg: >> It seems not to be possible to set 'sys_file_metadata' via PageTsConfig, >> is it? >> >> For example, this: >> TCEFORM.sys_file_metadata.description { >> label = Caption >> } >> >> has no effect. > > try in USER-TSconfig: > page.TCEFORM.sys_file_metadata.description.label = Caption > o.k., this works. But then I have to use: \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addUserTSConfig() if I wanted to change something via my extension. I will try that. Regards Stefan -- Bergische Webschmiede Dipl.-Ing. Stefan Padberg TYPO3-Integrator und Webprogrammierer :: Borner Str. 18 - 42349 Wuppertal :: +49 202 97648355 :: +49 173 9219845 :: post at bergische-webschmiede.de :: http://www.bergische-webschmiede.de From typo3 at 2016.schams.net Sat Mar 12 12:41:09 2016 From: typo3 at 2016.schams.net (Michael Schams) Date: Sat, 12 Mar 2016 22:41:09 +1100 Subject: [TYPO3-dev] How to include DataTables in the BE of TYPO3 7.6.x and above In-Reply-To: References: Message-ID: On Thu, 2016-03-10 at 14:01 +1100, Michael Schams wrote: > What is the best way to include the jQuery plug-in DataTables [1] in the > Backend of TYPO3 CMS 7.6 and how can I use it? Problem solved (after spending some hours and digging through the code). The best way seems to be to include JS libs as modules (AMD) using require.js, which may take some time to get your head around it (require.js is pretty straight forward but I struggled with the naming conventions required for TYPO3 for a while). This conversation (and especially the post from Wouter Wolters) pointed me in the right direction: http://lists.typo3.org/pipermail/typo3-dev/2015-July/049916.html Now I am able to use libraries shipped with TYPO3 [1] as well as my own libraries as required (if they are proper modules). Cheers Michael [1] https://git.typo3.org/Packages/TYPO3.CMS.git/tree/HEAD:/typo3/sysext/core/Resources/Public/JavaScript/Contrib From roman at pretory.at Sat Mar 12 18:55:20 2016 From: roman at pretory.at (Roman Pretory) Date: Sat, 12 Mar 2016 18:55:20 +0100 Subject: [TYPO3-dev] =?utf-8?q?_Fatal_error=3A_Class_=27=2E=2E=2E=5CContro?= =?utf-8?q?ller=5CNet=5FDNS=5FResolver=27_not_foun?= Message-ID: Hello I try to rebuild a ext in Typo3 7.6. I have to use folowing in the Controller: require_once 'Net/DNS.php'; $resolver = new Net_DNS_Resolver(); $resolver->tcp_timeout = '10'; $response = $resolver->rawQuery($conf['domain'], 'NS'); And get this as error: Fatal error: Class '......\Controller\Net_DNS_Resolver' not found in ..../Classes/Controller/CheckdnsController.php on line 343 Why?? Thanks RP From usman.ahmad at gosign.de Sat Mar 12 19:02:13 2016 From: usman.ahmad at gosign.de (Usman Ahmad) Date: Sat, 12 Mar 2016 23:02:13 +0500 Subject: [TYPO3-dev] Fatal error: Class '...\Controller\Net_DNS_Resolver' not foun In-Reply-To: References: Message-ID: why not using namespaces? why need require_once? On Sat, Mar 12, 2016 at 10:55 PM, Roman Pretory wrote: > Hello > > I try to rebuild a ext in Typo3 7.6. > > I have to use folowing in the Controller: > require_once 'Net/DNS.php'; > $resolver = new Net_DNS_Resolver(); > $resolver->tcp_timeout = '10'; > $response = $resolver->rawQuery($conf['domain'], > 'NS'); > > And get this as error: > Fatal error: Class '......\Controller\Net_DNS_Resolver' not found in > ..../Classes/Controller/CheckdnsController.php on line 343 > > Why?? > > Thanks RP > > _______________________________________________ > TYPO3-dev mailing list > TYPO3-dev at lists.typo3.org > http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-dev > -- -- Gosign media. GmbH | We web ideas. Langenfelder Damm 67 Gewerbehof | 22525 Hamburg Telefon 040-609 40 79-0 Handelsregister AG HH HRB 112197 | Gesch?ftsf?hrung Bert Gogolin Greenpeace energy: Gosign l?uft mit ehrlichem Strom und Gas. GLS Bank: Gosign wirtschaftet mit Gewissen. -- -- Gosign media. GmbH | We web ideas. Langenfelder Damm 67 Gewerbehof | 22525 Hamburg Telefon 040-609 40 79-0 Handelsregister AG HH HRB 112197 | Gesch?ftsf?hrung Bert Gogolin Greenpeace energy: Gosign l?uft mit ehrlichem Strom und Gas. GLS Bank: Gosign wirtschaftet mit Gewissen. From helmut.hummel at typo3.org Sun Mar 13 22:40:56 2016 From: helmut.hummel at typo3.org (Helmut Hummel) Date: Sun, 13 Mar 2016 22:40:56 +0100 Subject: [TYPO3-dev] Fatal error: Class '...\Controller\Net_DNS_Resolver' not foun In-Reply-To: References: Message-ID: Roman Pretory wrote: > I have to use folowing in the Controller: > require_once 'Net/DNS.php'; > $resolver = new Net_DNS_Resolver(); > > And get this as error: > Fatal error: Class '......\Controller\Net_DNS_Resolver' not found in ..../Classes/Controller/CheckdnsController.php on line 343 > > Why?? Because you obviously added a namespace to your class, but did not specify the fully qualified name for Net_DNS_Resolver Try: $resolver = new \Net_DNS_Resolver(); Kind regards, Helmut -- Helmut Hummel Release Manager TYPO3 6.0 TYPO3 CMS Active Contributor, TYPO3 Security Team Member TYPO3 .... inspiring people to share! Get involved: typo3.org From typo3 at cordes.co Mon Mar 14 17:25:03 2016 From: typo3 at cordes.co (Nicole Cordes) Date: Mon, 14 Mar 2016 17:25:03 +0100 Subject: [TYPO3-dev] Get crdate on custom Model In-Reply-To: References: Message-ID: Hi Matteo, Am 14.03.2016 um 14:07 schrieb Matteo Fonsatti: > in the model Application.php > /** > * crdate > * > * @var int > */ > protected $crdate; > > /** > * Returns the crdate > * > * @return int crdate > */ > public function getCrdate() { > return $this->crdate; > } IMHO you forget the setter for your property so it can't get set. Best regards, Nicole -- Nicole Cordes TYPO3 CMS Core Team Member TYPO3 Security Team Co-Leader TYPO3 .... inspiring people to share! Get involved: typo3.org From m.fonsatti at tlcws.com Tue Mar 15 09:14:05 2016 From: m.fonsatti at tlcws.com (Matteo Fonsatti) Date: Tue, 15 Mar 2016 09:14:05 +0100 Subject: [TYPO3-dev] =?utf-8?q?Get_crdate_on_custom_Model?= References: Message-ID: thanks a lot ... that's right ... ... also in TCA i forgotten to create a crdate /* CONFIGURAZIONE CRDATE*/ $GLOBALS['TCA']['tx_esaotecareers_domain_model_application']['columns']['crdate']['config'] = array( ... ) From roman at pretory.at Tue Mar 15 10:30:59 2016 From: roman at pretory.at (Roman Pretory) Date: Tue, 15 Mar 2016 10:30:59 +0100 Subject: [TYPO3-dev] =?utf-8?q?Fatal_error=3A_Class_=27=2E=2E=2E=5CControl?= =?utf-8?q?ler=5CNet=5FDNS=5FResolver=27_not_foun?= References: Message-ID: Thanks, maybe the right Question, but in the moment I need Answers. :-) BR Roman From roman at pretory.at Tue Mar 15 10:33:17 2016 From: roman at pretory.at (Roman Pretory) Date: Tue, 15 Mar 2016 10:33:17 +0100 Subject: [TYPO3-dev] =?utf-8?q?Fatal_error=3A_Class_=27=2E=2E=2E=5CControl?= =?utf-8?q?ler=5CNet=5FDNS=5FResolver=27_not_foun?= References: Message-ID: YESSSSS. Many Thanks that Works. :-) Best Regard Roman From roman at pretory.at Wed Mar 16 10:59:50 2016 From: roman at pretory.at (Roman Pretory) Date: Wed, 16 Mar 2016 10:59:50 +0100 Subject: [TYPO3-dev] =?utf-8?q?_Plugin_Config_Flexform?= Message-ID: Hi I use 7.6.LTS and want to create a plugin config Flexform . What I did without sucess : /typo3conf/ext/check_dns/Configuration/TCA/Overrides/tt_content.php Test Bla Bla array input trim Clear cache, reinstall Plugin... no flexform.. why? Thanks & Best Regards Roman From typo3 at 2016.schams.net Wed Mar 16 11:18:13 2016 From: typo3 at 2016.schams.net (Michael Schams) Date: Wed, 16 Mar 2016 21:18:13 +1100 Subject: [TYPO3-dev] Plugin Config Flexform In-Reply-To: References: Message-ID: On Wed, 2016-03-16 at 10:59 +0100, Roman Pretory wrote: > I use 7.6.LTS and want to create a plugin config Flexform . > What I did without sucess : > /typo3conf/ext/check_dns/Configuration/TCA/Overrides/tt_content.php [...] > Clear cache, reinstall Plugin... no flexform.. why? Try to put the stuff into file "ext_tables.php": $pluginSignature = ... $GLOBALS['TCA']... ...addPiFlexFormValue( ... ); Cheers Michael From roman at pretory.at Wed Mar 16 13:25:17 2016 From: roman at pretory.at (Roman Pretory) Date: Wed, 16 Mar 2016 13:25:17 +0100 Subject: [TYPO3-dev] =?utf-8?q?Plugin_Config_Flexform?= References: Message-ID: No don't work, I try first, seems to be the old way for 6.x This lines befor were the result from the Book: Typo3 Extbase 2 Edition for T3 7LTS Page 193-194 delivert yesterday. Now I have read the https://wiki.typo3.org/Extension_Development,_using_Flexforms#Dynamic_Data_in_Flexforms but this seems to be old too because t3lib_extMgm:: is not used anymore in T3 7.6 and I don't need to rebuild a working ext with old code not working in the next release . :-( Thx Roman From jigal.van.hemert at typo3.org Wed Mar 16 14:41:29 2016 From: jigal.van.hemert at typo3.org (Jigal van Hemert) Date: Wed, 16 Mar 2016 14:41:29 +0100 Subject: [TYPO3-dev] Plugin Config Flexform In-Reply-To: References: Message-ID: Hi, On 16/03/2016 10:59, Roman Pretory wrote: > I use 7.6.LTS and want to create a plugin config Flexform . > > What I did without sucess : > > /typo3conf/ext/check_dns/Configuration/TCA/Overrides/tt_content.php > > $pluginSignature = 'check_dns'; This should be the extension key without underscores plus an underscore and the plugin name. Usually you can use: $pluginSignature = str_replace('_', '', $_EXTKEY) . '_myplugin'; > $Globals['TCA']['tt_content']['types']['list']['subtypes_addlist'][$pluginSignature] > = 'pi_flexform'; > \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue($pluginSignature, > 'FILE:EXT:check_dns/Configuration/FlexForms/ff_check_dns.xml'); > > /typo3conf/ext/check_dns/Configuration/Flexforms/ff_check_dns.xml > > > > > > Test Bla Bla > > array > > > > > input > trim > > > > > Not sure if something ruined the formatting, but if there are no child elements the closing tag must be on the same line as the opening tag. All tags must start on their own line. And the flexform parser/processor in 7 became a bit more "picky" compared to earlier releases. But the tags seem to be correct in this example. -- Jigal van Hemert TYPO3 CMS Active Contributor TYPO3 .... inspiring people to share! Get involved: typo3.org From typo3 at 2016.schams.net Wed Mar 16 16:15:33 2016 From: typo3 at 2016.schams.net (Michael Schams) Date: Thu, 17 Mar 2016 02:15:33 +1100 Subject: [TYPO3-dev] Plugin Config Flexform In-Reply-To: References: Message-ID: On Wed, 2016-03-16 at 13:25 +0100, Roman Pretory wrote: > No don't work, I try first, seems to be the old way for 6.x I will have a look as soon as I can and suggest a working example. Cheers Michael From roman at pretory.at Wed Mar 16 17:03:31 2016 From: roman at pretory.at (Roman Pretory) Date: Wed, 16 Mar 2016 17:03:31 +0100 Subject: [TYPO3-dev] =?utf-8?q?Plugin_Config_Flexform?= References: Message-ID: Micheal please wait.. I have found errors .. Change $global to $GLOBAL Than I have look in the db and I found as list_type checkdns_checkdns and this should not be? if I change the tt-content.php to $pluginSignature = 'check_dns'; $GLOBALS['TCA']['tt_content']['types']['list']['subtypes_addlist']['checkdns_checkdns'] = 'pi_flexform'; \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue($pluginSignature, 'FILE:EXT:check_dns/Configuration/FlexForms/ff_check_dns.xml'); I get an flex maybe a sample ... But I get something :-) So I rebuild all from the begin with the ext builder, because i thing there I have make the Error to name the model as the same as the ext. A compare with another ext dosn't help to find the bug i have made. THX Roman From roman at pretory.at Wed Mar 16 18:30:24 2016 From: roman at pretory.at (Roman Pretory) Date: Wed, 16 Mar 2016 18:30:24 +0100 Subject: [TYPO3-dev] =?utf-8?q?Plugin_Config_Flexform?= References: Message-ID: I have found one type error in the Flexform to But the rebuild from the Ext make the same record in the db list_type checkdns_checkdns so now I have no idea anymore :-( From roman at pretory.at Wed Mar 16 18:46:41 2016 From: roman at pretory.at (Roman Pretory) Date: Wed, 16 Mar 2016 18:46:41 +0100 Subject: [TYPO3-dev] =?utf-8?q?Plugin_Config_Flexform?= References: Message-ID: Changed that to $pluginSignature = str_replace('_', '', $_EXTKEY) . '_checkdns'; also change it to a sample, check once more the flexform on server direct .. no change. 123456 array input 2 int 10 From jigal.van.hemert at typo3.org Thu Mar 17 00:37:30 2016 From: jigal.van.hemert at typo3.org (Jigal van Hemert) Date: Thu, 17 Mar 2016 00:37:30 +0100 Subject: [TYPO3-dev] Plugin Config Flexform In-Reply-To: References: Message-ID: Hi, On 16/03/2016 18:46, Roman Pretory wrote: > Changed that to $pluginSignature = str_replace('_', '', $_EXTKEY) . > '_checkdns'; > > also change it to a sample, check once more the flexform on server > direct .. no change. Sorry, but it's not a guessing game. Use the name of your plugin! Somewhere in your ext_tables.php there is a call to registerPlugin: \TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin( 'Vendorname.' . $_EXTKEY, 'myplugin', 'Name of my plugin', 'EXT:check_dns/ext_icon.gif' ); The second parameter is the name of the plugin. You have to use this name in the $pluginSignature; otherwise TYPO3 can never find the relationship between the plugin and the registered flexform. -- Jigal van Hemert TYPO3 CMS Active Contributor TYPO3 .... inspiring people to share! Get involved: typo3.org From typo3 at 2016.schams.net Thu Mar 17 02:17:53 2016 From: typo3 at 2016.schams.net (Michael Schams) Date: Thu, 17 Mar 2016 12:17:53 +1100 Subject: [TYPO3-dev] Plugin Config Flexform In-Reply-To: References: Message-ID: On 2016-03-17 04:30, Roman Pretory wrote: [...] > so now I have no idea anymore :-( Find a simple example here: https://github.com/schams-net/flexform_demo I have put the ExtensionManagementUtility::addPiFlexFormValue() code in ext_tables.php, but it also works if they are in TCA configuration files. I have not checked if my approach is best practice. This extension works perfectly fine in TYPO3 CMS version 7.6.4 and Flexforms appear in the BE when you add the plugin to a page. Maybe it helps if you compare this with your code? As Jigal pointed out: make sure $pluginName and $pluginSignature are correct and consistent :-) -- Cheers Michael From t3n at pi-phi.de Thu Mar 17 08:32:24 2016 From: t3n at pi-phi.de (Bernd Wilke) Date: Thu, 17 Mar 2016 08:32:24 +0100 Subject: [TYPO3-dev] Plugin Config Flexform In-Reply-To: References: Message-ID: Am 16.03.2016 um 10:59 schrieb Roman Pretory: > Hi > > I use 7.6.LTS and want to create a plugin config Flexform . > > What I did without sucess : have alook at the right side of http://pi-phi.de/171.html so it is in german, you may recognize the usage of the code. bernd From roman at pretory.at Thu Mar 17 14:30:38 2016 From: roman at pretory.at (Roman Pretory) Date: Thu, 17 Mar 2016 14:30:38 +0100 Subject: [TYPO3-dev] =?utf-8?q?Plugin_Config_Flexform?= References: Message-ID: in one chase by try and look whats happend, I put this (Thanks to Bernd & Michael) on the end of the ext_tables.php $extensionName = strtolower(\TYPO3\CMS\Core\Utility\GeneralUtility::underscoredToUpperCamelCase($_EXTKEY)); $pluginName = strtolower('Checkdns'); $pluginSignature = $extensionName.'_'.$pluginName; $TCA['tt_content']['types']['list']['subtypes_excludelist'][$pluginSignature] = 'layout,select_key,pages'; $TCA['tt_content']['types']['list']['subtypes_addlist'][$pluginSignature] = 'pi_flexform'; \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue($pluginSignature, 'FILE:EXT:'.$_EXTKEY . '/Configuration/FlexForms/ff_check_dns.xml'); the flexform is show and seems to work, (without the langtranslate) but ist looks SENSELESS to replace working extensions working with T3 V6, V7+compatibility6 with one running only with v7 because this code marked as old way?? I search for the Overrides/tt_content.php function should look like this,without the error in it. :-) $pluginSignature = str_replace('_', '', $_EXTKEY) . '_checkdns'; $GLOBALS['TCA']['tt_content']['types']['list']['subtypes_addlist'][$pluginSignature] = 'pi_flexform'; \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue($pluginSignature, 'FILE:EXT:'.$_EXTKEY.'/Configuration/FlexForms/ff_check_dns.xml'); From roman at pretory.at Thu Mar 17 14:37:42 2016 From: roman at pretory.at (Roman Pretory) Date: Thu, 17 Mar 2016 14:37:42 +0100 Subject: [TYPO3-dev] =?utf-8?q?Plugin_Config_Flexform?= References: Message-ID: Yes isn't a guessing game, its a meek if it don't work like it should or you think it should, and after check all all again, looking in working extension to see where is the error (not easy to find one with Overrides/tt_content.php), its one way to to change things and look whats happend, and if you get a feedback, you maybe know more.. clever or not but by ext name is like this: \TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin( 'RPretory.' . $_EXTKEY, 'Checkdns', 'Check Dns' ); Thanks Roman From tobias.gaertner at benaja-websolutions.com Tue Mar 22 11:07:03 2016 From: tobias.gaertner at benaja-websolutions.com (Tobias Gaertner) Date: Tue, 22 Mar 2016 11:07:03 +0100 Subject: [TYPO3-dev] =?utf-8?q?Extending_sys=5Ffile=5Fmetadata/permission_?= =?utf-8?q?problems?= References: Message-ID: @Frans So that means its by design? So what would be the correct solution?? I have the same problem - but not willing to hack the core! Is there already a bug created? I could not found anything... From helmut.hummel at typo3.org Tue Mar 22 14:20:45 2016 From: helmut.hummel at typo3.org (Helmut Hummel) Date: Tue, 22 Mar 2016 14:20:45 +0100 Subject: [TYPO3-dev] Extending sys_file_metadata/permission problems In-Reply-To: References: Message-ID: Hi! Tobias Gaertner wrote: > @Frans > So that means its by design? So what would be the correct solution?? I have the same problem - but not willing to hack the core! > > Is there already a bug created? I could not found anything... Please create a bug report[1] with a full description of a minimal setup to reproduce (TCA), your expectations and the current results/ bahavior you get. After that, please post the link to the issue here. Kind regards, Helmut [1]https://forge.typo3.org/projects/typo3cms-core/issues/new -- Helmut Hummel Release Manager TYPO3 6.0 TYPO3 CMS Active Contributor, TYPO3 Security Team Member TYPO3 .... inspiring people to share! Get involved: typo3.org From oliver.hader at typo3.org Tue Mar 22 15:43:03 2016 From: oliver.hader at typo3.org (Oliver Hader) Date: Tue, 22 Mar 2016 15:43:03 +0100 Subject: [TYPO3-dev] [TYPO3-core] Announcing TYPO3 CMS 8.0 Message-ID: Dear TYPO3 World, the TYPO3 Community has just released TYPO3 CMS version 8.0, the first sprint release of the v8 series of TYPO3. Even if the release of CMS 7 LTS from November 2015 wasn't too long ago, we worked hard on pushing the system to the next era. A few highlights of the new version TYPO3 CMS 8.0: * Performance improvement through PHP 7+ support * UX: Integrated form builder * Standalone Fluid For details about the release, please see: https://typo3.org/news/article/typo3-v80-start-your-engines/ https://typo3.org/typo3-cms/roadmap/ The packages can be downloaded here: https://typo3.org/download/ MD5 checksums: 026918c819f0b92b74de4320dd3750b1 typo3_src-8.0.0.tar.gz 84c1bf8ea60a472a11ca0678a34939a5 typo3_src-8.0.0.zip SHA256 checksums: faa00c9c465d9db4757c73d2a67ee3fc1201cb95bcb87f8c886a7b093fa0b39b typo3_src-8.0.0.tar.gz ad26f9ae880e0fe05c702e5a2c87b236be62ed551abc576cf5d7a8e23d023d85 typo3_src-8.0.0.zip Further details on the signing and hashing process of TYPO3 releases: https://docs.typo3.org/typo3cms/drafts/github/TYPO3Incubator/Infrastruct ureGuide/Releases/ Best regards Oliver -- Oliver Hader TYPO3 .... inspiring people to share! Get involved: http://typo3.org From typo3 at 2016.schams.net Wed Mar 23 00:07:17 2016 From: typo3 at 2016.schams.net (Michael Schams) Date: Wed, 23 Mar 2016 10:07:17 +1100 Subject: [TYPO3-dev] Extension dependencies for TER Message-ID: Hi, Did I missing something? I am trying to upload an extension to TER and get the following error message: Extension does not have a dependency for a supported version of TYPO3. See http://typo3.org/news/article/announcing-ter-cleanup-process/ for how to fix this. Dependency settings in ext_emconf.php as follows: $EM_CONF[$_EXTKEY] = array ( ... 'constraints' => array ( 'depends' => array ( 'php' => '5.5.0-5.6.99', 'typo3' => '7.0.0-7.6.99', ), ... ); ...and the JSON file at get.typo3.org looks ok, too, I think: https://get.typo3.org/json Cheers Michael From roman at pretory.at Wed Mar 23 09:08:38 2016 From: roman at pretory.at (Roman Pretory) Date: Wed, 23 Mar 2016 09:08:38 +0100 Subject: [TYPO3-dev] =?utf-8?q?_missing_output?= Message-ID: Hello I use Typo3 7.6.4, PHP 5.4 ) create an extension with the ExtensionBuilder ... to show this elements on normal Pages ) only for frontend no Frontend Plug-Ins or Backend-Modules ) create new model without any action ) create Properties like title->string, link->string,... ) Install extension and create new elements on page ) Install extension, clear all caches after that I add seen on (https://docs.typo3.org/typo3cms/ExtbaseFluidBook/b-ExtbaseReference/Index.html#registration-of-frontend-plugins) public function initializeAction() { echo 'hello Word';exit; } public function indexAction() { echo 'hello Word';exit; } And create ext_localconf.php: if (!defined('TYPO3_MODE')) { die('Access denied.'); } \TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin( 'RPretory.' . $_EXTKEY, 'Links', array( 'Links' => 'index', ), // non-cacheable actions array( 'Links' => 'index', ) ); if i look in the Frontend of this side no hello Word no debug message, no change normal template output without content Looks as this extension is not installed. Whats missing. THX Roman From jigal.van.hemert at typo3.org Wed Mar 23 09:55:28 2016 From: jigal.van.hemert at typo3.org (Jigal van Hemert) Date: Wed, 23 Mar 2016 09:55:28 +0100 Subject: [TYPO3-dev] Extension dependencies for TER In-Reply-To: References: Message-ID: Hi, On 23/03/2016 00:07, Michael Schams wrote: > Extension does not have a dependency for a supported version of TYPO3. > See http://typo3.org/news/article/announcing-ter-cleanup-process/ for > how to fix this. Which method did you use? Upload form on typo3.org, github hook, ...? When did you try? It seemed that TER needed some time to adjust to the new list of releases. There are several new extensions in TER, some with a dependency on 8.0, some on earlier versions. -- Jigal van Hemert TYPO3 CMS Active Contributor TYPO3 .... inspiring people to share! Get involved: typo3.org From jigal.van.hemert at typo3.org Wed Mar 23 10:38:26 2016 From: jigal.van.hemert at typo3.org (Jigal van Hemert) Date: Wed, 23 Mar 2016 10:38:26 +0100 Subject: [TYPO3-dev] Extension dependencies for TER In-Reply-To: References: Message-ID: Hi, On 23/03/2016 09:55, Jigal van Hemert wrote: > On 23/03/2016 00:07, Michael Schams wrote: >> Extension does not have a dependency for a supported version of TYPO3. >> See http://typo3.org/news/article/announcing-ter-cleanup-process/ for >> how to fix this. There is a problem with the upload form for TER; people are working on a solution. -- Jigal van Hemert TYPO3 CMS Active Contributor TYPO3 .... inspiring people to share! Get involved: typo3.org From post at bergische-webschmiede.de Wed Mar 23 11:36:52 2016 From: post at bergische-webschmiede.de (Stefan Padberg) Date: Wed, 23 Mar 2016 11:36:52 +0100 Subject: [TYPO3-dev] missing output In-Reply-To: References: Message-ID: Am 23.03.2016 um 09:08 schrieb Roman Pretory: > Hello > > I use Typo3 7.6.4, PHP 5.4 Hi Roman, check the system requirements listed in INSTALL.md: PHP 5.5! Regards Stefan -- Bergische Webschmiede Dipl.-Ing. Stefan Padberg TYPO3-Integrator und Webprogrammierer :: Borner Str. 18 - 42349 Wuppertal :: +49 202 97648355 :: +49 173 9219845 :: post at bergische-webschmiede.de :: http://www.bergische-webschmiede.de From roman at pretory.at Wed Mar 23 12:51:37 2016 From: roman at pretory.at (Roman Pretory) Date: Wed, 23 Mar 2016 12:51:37 +0100 Subject: [TYPO3-dev] =?utf-8?q?missing_output?= References: Message-ID: Thanks Stepan it is typing error it is PHP5.5 THX Roman From Eric.Thibault at bsw.ulaval.ca Wed Mar 23 13:56:21 2016 From: Eric.Thibault at bsw.ulaval.ca (=?Windows-1252?Q?=C9ric_Thibault?=) Date: Wed, 23 Mar 2016 12:56:21 +0000 Subject: [TYPO3-dev] rtehtmlarea and TYPO3 7 Message-ID: Hello to all! We are trying to configure in TYPO3 7 the "strong" and "em" buttons in the rtehtmlarea and all we can show to our clients are the b and I (We have the "show all buttons" config)! Using TYPO3 6, We're using the strong button (icon with the word strong) by default in the RTE! Has the rtehtmlarea abondonned the strong and em tags? We can include post processing but is there a way to use the appropriate buttons in the RTE? Thanks a million times! Eric Thibault From typo3 at sjbr.ca Wed Mar 23 16:08:17 2016 From: typo3 at sjbr.ca (Stanislas Rolland) Date: Wed, 23 Mar 2016 11:08:17 -0400 Subject: [TYPO3-dev] rtehtmlarea and TYPO3 7 In-Reply-To: References: Message-ID: Hi ?ric, > We are trying to configure in TYPO3 7 the "strong" and "em" buttons in the rtehtmlarea and all we can show to our clients are the b and I (We have the "show all buttons" config)! Using TYPO3 6, We're using the strong button (icon with the word strong) by default in the RTE! > > Has the rtehtmlarea abondonned the strong and em tags? We can include post processing but is there a way to use the appropriate buttons in the RTE? > You need to enable the Additional inline elements in the extension configuration using the Extension manager. Stanislas --- L'absence de virus dans ce courrier ?lectronique a ?t? v?rifi?e par le logiciel antivirus Avast. https://www.avast.com/antivirus From helmut.hummel at typo3.org Wed Mar 23 16:11:20 2016 From: helmut.hummel at typo3.org (Helmut Hummel) Date: Wed, 23 Mar 2016 16:11:20 +0100 Subject: [TYPO3-dev] Extension dependencies for TER In-Reply-To: References: Message-ID: Jigal van Hemert wrote: > There is a problem with the upload form for TER; people are working on a > solution. Form upload issue is fixed again. Kind regards, Helmut -- Helmut Hummel Release Manager TYPO3 6.0 TYPO3 CMS Active Contributor, TYPO3 Security Team Member TYPO3 .... inspiring people to share! Get involved: typo3.org From contact at oktopuce.fr Thu Mar 24 09:09:14 2016 From: contact at oktopuce.fr (Florian Rival) Date: Thu, 24 Mar 2016 09:09:14 +0100 Subject: [TYPO3-dev] missing output In-Reply-To: References: Message-ID: Have you include "css_style_content" or "fluid_styled_content" ? Have tou got a template with "rootlevel" checked ? Le 23/03/2016 12:51, Roman Pretory a ?crit : > Thanks Stepan it is typing error it is PHP5.5 > THX Roman > _______________________________________________ > TYPO3-dev mailing list > TYPO3-dev at lists.typo3.org > http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-dev From roman at pretory.at Thu Mar 24 09:39:22 2016 From: roman at pretory.at (Roman Pretory) Date: Thu, 24 Mar 2016 09:39:22 +0100 Subject: [TYPO3-dev] =?utf-8?q?missing_output?= References: Message-ID: Yes Is aggregate root is checkt in the ExtensionBuilder just load again to check. css_style_content is used by default in my test t3 installation. other extension build as plugin are working in this installation in the meantime I have found this page http://blog.reelworx.at/detail/howto-register-your-plugin-ce-or-module/ so I make folowing changes: Add Configuration/Overrides/tt_content.php 'index', ), // non-cacheable actions array( 'Links' => 'index', ), \TYPO3\CMS\Extbase\Utility\ExtensionUtility::PLUGIN_TYPE_CONTENT_ELEMENT ); no change no output :-( From typo3 at 2016.schams.net Thu Mar 24 09:52:53 2016 From: typo3 at 2016.schams.net (Michael Schams) Date: Thu, 24 Mar 2016 19:52:53 +1100 Subject: [TYPO3-dev] Extension dependencies for TER In-Reply-To: References: Message-ID: On Wed, 2016-03-23 at 10:38 +0100, Jigal van Hemert wrote: > On 23/03/2016 09:55, Jigal van Hemert wrote: > > On 23/03/2016 00:07, Michael Schams wrote: > >> Extension does not have a dependency for a supported version of TYPO3. > >> See http://typo3.org/news/article/announcing-ter-cleanup-process/ for > >> how to fix this. > > There is a problem with the upload form for TER; people are working on a > solution. Thanks! Seems to work now. Cheers Michael From jainishsenjaliya at gmail.com Fri Mar 25 06:19:42 2016 From: jainishsenjaliya at gmail.com (Jainish Senjaliya) Date: Fri, 25 Mar 2016 10:49:42 +0530 Subject: [TYPO3-dev] =?utf-8?q?_Fluid_Standalone_view_to_render_template_i?= =?utf-8?q?s_not_working_in_tyop3_version_8?= Message-ID: Hello TYPO Team Greeting from india! Many congratulation for release typo3 version 8. Great to see this progress! Thanks a lot for your contributions :) Now come to the point I have tried to integrate extension in typo3 version 8 some how its not rending Standalone view template Here is example for render Standalone view template https://wiki.typo3.org/How_to_use_the_Fluid_Standalone_view_to_render_template_based_emails This is working fine until assign multiple variable $emailView->assignMultiple($variables); When we call render function than its not working. it thrown error like : " Oops, an error occurred! Code: 2016032317173321179dbb " $emailBody = $emailView->render(); Can anyone can guide me for this solution. Thanks in advance. From roman at pretory.at Fri Mar 25 14:17:16 2016 From: roman at pretory.at (Roman Pretory) Date: Fri, 25 Mar 2016 14:17:16 +0100 Subject: [TYPO3-dev] =?utf-8?q?_script_to_convert_Image_path_to_new_format?= Message-ID: hi following problem old ext have a upload folder and a table with the Images names have anybody a script to convert this to the new format? THX Roman From franssaris at gmail.com Fri Mar 25 16:02:05 2016 From: franssaris at gmail.com (Frans Saris) Date: Fri, 25 Mar 2016 15:02:05 +0000 Subject: [TYPO3-dev] script to convert Image path to new format In-Reply-To: References: Message-ID: The core contains migration scripts that you could use for inspiration. Have a look at the migration scripts for tt_content in TYPO3 6.2 Groeten Frans Op vr 25 mrt. 2016 14:20 schreef Roman Pretory : > hi > following problem old ext have a upload folder and a table with the Images > names > have anybody a script to convert this to the new format? > > THX Roman > > > _______________________________________________ > TYPO3-dev mailing list > TYPO3-dev at lists.typo3.org > http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-dev > From alvin.abad at netefficiency.co.uk Mon Mar 28 14:16:43 2016 From: alvin.abad at netefficiency.co.uk (Alvin Abad) Date: Mon, 28 Mar 2016 13:16:43 +0100 Subject: [TYPO3-dev] Upgrading be_acl to TYPO3 v7 Message-ID: Hello all, Does any one have an experience upgrading be_acl from 1.5.0 to 3.0.0 for TYPO3 v7.6.4? What difficulties did you encounter and how did you solve it? Lastly any alternative you can recommend? Perhaps projects not yet in TER? A search for "permissions" or "access control" in TER does not yield relevant results. Thanks, Alvin From lorenz.strouhal at mediatesystems.at Tue Mar 29 14:22:04 2016 From: lorenz.strouhal at mediatesystems.at (Lorenz St) Date: Tue, 29 Mar 2016 14:22:04 +0200 Subject: [TYPO3-dev] =?utf-8?q?_which_statistics_Extension_for_Typo3_7=3F?= Message-ID: Hello, which Extension can be used as simple User-Access-Statistic (NOT Google Analytics!)? ke_stat seems to be not supported for Typo3 >=7 regards From tobias.gaertner at benaja-websolutions.com Thu Mar 31 11:38:45 2016 From: tobias.gaertner at benaja-websolutions.com (Tobias Gaertner) Date: Thu, 31 Mar 2016 11:38:45 +0200 Subject: [TYPO3-dev] =?utf-8?q?Extending_sys=5Ffile=5Fmetadata/permission_?= =?utf-8?q?problems?= References: Message-ID: I created a bug-report for that: https://forge.typo3.org/issues/75332