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.
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.
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';
Check if the required application
and system
folders exist. I had the same problem after deleting the "system" folder
Check your permission. The web server user may not have permissions to read everything.
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.
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.
I had the same problem but for me, it was the first time installing code ignitor using composer. When I copied the files from vendor/codeignitor/ to my web root then everything worked fine.
please check your system folder in root directory. I think it is not exist. I was getting same issue and i have fixed it.
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';
Change the php version to 5.6 (if its 7.2+ changing it to 5.6 , worked for me)
This is because your system path is missing
index.php
file$system_path ='path'
variable$application_folder ='path'
variablecomposer install
will create the system folder pathRemember : Never ever modify or rename system files
Check if you have a vendor folder, if not run composer install
© 2022 - 2024 — McMap. All rights reserved.