Permalinks, 404s etc
-
I am sure its been asked before so please forgive me if I am going over old ground but I have spent ages looking and can only find old posts and or posts with exhausted ideas.
Permalinks do not seem to be working correctly what am I doing wrong.
When the default setting is used everything works, but this from what I read is not acceptable for use with buddypress. Which I require.
When numeric is used all I get are 404 errors on every page
This is a localhost install which I decided was required to avoid problems such as these on a production site.
So what have I done:
Deactivated all plugins. No change.
Verified that mod_rewrite is enabled in httpd.conf. YesAdded this to httpd.conf:
<Directory “C:/Documents and Settings/Andrew Seabrook/My Documents/MyWeb/adventurebod/20120706/adventurebod”>
Options Indexes FollowSymLinks
AllowOverride FileInfo # Also tried All
Order allow,deny
Allow from all
</Directory>Verified that .htaccess is in the wordpress root and that its settings are thus:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /adventurebod/20120706/adventurebod/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /adventurebod/20120706/adventurebod/index.php [L]
</IfModule># END WordPress
read that a possible solution is to add;
Options +FollowSymLinks as the uppermost statement in htaccess
This pulls up 500 Internal server Error on all pages.I noticed there are some apparent errors with wordpress however.
One thing of note when resetting the permalinks on the admin interface the .htaccess file is amended or created? Either way it is creating it in c:\ which is niether my project root or my apache DocumentRoot (the latter being MyWeb in the httpd.conf directory statement above)Additionally it is writing the line: “RewriteBase /adventurebod/20120706_/adventurebod/” which of course is not correct. The underscorer should not be present. It should read “RewriteBase /adventurebod/20120706/adventurebod/”
So anyone any further thought ideas with this please?
- The topic ‘Permalinks, 404s etc’ is closed to new replies.