PHP error / issues

StarMaiden

New member
Joined
May 25, 2005
Messages
1
I have just installed XOOPS to one of my sites and upon completion of the installation I got error messages. I was told that I would need to set allow_call_time_pass_reference to true in your INI file. I can't access the .ini file and of course I don't have any guarantees that this is the actual problem :-/

Here are the errors...

Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in /home/sbloom01/domains/theholyriver.com/public_html/kernel/object.php on line 723

Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in /home/sbloom01/domains/theholyriver.com/public_html/kernel/configoption.php on line 82

Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in /home/sbloom01/domains/theholyriver.com/public_html/kernel/configitem.php on line 188

Any clue?
 
Try putting something like the following in a .htaccess file in the same directory.

PHP_FLAG allow_call_time_pass_reference On

I don't know if that will work, you should really contact the xoops' developers and get them to update for the latest php versions and default configurations.
 
Back
Top