You're welcome!
I just noticed an error in the code that I posted. In my previous post, I said to find the following code in config.php:
PHP Code:
if ((isset($relative_script_path)) && ($relative_script_path != ".") && ($relative_script_path != "..")) {
exit();
}
The correct replacement code should be:
PHP Code:
if ((isset($relative_script_path)) && ($relative_script_path != ".") && ($relative_script_path != "..") &&
($relative_script_path != "/your_complete_script_path")) {
exit();
}
Sorry about the mistake. You would get a parse error on the original code that I posted.