ameilius
Forum Replies Created
-
:::EVERYONE WITH THE TAGS SITEMAP ISSUES:::
Question? – I have the same issue, now… I have about 40,000 tags – im starting to think the number of tags is too large. Why do i say this? Because if i navigate to the sitemap manually, i get a memory error sql read outFatal error: Allowed memory size of 157286400 bytes exhausted (tried to allocate 6291456 bytes) in /home/username/public_html/wp-includes/cache.php on line 503
its trying to allocate a TON of memory – anyone else concur?
Forum: Fixing WordPress
In reply to: Permalink Settingsnish4x:
make sure there are no other .htaccess on your host – i had a duplicate that was mixing it up as well
Forum: Fixing WordPress
In reply to: Permalink Settingsnevermind! – i got it – there WASNT one – so i made a new txt file – uploaded it to host in root directory – renamed it “.htaccess” and pasted this code in it:
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>