Welcome Guest, Not a member yet? Register   Sign In
Absolute "noob" questions
#17

[eluser]tdktank59[/eluser]
First off make sure the server has mod rewrite enabled...
echo phpinfo();
in some file and search for mod_rewrite (ctrl + f) under loaded modules should be around the 3rd box on the page. If it is not there then talk to your host.

If it does exist heres a few things I did to make it work!

/applications/config/config.php (snippet)
Code:
/*
|--------------------------------------------------------------------------
| Index File
|--------------------------------------------------------------------------
|
| Typically this will be your index.php file, unless you've renamed it to
| something else. If you are using mod_rewrite to remove the page set this
| variable so that it is blank.
|
*/
$config['index_page'] = "";

/*
|--------------------------------------------------------------------------
| 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']    = "REQUEST_URI";

.htaccess (place in root directory *where index.php is*)
Code:
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>

<IfModule !mod_rewrite.c>
    # If we don't have mod_rewrite installed, all 404's
    # can be sent to index.php, and everything works as normal.
    # Submitted by: ElliotHaughin

    ErrorDocument 404 /index.php
</IfModule>


Messages In This Thread
Absolute "noob" questions - by El Forum - 10-28-2008, 09:49 AM
Absolute "noob" questions - by El Forum - 10-28-2008, 10:04 AM
Absolute "noob" questions - by El Forum - 10-28-2008, 10:20 AM
Absolute "noob" questions - by El Forum - 10-28-2008, 10:33 AM
Absolute "noob" questions - by El Forum - 10-28-2008, 10:52 AM
Absolute "noob" questions - by El Forum - 10-28-2008, 11:07 AM
Absolute "noob" questions - by El Forum - 10-28-2008, 12:31 PM
Absolute "noob" questions - by El Forum - 10-28-2008, 12:37 PM
Absolute "noob" questions - by El Forum - 10-28-2008, 01:19 PM
Absolute "noob" questions - by El Forum - 10-28-2008, 03:24 PM
Absolute "noob" questions - by El Forum - 10-28-2008, 03:27 PM
Absolute "noob" questions - by El Forum - 10-28-2008, 03:35 PM
Absolute "noob" questions - by El Forum - 10-28-2008, 03:36 PM
Absolute "noob" questions - by El Forum - 10-28-2008, 03:45 PM
Absolute "noob" questions - by El Forum - 10-28-2008, 03:47 PM
Absolute "noob" questions - by El Forum - 10-28-2008, 04:11 PM
Absolute "noob" questions - by El Forum - 10-28-2008, 04:24 PM
Absolute "noob" questions - by El Forum - 10-28-2008, 04:32 PM
Absolute "noob" questions - by El Forum - 10-28-2008, 04:37 PM
Absolute "noob" questions - by El Forum - 10-28-2008, 04:46 PM
Absolute "noob" questions - by El Forum - 10-28-2008, 04:49 PM
Absolute "noob" questions - by El Forum - 10-28-2008, 04:58 PM
Absolute "noob" questions - by El Forum - 10-28-2008, 05:03 PM
Absolute "noob" questions - by El Forum - 10-28-2008, 05:54 PM
Absolute "noob" questions - by El Forum - 10-31-2008, 11:28 PM
Absolute "noob" questions - by El Forum - 10-31-2008, 11:34 PM
Absolute "noob" questions - by El Forum - 10-31-2008, 11:37 PM
Absolute "noob" questions - by El Forum - 11-01-2008, 12:10 AM
Absolute "noob" questions - by El Forum - 11-01-2008, 12:25 AM
Absolute "noob" questions - by El Forum - 11-01-2008, 12:21 PM
Absolute "noob" questions - by El Forum - 11-01-2008, 12:27 PM
Absolute "noob" questions - by El Forum - 11-01-2008, 12:29 PM
Absolute "noob" questions - by El Forum - 11-01-2008, 12:29 PM
Absolute "noob" questions - by El Forum - 11-01-2008, 12:31 PM
Absolute "noob" questions - by El Forum - 11-01-2008, 05:34 PM
Absolute "noob" questions - by El Forum - 11-01-2008, 06:51 PM
Absolute "noob" questions - by El Forum - 11-01-2008, 06:56 PM
Absolute "noob" questions - by El Forum - 11-01-2008, 06:57 PM
Absolute "noob" questions - by El Forum - 11-01-2008, 07:04 PM
Absolute "noob" questions - by El Forum - 11-01-2008, 07:07 PM



Theme © iAndrew 2016 - Forum software by © MyBB