Quote:
Originally Posted by SKNY
Not officially from Erwin,
but if you download his basic file from above and are unable to get it to work on you vBulletin 3.5.X Version you have to make a small fix. A function used by this Modification was replaced with another one for the 3.5.X series.
I have it currently working on 3.5.3, but it should work with the 3.5.X series.
So the fix to get it working on 3.5.X. (Special thanks to Paul M for this coding help)
Step 1: Download file above.
Step 2: Search for:
Code:
globalize($_REQUEST, array(
'file' => STR,
'title' => STR
));
Step 3: Replace With
Code:
$vbulletin->input->clean_array_gpc('r', array(
'file' => TYPE_STR,
'title' => TYPE_STR,
));
$file = $vbulletin->GPC['file'];
$title = $vbulletin->GPC['title'];
It should start working after doing this. I'll be glad to help anyone who needs additional help since no Erwin since June. (Hope you don’t mind Erwin =) )
|
I did the changes and no content being pulled in from the text file I am pointing to. any help is appreciated.