From hackl.chris at googlemail.com Sat Aug 5 22:24:31 2017 From: hackl.chris at googlemail.com (Christian Hackl) Date: Sat, 05 Aug 2017 22:24:31 +0200 Subject: [TYPO3-dev] =?utf-8?q?_Re=3A_Re=3A_Favorite_PHP_editor/IDE=3F?= References: Message-ID: You can use mountenduck, than all editors and ides can edit files direkt on the server... if this is really your workflow... :-) From luberti at archicoop.it Mon Aug 7 14:52:16 2017 From: luberti at archicoop.it (Ivano Luberti) Date: Mon, 7 Aug 2017 14:52:16 +0200 Subject: [TYPO3-dev] Favorite PHP editor/IDE? In-Reply-To: References: Message-ID: there is a typo: mountainduck Il 05/08/2017 22:24, Christian Hackl ha scritto: > You can use mountenduck, than all editors and ides can edit files > direkt on the server... if this is really your workflow... :-) > _______________________________________________ > 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 Niizha.oh at gmail.com Mon Aug 14 04:59:02 2017 From: Niizha.oh at gmail.com (Hopnax Hla) Date: Mon, 14 Aug 2017 04:59:02 +0200 Subject: [TYPO3-dev] =?utf-8?q?Plugin_Config_Flexform?= References: Message-ID: It's fantastic. From thomas at visualworx.de Wed Aug 16 13:14:01 2017 From: thomas at visualworx.de (Thomas Mammitzsch) Date: Wed, 16 Aug 2017 13:14:01 +0200 Subject: [TYPO3-dev] how to change query settings in 7.6 Message-ID: hi list, i want to change query settings for the whole repository in 7.6. Calling initializeObject doesnt seem to work anymore. Could not find an up-to-date approach on this topic. public function initializeObject() { /** @var $querySettings \TYPO3\CMS\Extbase\Persistence\Generic\Typo3QuerySettings */ $querySettings = $this->objectManager->get('TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Typo3QuerySettings'); $querySettings->setIgnoreEnableFields(true); $this->setDefaultQuerySettings($querySettings); } Thanks and regards, Thomas From wildt at die-netzmacher.de Wed Aug 16 13:15:34 2017 From: wildt at die-netzmacher.de (wildt at die-netzmacher.de) Date: Wed, 16 Aug 2017 13:15:34 +0200 (CEST) Subject: [TYPO3-dev] =?utf-8?q?how_to_change_query_settings_in_7=2E6?= Message-ID: Ich bin nicht in meinem B?ro. E-Mails kann ich nur unregelm??ig lesen und beantworten. In dringenden F?llen hinterlassen Sie mir bitte eine Nachricht mit Ihrem Anliegen unter * +49 8503 7779005 Sollten es Probleme bei der E-Mail-Zustellung f?r Gr?ne Kreisverb?nde geben, wenden Sie sich bitte an Domninik Ach da at infodatacom.de Sollte Ihre Website nicht erreichbar sein, k?nnen Sie sich an meinen Netzwerk-Administrator wenden: Falko Trojahn support at trojahn.de Tel: 0341 / 59167948 Die Leistungen des Netzwerkadministrators sind nur dann nicht kostenpflichtig, wenn Fehler behoben werden, die serverseitig verursacht sind. Mit freundlichen Gr??en Dirk Wildt -- * Reibach: Die Netzmacher haben ihre erste Viertel-Million gemacht Nicht Euros. Downloads! Auf typo3.org. https://die-netzmacher.de/titel/260000-mal-typo3-mit-den-netzmachern/ * Firmen in Th?ringen mit TYPO3-Browser Landesentwicklungs-Gesellschaft Th?ringen nutzt f?r Geo-Referenzierung TYPO3-Browser und -Leaflet https://die-netzmacher.de/news/titel/firmen-in-thueringen-mit-typo3-browser-und-leaflet/ * Don Camillo mag TYPO3 Scherenburg-Festspiele arbeiten mit TYPO3-Start und -Organiser https://die-netzmacher.de/titel/don-camillo-mit-typo3-start-und-organiser/ * Lass' Deine TYPO3-Projekte vom Stapel! Netzmacher ver?ffentlichen Launch it! ? den neuen TYPO3-Installer https://die-netzmacher.de/titel/lass-deine-typo3-projekte-vom-stapel/ * Newsletter http://die-netzmacher.de/newsletter Die Netzmacher Dirk Wildt Rothof 6 94152 Neuhaus am Inn Tel.: +49 8507 9237053 Fax: +49 8507 9237056 http://die-netzmacher.de http://wildt.at.die-netzmacher.de Skype: die-netzmacher Kundencenter: https://login.die-netzmacher.de:8443 Nachrichten: https://die-netzmacher.de/news/ Ticketsystem: https://tickets.die-netzmacher.de From outer.circle at web.de Wed Aug 16 18:03:58 2017 From: outer.circle at web.de (Florian Sauer) Date: Wed, 16 Aug 2017 18:03:58 +0200 Subject: [TYPO3-dev] =?utf-8?q?_Problem_with_IRRE_m=3An_and_useCombination?= =?utf-8?q?_-_probable_bug=3F_-_7=2E6_LTS?= Message-ID: Friends of IRRE, Using Typo3 7.6 LTS I am porting am extension I wrote for V 4.5 to 7.6 and Extbase. The extension uses a m:n relationship and some attributes on the intermediate table and has worked so far. The TCA is modelled similar to this: https://wiki.typo3.org/Inline_Relational_Record_Editing_Attributes and uses "useCombination => true" so child records can directly be added or edited within the main record. After having ported it to 7.6 the backend shows errors for child records: child records not found or wrong child records. I investigated further and found after some debugging that the child record UID is crippeled. Example: MM table points to a child record with UID 1002. BUT the backend tries to fetch the record with UID 1. So all child UIDs get truncated to a number with just 1 digit. I found that there are two code lines in the core which are responsible for that: TYPO3\CMS\Backend\Form\FormDataProvider\TcaInline.:compileChildChild(array $child, array $parentConfig): ... $childChildUid = $child['databaseRow'][$parentConfig['foreign_selector']][0] and TYPO3\CMS\Backend\Controller\FormInlineAjaxController:compileChildChild(array $child, array $parentConfig, array $inlineStructure) .. $childChildUid = $child['databaseRow'][$parentConfig['foreign_selector']][0] The problem seems to be the last "[0]". Once I delete this [0] everything is working fine. In my understanding of the code the "[0]" makes no sense because child['databaseRow'] holds 1 record of the mm table and this 1 record points to exactly 1 child record. But with the "[0]" I understand why a child UID like "4335" is truncated to just "4". My questions: - Has anyone of you a successful m:n installation on 7.6 with more than 9 child records and "useCombination=true"? - Might this be a bug? Should I report it to the bug tracker? Or have I overlooked something else? I checked Typo3 V8 - the code lines there have remained unchanged. Obviously I am reluctant to patch the core code myself because that might have other implications as well which I do not oversee. Any thoughts are greatly appreciated. Regards, finnegan From michael.besteck at freenet.de Fri Aug 18 17:19:11 2017 From: michael.besteck at freenet.de (Michael Besteck) Date: Fri, 18 Aug 2017 17:19:11 +0200 Subject: [TYPO3-dev] =?utf-8?q?_Required_argument_=22config=22_is_not_set?= Message-ID: Hallo Sorry, hatte dies bereits im German forum gepostet und erst danach das Dev Forum entdeckt (mein erster Post). Danke f?r Hinweise zu meinem Problem: Manuelle Extension Entwicklung in TYPO3 8.7.4, individuelle Extension Konfiguration (im Extension Manager, select-box angelehnt an (http) vosp.info/index.php/TYPO3.CMS_7.6_Schnipsel#ext_conf_template.txt implementiert). Die Datei "ext_conf_template.txt" enth?lt: # cat=config; type=user[\\ViewHelpers\SelectBox->render]; label=userfield description userfield = Diese stellt wie beabsichtigt auch eine select-box mit Optionen dar. Beim "Speichern" in den Extension-Einstellungen im Extension-Manager erscheint die Fehlermeldung "Required argument "config" is not set for TYPO3\CMS\Extensionmanager\Controller\ConfigurationController->save", diese wird in /srv/www-v/t3test/typo3_src/typo3/sysext/extbase/Classes/Mvc/Controller/AbstractController.php in der Methode "mapRequestArgumentsToControllerArguments" generiert. Nebenbei: Eine Methode mit dem genauen Namen "save" habe ich weder in .../typo3_src/typo3/sysext/extensionmanager/Classes/Controller/ConfigurationController.php noch in einer der Superklassen gefunden. Vermutlich fehlt es an einer Bereitstellung und Einbindung einer Funktionalit?t zum Speichern der Einstellungen (in diesem Fall der ausgew?hlten select option). Wie bitte muss eine solche Einbindung geschehen? From michael.besteck at freenet.de Mon Aug 28 18:34:39 2017 From: michael.besteck at freenet.de (Michael Besteck) Date: Mon, 28 Aug 2017 18:34:39 +0200 Subject: [TYPO3-dev] =?utf-8?q?_Re=3A_Required_argument_=22config=22_is_no?= =?utf-8?q?t_set?= References: Message-ID: Due to lack of hints i searched the solution myself; the one i found was to declare a hidden HTML input element and set it's value to the selected value that should be stored. Example code can be found in the Sphinx extension in the file ../typo3conf/ext/sphinx/Classes/EM/Configuration.php in lines 137..151.