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

10

21

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.

Cradle answered 30/9, 2014 at 4:50 Comment(9)
Have you change your system folder to something else??Endicott
Nope. I have not changed anything.Cradle
Please provide your File structure by edit your question..Endicott
i.imgur.com/pVPy1ZC.pngCradle
Your System folder is not there.Endicott
Where it will present.?Cradle
You have to have system folder in your structure. I think you rename it or not upload it.Endicott
The error message itself is the solution ...Craze
Are you using hostinger's free web hosting...Sclera
F
17

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';
Francophile answered 1/10, 2014 at 1:44 Comment(0)
F
10

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

Foeman answered 31/10, 2015 at 8:24 Comment(0)
R
6

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

Repress answered 21/4, 2015 at 17:11 Comment(0)
T
1

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.

Tyranny answered 11/1, 2016 at 8:20 Comment(1)
re-uploaded system folder and problem was solved, thanks!Denazify
D
1

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.

Deathwatch answered 15/11, 2018 at 11:15 Comment(0)
O
0

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.

Overby answered 25/6, 2020 at 23:11 Comment(0)
T
0

please check your system folder in root directory. I think it is not exist. I was getting same issue and i have fixed it.

Treehopper answered 24/8, 2020 at 11:51 Comment(0)
C
0
  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. Change the php version to 5.6 (if its 7.2+ changing it to 5.6 , worked for me)

Coolie answered 28/10, 2020 at 6:54 Comment(0)
M
0

This is because your system path is missing

  1. Go to index.php file
  2. Check the $system_path ='path' variable
  3. Check the $application_folder ='path' variable
  4. Probably the folder path missing or Renamed which you shouldnt do
  5. If your using composer composer install will create the system folder path
  6. If not the case you have to re-install Codeignitor

Remember : Never ever modify or rename system files

Mozellamozelle answered 26/8, 2021 at 15:55 Comment(0)
T
0

Check if you have a vendor folder, if not run composer install

Toussaint answered 2/10, 2023 at 9:14 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.