To get this Mod to work with KW802's replacement for external.php in this thread "FPS_EXTERNAL.PHP -- New options added & RSS compliant version of external.php" -
https://vborg.vbsupport.ru/showthread.php?t=69834, use the following instructions instead of the ones attached here:
Open fps_external.php (or whatever you renamed it to).
Find:
PHP Code:
case 'JS':
break;
case 'XML':
break;
case 'RSS1':
break;
case 'RSS2':
break;
Under it add:
PHP Code:
case 'PHP':
break;
Find:
PHP Code:
// +=============================================================+
// | Build the RSS feeds |
// +=============================================================+
else if (($_REQUEST['type'] == 'RSS' OR $_REQUEST['type'] == 'RSS1' OR $_REQUEST['type'] == 'RSS2') AND $vboptions['externalrss'])
Above it add:
PHP Code:
else if ($_REQUEST['type'] == 'PHP')
{ // PHP output
echo serialize($threadcache);
}
Hope this helps,
jd