Quote:
Originally Posted by dkendall
Also, the problem (mentioned long ago) with the gateway spewing HTML when used with FireFox and the scheduled task manager is caused by this:
Code:
if (!headers_sent())
{
header("Content-Type: text/plain");
}
... around line 35 of gateway.php. Just take (or comment) it out, and the problem goes away.
|
Another thing... If you want to be able to run the gateway in debug mode via the Scheduled Task manager, replace function
logging in functions_nntp.php with this:
Code:
function logging($text)
{
global $nntp;
if (isset($nntp['debug']) AND $nntp['debug'] == 1)
{
if (function_exists('log_cron_action'))
{
print_r($text . "<br>\r\n");
}
else
{
if (!headers_sent())
{
header("Content-Type: text/plain");
}
echo $text . "\r\n";
flush();
ob_flush();
}
}
if ($nntp['settings']['do_cron_log'])
{
$GLOBALS['nntp']['cron_log'] .= $text . "<br />";
}
}
This will stop it spewing raw HTML.
AFAIK, the scheduler won't allow you do specify the DEBUG parameter, so you'll also have to modify gateway.php and add this:
Code:
$nntp['debug'] = 1;
David