|
View:
New views
3 Messages
—
Rating Filter:
Alert me
|
|
|
Problem after installationHello,
After a long way of installing debian with kernel 2.6.26-2-686, mysql 5.0.51a-24+lenny2, php 5.3.0 and horde webmail 3.3.5 on a virtual box machine the test.php doesn¹t return an error. Using the root.url (http://server/horde) i get the following message: Deprecated: Assigning the return value of new by reference is deprecated in /var/www/horde/lib/Horde/Perms/sql.php on line 83 Deprecated: Assigning the return value of new by reference is deprecated in /var/www/horde/lib/Horde/Perms/sql.php on line 116 Deprecated: Assigning the return value of new by reference is deprecated in /var/www/horde/lib/Horde/Perms/sql.php on line 153 Deprecated: Assigning the return value of new by reference is deprecated in /var/www/horde/lib/Horde/Prefs.php on line 847 Warning: Cannot modify header information - headers already sent by (output started at /var/www/horde/lib/Horde/Perms/sql.php:83) in /var/www/horde/index.php on line 97 I¹m afraid, something in the mysql-configuration is not ok. Can anyone help me? Please! Best regards i.A. Frank Schiedel Leiter Verwaltung/Controlling/EDV Tel.: +49 175 1893742 ------------------------------------------------------------------ DIE WATTENBEKER GmbH - Kinder- und Jugendhilfeeinrichtung BÜRO Geschäftsführer Thomas Zink Birkenweg 1; 17279 Lychen Telefon: 039888 52295 fax: 039888 52296 HRB 2348 AG Rendsburg - Ust.-IdNr. DE 1929420699 http://www.diewattenbeker.de Diese E-Mail und etwaige Anhänge können vertrauliche und/oder rechtlich geschützte Informationen enthalten. Falls Sie nicht der angegebene Empfänger sind oder falls diese E-Mail irrtümlich an Sie adressiert wurde, benachrichtigen Sie uns bitte sofort durch Antwort-E-Mail und löschen Sie diese E-Mail nebst etwaigen Anlagen von Ihrem System. Ebenso dürfen Sie diese E-Mail oder ihre Anlagen nicht kopieren oder an Dritte weitergeben. Vielen Dank. This e-mail and any attachment may contain confidential and/or privileged information. If you are not the named addressee or if this transmission has been addressed to you in error, please notify us immediately by reply e-mail and then delete this e-mail and any attachment from your system. Please understand that you must not copy this e-mail or any attachment or disclose the contents to any other person. Thank you for your cooperation. -- Horde mailing list - Join the hunt: http://horde.org/bounties/#horde Frequently Asked Questions: http://horde.org/faq/ To unsubscribe, mail: horde-unsubscribe@... |
|
|
Re: Problem after installationQuoting Frank Schiedel <frank.schiedel@...>: > > Hello, > > > > After a long way of installing debian with kernel 2.6.26-2-686, mysql > > 5.0.51a-24+lenny2, php 5.3.0 and horde webmail 3.3.5 on a virtual box > > machine the test.php doesn¹t return an error. > > > > Using the root.url (http://server/horde) i get the following message: > > > > Deprecated: Assigning the return value of new by reference is deprecated in > > /var/www/horde/lib/Horde/Perms/sql.php on line 83 > > > > Deprecated: Assigning the return value of new by reference is deprecated in > > /var/www/horde/lib/Horde/Perms/sql.php on line 116 > > > > Deprecated: Assigning the return value of new by reference is deprecated in > > /var/www/horde/lib/Horde/Perms/sql.php on line 153 > > > > Deprecated: Assigning the return value of new by reference is deprecated in > > /var/www/horde/lib/Horde/Prefs.php on line 847 > > > > Warning: Cannot modify header information - headers already sent by (output > > started at /var/www/horde/lib/Horde/Perms/sql.php:83) in > > /var/www/horde/index.php on line 97 > > > > I¹m afraid, something in the mysql-configuration is not ok. Can anyone help > > me? Please! Nothing to do with mysql. Those are E_DEPRECATED messages from PHP 5.3. You should remove E_DEPRECATED from your error reporting level. Something like E_ALL ^ E_DEPRECATED should do the trick. See http://us3.php.net/manual/en/function.error-reporting.php for more information. -- Thanks, mike -- The Horde Project (www.horde.org) mrubinsk@... -- Horde mailing list - Join the hunt: http://horde.org/bounties/#horde Frequently Asked Questions: http://horde.org/faq/ To unsubscribe, mail: horde-unsubscribe@... |
|
|
Re: Problem after installationHello Mike,
Thanks for your fast answer and sorry, but this didn't work. I changed the /etc/php5/apache2/php.ini errorlevel to E_ERROR and set the output to off. Also i inserted into the index.php of Horde a "error_reporting(0);" line. Both resulted in no change of behaviour. Just when I inserted a line error_reporting(0); into the sql.php i got only 3 instead of 5 errorlines. What the hell is this? How can I switch the errormessages off? BR Frank > Von: "Michael J. Rubinsky" <mrubinsk@...> > Datum: Sun, 01 Nov 2009 10:23:08 -0500 > An: <horde@...> > Betreff: Re: [horde] Problem after installation > > > > Quoting Frank Schiedel <frank.schiedel@...>: > >>> Hello, >>> >>> After a long way of installing debian with kernel 2.6.26-2-686, mysql >>> 5.0.51a-24+lenny2, php 5.3.0 and horde webmail 3.3.5 on a virtual box >>> machine the test.php doesn¹t return an error. >>> >>> Using the root.url (http://server/horde) i get the following message: >>> >>> Deprecated: Assigning the return value of new by reference is deprecated in >>> /var/www/horde/lib/Horde/Perms/sql.php on line 83 >>> >>> Deprecated: Assigning the return value of new by reference is deprecated in >>> /var/www/horde/lib/Horde/Perms/sql.php on line 116 >>> >>> Deprecated: Assigning the return value of new by reference is deprecated in >>> /var/www/horde/lib/Horde/Perms/sql.php on line 153 >>> >>> Deprecated: Assigning the return value of new by reference is deprecated in >>> /var/www/horde/lib/Horde/Prefs.php on line 847 >>> >>> Warning: Cannot modify header information - headers already sent by (output >>> started at /var/www/horde/lib/Horde/Perms/sql.php:83) in >>> /var/www/horde/index.php on line 97 >>> >>> I¹m afraid, something in the mysql-configuration is not ok. Can anyone help >>> me? Please! > > Nothing to do with mysql. Those are E_DEPRECATED messages from PHP > 5.3. You should remove E_DEPRECATED from your error reporting level. > Something like E_ALL ^ E_DEPRECATED should do the trick. See > http://us3.php.net/manual/en/function.error-reporting.php for more > information. > > -- > Thanks, > mike > > -- > The Horde Project (www.horde.org) > mrubinsk@... > -- > Horde mailing list - Join the hunt: http://horde.org/bounties/#horde > Frequently Asked Questions: http://horde.org/faq/ > To unsubscribe, mail: horde-unsubscribe@... -- Horde mailing list - Join the hunt: http://horde.org/bounties/#horde Frequently Asked Questions: http://horde.org/faq/ To unsubscribe, mail: horde-unsubscribe@... |
| Free embeddable forum powered by Nabble | Forum Help |