ianhobson
Forum Replies Created
-
Forum: Installing WordPress
In reply to: How to change permalinks under WAMP.Thanks for the replies guys. Sadly they didn’t help.
As already stated, mod-rewrite is both enabled and on, and I am using WAMP One click installer not XAMPP (same line in http.conf).
This is the virtual host definition.
<VirtualHost *:80> ServerName chocolate.leda.hcs ServerAdmin ian@deleted DocumentRoot "D:\GitRepositories\Carrie" RewriteEngine On <Directory "D:\GitRepositories\Carrie"> Options Indexes Order allow,deny Allow from all </Directory> </VirtualHost>The .htaccess file is
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPressEvery page except the Home” page gives me a reply such as
The requested URL /about/ was not found on this server.
Unless I have the default permalink set. Then things work correctly.
So what is going wrong? Ideas anyone?
Ian
p.s. I have removed and re-installed wordpress from a fresh download, just to remove the possibility of a corruption.
Forum: Installing WordPress
In reply to: install script fails silently.Yes.
The line from Apache2’s httpd.conf isDirectoryIndex index.php home.html index.html home.htm index.htm
Note – index.htm is processed oddly – if it is not a htm file, it will be processed by a php script. This is not happening.
Forum: Installing WordPress
In reply to: install script fails silently.Further information
the MySQL database name is correct
the MySQl user and password are correct.
I’ve added ?xx after the URL to defeat any caching – same result. Still nothing in access or error log – which worries me somewhat.
I cleared all local content and reloaded. The favicon download was logged and nothing else.I can browse the rest of the site fine – and those pages are logged.
Why are WP pages not logged?