I would replace the config.php file back to it's original format because it should work if left as is.
The relative script path should find itself
if (is_file("$relative_script_path/libs/search_function.php")) {
include "$relative_script_path/libs/search_function.php";
}
else {
die("Cannot find search_function.php file.\n");
So it may be okay to just replace the files back to the original format and let it find the files because it does appear to be sending queries back to the Index.php file.
|