What kind of problems are you seeing? If your permissions are set incorrectly on the .htaccess file, WordPress should list the rules for you to copy and paste into your .htaccess file.
I just get ‘Hyperlink structure updated’ then the checkbox doesn’t change. It also still uses the old permalink stricture (?p=xx)
I used to have a similar problem, this is how i fixed it:
1. Follow Step 2 of http://codex.wordpress.org/Using_Permalinks#Fixing_.28.htaccess.29_Generation_Issues
2. Delete your .htaccess
3. Update the permalink structure in CP.
Hope it helps
It’s still not working. Would you be able to copy/paste the code that wordpress should generate pls?
Anybody? I just need you to copy and paste your .htaccess file
Could someone just copy and paste the contents of their .htaccess file pls?
WordPress v2.0 generates its re-write rules internally and basically adds a few “refer to the internal rules” statements to the .htaccess file. They should be pretty much standard for every WordPress installation, so I’m not sure how this is going to help you. Good luck!
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php
</IfModule>
# END WordPress