When I set output_handler (either through php.ini our .htaccess) it
does not work with my custom funcions. Why is that?
..htaccess:
will work:
php_value output_handler "ob_gzhandl er"
won't work:
php_value output_handler "fwk_output_han dler"
php.ini:
will work:
output_handler "ob_gzhandl er"
won't work:
output_handler "fwk_output_han dler"
I'm checking it through this script:
<?
var_dump(ob_lis t_handlers());
?>
and all I get is "array(0) { }" when trying to set the handler to any
function other than ob_gzhandler.
Any ideas?
does not work with my custom funcions. Why is that?
..htaccess:
will work:
php_value output_handler "ob_gzhandl er"
won't work:
php_value output_handler "fwk_output_han dler"
php.ini:
will work:
output_handler "ob_gzhandl er"
won't work:
output_handler "fwk_output_han dler"
I'm checking it through this script:
<?
var_dump(ob_lis t_handlers());
?>
and all I get is "array(0) { }" when trying to set the handler to any
function other than ob_gzhandler.
Any ideas?
Comment