CodeIgniter Forums
Unable to install - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Unable to install (/showthread.php?tid=4490)



Unable to install - El Forum - 11-28-2007

[eluser]shoorace[/eluser]
I followed instruction given in http://ellislab.com/codeigniter/user-guide/installation/index.html
I have set
Code:
//config.php
$config['base_url']    = "http://localhost/CodeIgniter_1.5.4/";

//database.php
$db['default']['hostname'] = "localhost";
$db['default']['username'] = "root";
$db['default']['password'] = "";
$db['default']['database'] = "codeigniter";

But still there is problem, while running my http://localhost/CodeIgniter_1.5.4/

Quote:404 Page Not Found

The page you requested was not found.

So, is there still anything missing to configure?
Please let me know.

Thanks in advance.


Unable to install - El Forum - 11-28-2007

[eluser]PauloBr[/eluser]
Do you change the default controller in routes.php config file too?

On index.php, you need change the $system_folder variable if you rename this.


Unable to install - El Forum - 11-28-2007

[eluser]shoorace[/eluser]
I have not changed the default controller in routes.php
Nor i have renamed the system folder.


Unable to install - El Forum - 11-28-2007

[eluser]mistress_shiira[/eluser]
can you post your directory structure?


Unable to install - El Forum - 11-29-2007

[eluser]shoorace[/eluser]
My directory structure:
F:\Webroot\CodeIgniter_1.5.4\
    => system\
        => application\
               => config\
               => controllers\
               => errors\
               => hooks\
               => libraries\
               => models\
               => views\
               => index.html
        => cache\
        => codeigniter\
        => database\
        => fonts\
        => helpers\
        => language\
        => libraries\
        => logs\
        => plugins\
        => scaffolding\
    => user_guide\
    => index.php
    => license.txt


Unable to install - El Forum - 11-29-2007

[eluser]mistress_shiira[/eluser]
hello.i downloaded the latest version of CodeIgniter and unzipped it to my d:/xampp/xampplite/htdocs
after unzipping it i already have this: d:/xampp/xampplite/htdocs/CodeIgniter_1.5.4/

and on my browser: http://localhost/CodeIgniter_1.5.4/index.php/

thats all there is to it.
im running php5 anyways.


Unable to install - El Forum - 12-01-2007

[eluser]shoorace[/eluser]
Hello All,

Can anyone upload the well configured CodeIngniter project with database to their ftp and give me the url to download it.

I will be very thankful.


Unable to install - El Forum - 12-14-2007

[eluser]Unknown[/eluser]
You may need to change the URI protocol thats used for your server setup

Code:
/*
|--------------------------------------------------------------------------
| URI PROTOCOL
|--------------------------------------------------------------------------
|
| This item determines which server global should be used to retrieve the
| URI string.  The default setting of "AUTO" works for most servers.
| If your links do not seem to work, try one of the other delicious flavors:
|
| 'AUTO'            Default - auto detects
| 'PATH_INFO'        Uses the PATH_INFO
| 'QUERY_STRING'    Uses the QUERY_STRING
| 'REQUEST_URI'        Uses the REQUEST_URI
| 'ORIG_PATH_INFO'    Uses the ORIG_PATH_INFO
|
*/
$config['uri_protocol']    = "AUTO";

change the "AUTO" to PATH_INFO and see if that helps if not try the others, thats how i fixed my problem with the 404 page