Hey all I keep getting this in my error logs.
"ErrorException: Fatal Error: Directive 'allow_call_time_pass_reference' is no longer available in PHP -Unknown:0"
Hey all I keep getting this in my error logs.
"ErrorException: Fatal Error: Directive 'allow_call_time_pass_reference' is no longer available in PHP -Unknown:0"
A PHP call by reference is when you call a function as such:
PHP:
my_function(&$referenced_variable);
And was removed in 5.3 I believe. It appears as tho you have a php.ini setting that used to control this (and was removed in 5.4). You will need to remove that, please see this: http://stackoverflow.com/a/12960242/674167