Hello,
I have a script that sends a file:
<?
http_send_content_type(“text/plain”);
http_send_file('/path/to/some/file');
?>
This works fine.
If i add the QCodo include to this
<?
include_once('qcodo/includes/prepend.inc.php');
http_send_content_type(“text/plain”);
http_send_file('/path/to/some/file');
?>
it stops working.
I tried to comment out the sending of extra QCodo information in headers inside QApplicationBase.class.php (the line QApplication::InitializeServerSignature();) but this did not help.
Any ideas appreciated.
Thanks,
Brocha