Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter ianhobson

    (@ianhobson)

    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 WordPress

    Every 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.

    Thread Starter ianhobson

    (@ianhobson)

    Yes.
    The line from Apache2’s httpd.conf is

    DirectoryIndex 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.

    Thread Starter ianhobson

    (@ianhobson)

    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?

Viewing 3 replies - 1 through 3 (of 3 total)