Quote:
Originally Posted by jdsinclair
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 
|
Quote:
Originally Posted by KW802
If there are no objections I'll incorporate that into the next round of changes I'm working on. 
|
Sorry it took so long to respond, I have only just rechecked this thread. I have no probs you using my instructions, it was just to get okrogius's code to work with your version instead of the original external.php.
The only problem I see with okrogius's code is that there is no mechanism to turn off the php feed in the ACP (whereas you can switch off the others), that needs to be factored in when adding the php feed if okrogius gives permission to use his code.
jd