diff --git a/application/config/config.php b/application/config/config.php index 60589e5a3..d88a4d1fe 100644 --- a/application/config/config.php +++ b/application/config/config.php @@ -147,7 +147,7 @@ | Note: This will NOT disable or override the CodeIgniter-specific | autoloading (application/config/autoload.php) */ -$config['composer_autoload'] = 'vendor/autoload.php'; +$config['composer_autoload'] = '../vendor/autoload.php'; /* |-------------------------------------------------------------------------- diff --git a/www/index.php b/www/index.php index fa311e658..1fd68c461 100644 --- a/www/index.php +++ b/www/index.php @@ -97,7 +97,7 @@ * This variable must contain the name of your "system" directory. * Set the path if it is not in the same directory as this file. */ - $system_path = 'vendor/codeigniter/framework/system'; + $system_path = '../vendor/codeigniter/framework/system'; /* *--------------------------------------------------------------- @@ -114,7 +114,7 @@ * * NO TRAILING SLASH! */ - $application_folder = 'application'; + $application_folder = '../application'; /* *---------------------------------------------------------------