CodeIgniter Forums
$system_path Help - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: Installation & Setup (https://forum.codeigniter.com/forumdisplay.php?fid=9)
+--- Thread: $system_path Help (/showthread.php?tid=1409)



$system_path Help - Oscar165 - 03-08-2015

I am using Abyss web Server. I placed all the codeigniter files in the htdocs directory works fine.

Structure looks like  G:\Abyss Web Server\htdocs

Next I tried to move the application and system folders to
G:\Abyss Web Server\ci30\system
G:\Abyss Web Server\ci30\application

what do I set the $system_path = 'system'; to
I have tried a lot of combinations but maybe I am missing something
$system_path = 'Abyss Web Server/ci30/system' does not work

Any suggestions

Thanks

Note: Figured it out. Editing the wrong file. Don't know how. I took a break and re opened the file.
realized it was wrong.



RE: $system_path Help - Oscar165 - 03-08-2015

Ok, I feel silly somehow I thought I was editing the correct index.php file and I was not.
set $system_path = '/Abyss Web Server/ci30/system';
it works
It pays to step away once and awhile.


RE: $system_path Help - Muzikant - 03-08-2015

In the case your index.php file is in G:\Abyss Web Server\htdocs , try to use this:

PHP Code:
$system_path '../ci30/system';
$application_folder '../ci30/application'

Or this:

PHP Code:
$system_path 'G:\Abyss Web Server\ci30\system';
$application_folder 'G:\Abyss Web Server\ci30\application'

The problem could be "\" instead of "/" in path.


RE: $system_path Help - Muzikant - 03-08-2015

Quote:Note: Figured it out. Editing the wrong file. Don't know how. I took a break and re opened the file.
realized it was wrong.

Oh, I am sorry, I did not read your note. :-)