View Single Post
Old 04-18-2004, 10:37 AM   #6
vinyl-junkie
Purple Mole
 
Join Date: Jan 2004
Posts: 694
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.
vinyl-junkie is offline   Reply With Quote