Hello,

I am setting up a program that requires allow_call_time_pass_reference to be 
enabled. I've set allow_call_time_pass_reference = ON in the 
/usr/local/etc/php.ini file

grep -n allow_call_time_pass_reference /usr/local/etc/php.ini
70: - allow_call_time_pass_reference = 1 [Code cleanliness]
167:allow_call_time_pass_reference = 1


But the program still calls for the option to be enabled. So I have run a test 
file with the ini_get function, the code below.
------code-------
<html>
    <head>
     <title>Test Page</title>
    </head>
    <body bgcolor=#FFFFFF text=#000000>
   <?php echo ini_get('allow_call_time_pass_reference'); ?>
   </body>
   </html>
----end code-----

Output page ==>  blank

/usr/local/etc/php.ini has permissions set to 444 and listed in phpinfo.php

Suggestions?

Thanks!

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to