Hi,
I've had some luck with WP; except that every page/post which is on the local server gives 404 errors. No luck at finding the culprit until now...
None of the threads I've checked have provided the answer. A few minutes ago, I deleted *everything* from previous WP attempts to try a fresh start.
Installed 3.3.1, and without doing anything beyond updating one default plugin included in 3.3.1, hit "Visit Site" and ALL links which are local now seem to work. I was very happy to finally see a working site...
UNTIL... in Settings->Permalinks, changed to Post Name and the Hello World link gives 404. .htaccess contains:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
OK... Edit this Post, Update...
Still get 404... revert back to Default Permalinks and Hello World is back... .htaccess contains:
# BEGIN WordPress
# END WordPress
So it appears WP itself is broken simply by turning on /%postname%/ permalinks... :(