mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
Added check for if .project.ROOT is missing
If a installation is missing the .project.ROOT previously it would just use the last search path as the project root (wrong) this will cause a Exception should it be unable to find it
This commit is contained in:
@@ -74,6 +74,9 @@
|
||||
}
|
||||
$i++;
|
||||
}
|
||||
if(!file_exists($path. '/.project.ROOT')){
|
||||
throw new Exception("Failed to locate the Project Root by searching for .project.ROOT please contact support for assistance");
|
||||
}
|
||||
$project_path = str_replace($_SERVER["DOCUMENT_ROOT"], "", $path);
|
||||
define('PROJECT_PATH', $project_path);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user