Thread: re-indexing
View Single Post
Old 06-18-2004, 04:55 PM   #2
Charter
Head Mole
 
Charter's Avatar
 
Join Date: May 2003
Posts: 2,539
Hi. Looks like a path issue. Below from the config.php file in the next version to be released...
PHP Code:
// NOTE: If you want a different path, you need to add that path (relative path up to the 
// admin directory: ../dir or full path up to the admin directory: /full/path/to/dir) in 
// the first if statement in this config.php file - for example:
// && ($relative_script_path != "../dir") // relative path
// && ($relative_script_path != "/full/path/to/dir") // full path
// NOTE: double dot means go back one and single dot means stay in same directory
// NOTE: the path should be UP TO but NOT INCLUDING the admin directory - NO ending slash

define('ABSOLUTE_SCRIPT_PATH','/full/path/to/dir'); // up to but not including admin dir

if ((!isset($relative_script_path)) || (($relative_script_path != ".") && 
(
$relative_script_path != "..") && ($relative_script_path != ABSOLUTE_SCRIPT_PATH))) {
  
// echo "\n\nPath not recognized!\n\n";
  
exit();

__________________
Responses are offered on a voluntary if/as time is available basis, no guarantees. Double posting or bumping threads will not get your question answered any faster. No support via PM or email, responses not guaranteed. Thank you for your comprehension.
Charter is offline   Reply With Quote