PDA

View Full Version : Call-time pass-by-reference has been deprecated


ancape64
02-09-2010, 01:29 AM
:cool:After installation the site loads, but always brings the message below. How do I fix this?


Warning: Call-time pass-by-reference has been deprecated in /home/storage/c/42/cd/contabilidadesimples/public_html/lib/vivvo/framework/vivvo_framework.php on line 404

Warning: Call-time pass-by-reference has been deprecated in /home/storage/c/42/cd/contabilidadesimples/public_html/lib/vivvo/framework/vivvo_framework.php on line 636

Warning: Call-time pass-by-reference has been deprecated in /home/storage/c/42/cd/contabilidadesimples/public_html/lib/vivvo/framework/vivvo_framework.php on line 646

Warning: Call-time pass-by-reference has been deprecated in /home/storage/c/42/cd/contabilidadesimples/public_html/lib/vivvo/framework/vivvo_framework.php on line 660

andy77
02-09-2010, 01:42 AM
What Vivvo version are you using? What PHP version do you have on your server?

akash210
02-09-2010, 08:56 AM
You're probably using php 5.3+ so just add the following at the top of lib/vivvo/vivvo_lite_site.php file

defined('E_DEPRECATED') or define('E_DEPRECATED', 8192);
defined('E_USER_DEPRECATED') or define('E_USER_DEPRECATED', 16384);

Add it just above error_reporting.

Let me know if it helps. :)

ancape64
02-09-2010, 12:50 PM
Vivvo CMS v4.1.6 (build 4214)

PHP Version 5.2.9

ancape64
02-09-2010, 01:00 PM
Vivvo CMS v4.1.6 (build 4214)

PHP Version 5.2.9

:)

The problem was solved. If someone were to face the same problem, check in your php.ini file the line "allow_call_time_pass_reference" put the state = "On"

Thank you all for your interest