• I installed wordpress on my server and if i go to the permalinks options i have nothing to chose from. just blanc. if i click on a post and try to change the url it sends me again to an empty option page.

    please help! thanks in advance

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi,

    Check with these options:

    – Upgrade your wordpress to the latest version
    – Disable all the plugins and set your desired permalink from the admin panel of your blog. And add this code in htaccess:

    # BEGIN WordPress

    <IfModule mod_rewrite.c>
    ErrorDocument 404 /index.php?error=404
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress

    Thanks,

    Shane G.

    Check that the permissions on the folders are set correctly?
    You said “on my server” you mean a private hosted server or you have shared hosting? if its your own server, make sure the webserver has permissions to the folders where wordpress is installed.

    Also, I’m presuming that you’ve read through this:
    http://codex.wordpress.org/Using_Permalinks

    And if you have a URL to share, we might be able to help more.

    Have you tried:

    – deactivating all plugins to see if this resolves the problem? If this works, re-activate the plugins one by one until you find the problematic plugin(s).

    – switching to the default theme to rule out any theme-related problems?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘no permalink options’ is closed to new replies.