Just got a new server in the office so updated to the latest EasyPHP – version 3. However, all was not smooth:
- At first I kept getting a “permission denied” error – you’ll need to search the httpd.conf file for the <Directory /> container and get rid of
Deny from all
. (Or at least comment it out, anyway.) - The mod-rewrite wouldn’t work. Two steps to fix this:
- Search httpd.conf for mod_rewrite and uncomment the
LoadModule
line. - Search for AllowOverride. There should be two instances where you need to change
None
toAll
. (Source)
- Search httpd.conf for mod_rewrite and uncomment the
Now I can get back to work!
Advertisements