From gantenbrinker at langen-reiss.de Thu May 4 10:04:32 2017 From: gantenbrinker at langen-reiss.de (Michael Gantenbrinker) Date: Thu, 04 May 2017 10:04:32 +0200 Subject: [TYPO3-dev] =?utf-8?q?_Incorrect_downloads_in_extension_=22bnbfil?= =?utf-8?q?esharing=22?= Message-ID: Hello, we are using the extension "bnbfilesharing" in some of our projects. Recently, one of our customers encountered problems when handling binary files, such as Powerpoint-presentations, Word-documents etc. The problem was, that the customer could not open the files after downloading. We found, that the files were uploaded correctly, but after downloading, there had been added three new lines (0x0d 0x0a 0x0a 0x0a) to every file. These three blank lines appear also in the HTML-code of the page. Further more, we found that there are some blank lines outside the PHP-block in the files "Folder.php", "FolderRepository.php" and "FilesRepository.php". The solution is, to delete these lines, so that there are no characters outside the PHP-block. Due to the fact, that this extension is an older one and we are not sure, that it will be updated, we post the solution here and hope, that it might be helpful for someone. Best regards, Michael Gantenbrinker From web at gbf.it Fri May 5 10:12:27 2017 From: web at gbf.it (lebond007) Date: Fri, 05 May 2017 10:12:27 +0200 Subject: [TYPO3-dev] =?utf-8?q?_Error_mod=5Ffcgid_on_moving_to_new_server?= Message-ID: Hello, I'm new to typo3, I'm sorry if I'm asking this question on the wrong part of this forum. I'm trying to move a typo3 website from an old server to a new server. Typo Version is 6.2.14. When I move the website to the new server I get this error: mod_fcgid: stderr: PHP Fatal error: Class 'Helhum\\ClassAliasLoader\\Composer\\ClassAliasLoader' not found in /var/www/vhosts/rational.it/httpdocs/typo3/contrib/vendor/autoload.php on line 14 Server administrator tells me it's a CMS problem. Php version I'm using is 5.5. On the old server the website works so I don't understand what could be the problem. Any help? Thank you From franssaris at gmail.com Wed May 10 18:49:10 2017 From: franssaris at gmail.com (Frans Saris) Date: Wed, 10 May 2017 16:49:10 +0000 Subject: [TYPO3-dev] Error mod_fcgid on moving to new server In-Reply-To: References: Message-ID: Hi, Did you also move typo3temp? Then I would start with deleting all of its contents. Probably some paths that have changed with moving to the new server that are cached somewhere in there. For further assistance I would like to point you to https://forger.typo3.org/slack and stack overflow as there is more traffic than on this mailing list/forum Groet Frans Op vr 5 mei 2017 10:15 schreef lebond007 : > Hello, > I'm new to typo3, I'm sorry if I'm asking this question on the wrong part > of this forum. > > I'm trying to move a typo3 website from an old server to a new server. > Typo Version is 6.2.14. > > When I move the website to the new server I get this error: > mod_fcgid: stderr: PHP Fatal error: Class > 'Helhum\\ClassAliasLoader\\Composer\\ClassAliasLoader' not found in > /var/www/vhosts/rational.it/httpdocs/typo3/contrib/vendor/autoload.php on > line 14 > > Server administrator tells me it's a CMS problem. > Php version I'm using is 5.5. > On the old server the website works so I don't understand what could be > the problem. > > Any help? > > Thank you > _______________________________________________ > TYPO3-dev mailing list > TYPO3-dev at lists.typo3.org > http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-dev > From web at gbf.it Thu May 11 09:49:01 2017 From: web at gbf.it (lebond007) Date: Thu, 11 May 2017 09:49:01 +0200 Subject: [TYPO3-dev] =?utf-8?q?Error_mod=5Ffcgid_on_moving_to_new_server?= References: Message-ID: Thank you! that solved my problem! From andri.steiner at typo3.org Fri May 19 09:41:50 2017 From: andri.steiner at typo3.org (Andri Steiner) Date: Fri, 19 May 2017 09:41:50 +0200 Subject: [TYPO3-dev] [TYPO3-german] Looking for feedback about migrating mailing lists, newsserver and forum Message-ID: Hey all, Maintenance of mailing lists, newsgroups and forum software is going to get more cumbersome with every day. Therefore, we'd like to move forward and migrate those platforms to a new Discourse forum: https://decisions.typo3.org/t/replace-mailinglists-newsgroups-and-forum-with-discourse/190 This is a cross post to get the attention of as many people as possible. To collect all feedback in a central place, please keep the corresponding discussion within the thread mentioned above and do not reply here. Cheers, Andri -- Andri Steiner Member of the TYPO3 Server Team From dev-si at cndp.fr Mon May 29 09:51:52 2017 From: dev-si at cndp.fr (devweb) Date: Mon, 29 May 2017 09:51:52 +0200 Subject: [TYPO3-dev] =?utf-8?q?_TCA_select_problem?= Message-ID: Hi, I've got a select in my TCA : 'owner' => array( 'exclude' => 1, 'label' => 'my label', 'config' => array( 'type' => 'select', 'renderType' => 'selectSingle', 'foreign_table' => 'fe_users', 'minitems' => 0, 'maxitems' => 1, 'wizards' => array( 'suggest' => array( 'type' => 'suggest' ), ), ), ), The problem is my fe_users table contains more than 36000 users and i've got a "Fatal error: Allowed memory size" how can i solve that ? I try to put an input with a wizard type "suggest" but input just show the id and not the user's name and select a value in then wizard don't put it in the input field. From office at hanneslau.de Mon May 29 12:12:32 2017 From: office at hanneslau.de (Hannes Lau) Date: Mon, 29 May 2017 12:12:32 +0200 Subject: [TYPO3-dev] TCA select problem In-Reply-To: References: Message-ID: On 29.05.17 09:51, devweb wrote: > Hi, > I've got a select in my TCA : > > 'owner' => array( > 'exclude' => 1, > 'label' => 'my label', > 'config' => array( > 'type' => 'select', > 'renderType' => 'selectSingle', > 'foreign_table' => 'fe_users', > 'minitems' => 0, > 'maxitems' => 1, > 'wizards' => array( > 'suggest' => array( > 'type' => 'suggest' > ), > ), > ), > ), > > The problem is my fe_users table contains more than 36000 users and i've > got a "Fatal error: Allowed memory size" how can i solve that ? I try to > put an input with a wizard type "suggest" but input just show the id and > not the user's name and select a value in then wizard don't put it in > the input field. Maybe you could switch to a 'group' field. https://docs.typo3.org/typo3cms/TCAReference/ColumnsConfig/Type/Group.html Regards, Hannes From dev-si at cndp.fr Mon May 29 12:33:24 2017 From: dev-si at cndp.fr (devweb) Date: Mon, 29 May 2017 12:33:24 +0200 Subject: [TYPO3-dev] =?utf-8?q?TCA_select_problem?= References: Message-ID: Yes I thought about it but as it worked very well in 6.2, I hoped to find a solution for 7.x which would not change the habits of my backend users. I try with 'group' and it's works, thanks.