Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

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.

like image 850
user3909863 Avatar asked Sep 30 '14 04:09

user3909863


People also ask

What is an index PHP file?

The index. php file for a template contains a mixture of code that will be delivered as it is, and php code, which will be modified before it is delivered. The code will be familiar to anyone who has designed a simple html webpage: there are 2 main sections - the <head> and <body>. Where index.


2 Answers

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';
like image 121
user3137046 Avatar answered Sep 16 '22 11:09

user3137046


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

like image 27
William Avatar answered Sep 20 '22 11:09

William