Mark wrote:
can someone tell me what this means. only noticed since i did my php install
[Mon Jul 12 23:10:55 2004] [error] PHP Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by re ference, modify the declaration of xml_set_object(). If you would like to enabl e call-time pass-by-reference, you can set allow_call_time_pass_reference to tru e in your INI file. However, future versions may not support this any longer. in /usr/local/www/data-dist/includes/blocks/fxp.php on line 203 php 4.3.6
I hope so. thanks mark
Mark,
It means that the function declared its parameters to be passed by value, but a now depreciated feature of php is to force a parameter to be passed by reference at run time.
It it now not a good idea for code to do this.
It probably means that the "allow_call_time_pass_reference" in your php.ini is set to "off" and the script you are using would need it set to "on". Better to update the code if possible.
HTH Chris