I have an FTP server (abc.xyz.com), and I want to install CodeIgniter in the ftp server. I followed the instructions at, CodeIgniter Installation for installing it.

I used FileZilla to copy CI to the root directory of the ftp server. But In Step 3) “set your base URL”, I tried giving the URL of the ftp server. But it does not work. How should I give the base URL. As am new to PHP/CodeIgniter I am not sure how it should be given.

I checked the routes.php and the default controller, welcome.php. It looks fine. But I am not getting the, “Welcome to CodeIgniter” message. Also I checked the same using XAMPP in my local host and it works fine. i.e. After copying CI to 'htdocs', I am able to see CI's Welcome message.

How can I check if CodeIgniter is installed successfully on the ftp server.

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

How should I give the base URL?

Try leaving it blank. Codeigiter will do it's best to automatically "guess" the base url, based on some $_SERVER variables.

The CI documentation looks like it needs to be updated, this feature was added in version 2.0.0.

link|improve this answer
even if I leave it blank, am not getting the welcome message from CI. could you please confirm how I should access my ftp server to see the welcome message.? Is it abc.xyz.com which should give the welcome message. – SyncMaster Dec 20 '11 at 0:15
feedback

Can you tell us the actual folder structure your files are in. Is it root > applications, system, blah blah blah or is it root > CodeIgniter > applications, system blah blah blah.

I only ask because I made the same mistake once where I copied the entire work folder "CodeIgniter" from my htdocs folder into my root. You have to copy whats inside that folder and put it in the root.

link|improve this answer
It is root -> applications -> config -> config.php. I copied the contents of CI to my root directory. Yeah I have copied only folders inside. could you please confirm how I should access my ftp server to see the welcome message.? Is it abc.xyz.com which should give the welcome message. – SyncMaster Dec 20 '11 at 0:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.