Welcome Guest, Not a member yet? Register   Sign In
CI on Windows problem
#11

[eluser]tekhneek[/eluser]
You're killing yourself man, you should download WAMP (Windows, Apache, MySQL and PHP). I know there's a way to do this with pure IIS but I have no idea how, and because of the problems I've run into I've found that using WAMP as a development environment on my local Windows machine(s) is the most stable.

I made an entire video tutorial on how to setup WAMP <a href="http://www.crainbandy.com/programming/php/setting-up-a-web-server-with-php-mysql-and-apache-on-windows-xp">on my blog crainbandy.com</a>

I would first switch over to a WAMP setup -- then make sure the mod_rewrite module is being included. That error to me looks like you aren't using .htaccess.

Once you get that setup (should only take about 15 minutes) you'll need to make sure your .htaccess file is correct

This is the .htaccess file I use

Code:
RewriteEngine On
    RewriteBase /

    RewriteCond %{REQUEST_URI} ^system.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteCond $1 !^(index\.php|images|robots\.txt|css)
    RewriteRule ^(.*)$ index.php?/$1 [L]
#12

[eluser]nigelb[/eluser]
WAMP is not an option - managed server.
#13

[eluser]tekhneek[/eluser]
Doh. I'm out of suggestions then :o
#14

[eluser]jdfwarrior[/eluser]
I have a request Smile If you get the rewrites and such working with IIS, can you document it and send it to me hehe. I could probably figure it out, but.. ok fine, I'm being lazy. I don't just HAVE to have this though, its basically just for the knowledge in case I ever do need it.




Theme © iAndrew 2016 - Forum software by © MyBB