Welcome Guest, Not a member yet? Register   Sign In
$system_path Help
#1

(This post was last modified: 03-08-2015, 09:41 AM by Oscar165. Edit Reason: Figured it out )

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.
Reply
#2

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.
Reply
#3

(This post was last modified: 03-08-2015, 09:58 AM by Muzikant.)

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.
Reply
#4

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. :-)
Reply




Theme © iAndrew 2016 - Forum software by © MyBB