Question - is it possible to add in an additional plugin (or just add into the code somewhere) a type of exclusion list?
Say i have a custom page i want to load, and in the php file i've defined the script using define('THIS_SCRIPT', 'myscript'); is there some way of disabling the vrewrite protocols from engaging with that script entirely, whilst leaving the others "as is"? I don't mind if the custom page urls aren't re-written, i just want to exclude any that conflict with vrewrite.
EDIT: found an answer. Went to the "main script" plugin and replaced:
if($vbulletin->options['vRewrite_on'])
With:
if(THIS_SCRIPT !== 'myscript' AND $vbulletin->options['vRewrite_on'])
|