Welcome Guest, Not a member yet? Register   Sign In
Unable to install
#1

[eluser]shoorace[/eluser]
I followed instruction given in http://ellislab.com/codeigniter/user-gui...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.
#2

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

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

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

[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
#6

[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.
#7

[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.
#8

[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




Theme © iAndrew 2016 - Forum software by © MyBB