I have my own vbulletin page and in it are several functions of which are different redirects depending on the action. However for some reason the do query string in the url ($url) is changing and I don't know why. it's causing permission error because it's redirecting to incorrect urls.
Some examples:
PHP Code:
$url = "http://www.webhostdebate.com/banners.php?do=add";
eval(print_standard_redirect("You campaign has been removed.", false, true));
$url = "http://www.webhostdebate.com/banners.php?do=statistics";
eval(print_standard_redirect("You banner campaign has been created, but will not be active until staff approves it.", false, true));
$url = "http://www.webhostdebate.com/banners.php?do=statistics";
eval(print_standard_redirect("You campaign has been updated, but will not be active until staff approves it.", false, true));
These are the 3 I have all used for different actions. They were working before I added some things to the document, now they are all that don't properly work. The only thing that gets changed is the do= string in the url. What may cause this?