Your system folder path does not appear to be set

2019-04-03 21:42发布

问题:

When I enter my web address in the browser it showing error like this.

Your system folder path does not appear to be set correctly. Please open the following file and correct this: index.php

Please anyone give me the solution.

回答1:

check your index.php file like the error said and look for $system_path and $application_folder. Those folders must exist in the root of your application, if you delete them(which you shouldn't do) or renamed them, it will cause that error

$system_path = 'system';
$application_folder = 'application';


回答2:

Check if the required application and system folders exist. I had the same problem after deleting the "system" folder



回答3:

Check your permission. The web server user may not have permissions to read everything.



回答4:

When you copying the project files from one system to other some files are missing. so copy once again properly and refresh the page with the same url you will get.



回答5:

Your project don't have a system folder, if you are using composer try to run composer install on your project root folder. In my case its the problem.



标签: codeigniter