I tried to dump the output of certain scripts to the browser on demand, but they do not work on our production server.
For example, I tried running the “Phoca Deck Modification Tool” (find it on Google), and I don’t see any output until the script completes.
I tried to immediately clear the buffer on another script that works fine on any server, but using the following code:
echo "something"; ob_flush(); flush();
Setting "ob_implicit_flush (1);" Does not help.
Apache 2.2.21 server running PHP 5.2.17 runs on Linux. You can see our php.ini file here if this helps: http://www.smallfiles.org/download/1123/php.ini.html
This is not the only problem that the server faces ignoring script directives. The server also ignores timeout encoding, for example:
ini_set('max_execution_time', 900*60);
and
set_time_limit(86400);
Script is always disabled by default php.ini.
It doesn't seem to matter if the script is executed in IE or Firefox.
source share