ajtatum
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Permalinks aren’t workingThanks alism; however, it’s still a no go.
I deleted my .htaccess, deactived all my plugins (there are only four) and even set my theme to the default. I then set permalinks to month and name, which generated the below text. When I then attempted to access a page or post, I got a 404 ??
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
To note, I tried all other permalink structures and none of them work.
So, no joy… but I appreciate your help. Any other ideas out there?
Forum: Fixing WordPress
In reply to: Permalinks aren’t workingThanks for the tip, but it’s already 777.
WordPress is writing to the file successfully.
According to GoDaddy regarding this issue:
“Mod_rewrite is currently enabled in all shared Linux hosting accounts. The rest of the functions you have included may be enabled by using a .htaccess file. Unfortunately we cannot assist you with or coding this file.”
What they mean by the rest of the functions is that I requested they check that
– The FollowSymLinks option enabled
– FileInfo directives allowed (e.g. AllowOverride FileInfo or
AllowOverride All)I’m not sure how to do this exactly as most of my web programming experience has been with Windows.
I gave it a stab and changed my .htaccess file to be as follows:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress Options +FollowSymlinks AllowOverride All
But, that didn’t work. I still can’t access any permalinks.
This is really driving my nuts!