FrancisD
Forum Replies Created
-
Plugins were enable but I didnt remember if I turned them off.
In doubt I rollback to 3.0.6 re-upgraded to 3.1 with all plugins off. And I still have the same issue.Yes the .htaccess is in /blog/
I tried to jump to 3.3 and got the exact same error as I have now.http://mywebsite.com -> my website
http://mywebsite.com/section_title -> a section of my website
http://mywebsite.com/blog/ -> My blogsYes, blogs are in a /blog/ folder. Blogs are some kind of section of my main website.
I upgraded manually, and turned off all plugins.
The only thing I added in the wp-ocnfig when moving from 2.9.2 to 3.0 was: define( ‘NONCE_SALT’, ‘blabalablablabalbblablabal’ );yes all of them
Hi,
They just did it today. They said the repair was successful.
However, I still have the same issue: nothing changed.Any other idea?
Thank youHi Ipstenu,
I ran a repair on my DB and I got this message for each table : The storage engine for the table doesn’t support repair
Tables engine is InnoDB.Extra stuff do not change the result. In doubt I took the one in http://codex.ww.wp.xz.cn/Create_A_Network#.htaccess_and_Mod_Rewrite and changed the third line to fit my config (RewriteBase /blog/ instead of RewriteBase /) :
# BEGIN WordPress RewriteEngine On RewriteBase /blog/ RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L] # add a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L] RewriteRule ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L] RewriteRule . index.php [L] # END WordPressI still have the same issue as before
Yes I did the modification, here is my .htaccess
RewriteEngine On RewriteBase /blog/ #uploaded files RewriteRule ^(.*/)?files/$ index.php [L] RewriteCond %{REQUEST_URI} !.*wp-content/plugins.* #RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L] RewriteRule ^(.*/)?files/(.*) wp-includes/ms-files.php?file=$2 [L] #Landing page RewriteRule ^land land.php [L] # add a trailing slash to /wp-admin RewriteCond %{REQUEST_URI} ^.*/wp-admin$ RewriteRule ^(.+)$ $1/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule . - [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L] RewriteRule . index.php [L] <IfModule mod_security.c> <Files async-upload.php> SecFilterEngine Off SecFilterScanPOST Off </Files> </IfModule>