Your application folder path does not appear to be

2019-08-03 06:54发布

问题:

the system used to work correctly, but then this error occurs I had no idea for the solution since i'm still new to this platform; but I've checked similar issue that suggested its due to missing file directory. Any suggestion?

Attached is the File structure; These files are under a system fileFiles structure

回答1:

This occures due to the following reasons.

  • your system folder might be missing

  • Check your permission of folders

  • Open your index.php file and find $system_path and
    $application_folder.

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



回答2:

point your system folder correctly, if it is different directory adjust that in the index.php

e.g

$system_path = 'system';

$system_path = '../system';

$system_path = '../../system';