dari wrote: › Since that's neither a G2 or phpnuke error, i'm guessing it's sentinel. can you disable it and view that link with no error?
Yep. It was Sentinel. Fixed it.
In sentinel.php find:
Code: › // Stop Santy Worm
$bad_uri_content="rush,highlight,perl,chr(,pillar,visualcoder,sess_";
global $REQUEST_URI;
$tmp=explode(",",$bad_uri_content);
while(list($snid,$uri_content)=each($tmp)) {
if (strpos($REQUEST_URI,$uri_content)) {
die("Illegal Content");
}
}
and remove:
Code: › highlight,
That should fix it for anyone else with this problem.