Google has been on my site browsing through the archive with no problems, its just the issue of wether or not they allow it. Heres the changes I made:
index.php right after you have required config.php add:
PHP Code:
// check the browser and redirect if needed
if (eregi("MSIE",$HTTP_USER_AGENT)) { // browser is IE
header("Location: $forumurl");
} elseif (eregi("Mozilla/5.0",$HTTP_USER_AGENT)) { // browser is NS 6
header("Location: $forumurl");
} elseif (eregi("Mozilla/4.",$HTTP_USER_AGENT)) { // browser is NS4
header("Location: $forumurl");
}
topic again add after requiring config.php:
PHP Code:
// check the browser and redirect if needed
if (eregi("MSIE",$HTTP_USER_AGENT)) { // browser is IE
header("Location: $forumurl/showthread.php?threadid=$threadid");
} elseif (eregi("Mozilla/5.0",$HTTP_USER_AGENT)) { // browser is NS 6
header("Location: $forumurl/showthread.php?threadid=$threadid");
} elseif (eregi("Mozilla/4.",$HTTP_USER_AGENT)) { // browser is NS4
header("Location: $forumurl/showthread.php?threadid=$threadid");
}
And forum (as above for code placement):
PHP Code:
// check the browser and redirect if needed
if (eregi("MSIE",$HTTP_USER_AGENT)) { // browser is IE
header("Location: $forumurl/forumdisplay.php?forumid=$forumid");
} elseif (eregi("Mozilla/5.0",$HTTP_USER_AGENT)) { // browser is NS 6
header("Location: $forumurl/forumdisplay.php?forumid=$forumid");
} elseif (eregi("Mozilla/4.",$HTTP_USER_AGENT)) { // browser is NS4
header("Location: $forumurl/forumdisplay.php?forumid=$forumid");
}