David
Forum Replies Created
-
I’ve installed CCTM in a fresh WP 4.1 and permalinks returns 404 page too.
Forum: Plugins
In reply to: [Custom Content Type Manager] Problem after moving serverdeleting the cache worked to me. thanks
Forum: Localhost Installs
In reply to: XAMMP WPMU Sub-blog issueSOLVED!
the problem was the code wordpress give me to .htaccess was WRONG
This lines:
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) C:\xampp-portable\htdocs\wordpress3/$2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ C:\xampp-portable\htdocs\wordpress3/$2 [L]
contains absolute path, and this is the error!
the correct lines to .htaccess are:
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) /wordpress3/$2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ /wordpress3/$2 [L]
The same error was in linux installation. absolute path was the error, and relative path to server root was the solution!
May be this have to be corrected in wordpress network!
David
Forum: Localhost Installs
In reply to: XAMMP WPMU Sub-blog issueI removed new xammp security and the problem is not solved.
https://www.youtube.com/watch?v=lXh-yh_gPdI
or
https://forum.ragezone.com/f335/remove-new-xampp-security-consept-735471/On the other hand, i’ve got the same problem in a hosting not xammp.
the problem may be other ??thank’s for the idea ??
Forum: Localhost Installs
In reply to: XAMMP WPMU Sub-blog issueI’ve tested the same configuration in a real hosting and the result have been the same. the problem is not localhost.
someone can help?
Forum: Localhost Installs
In reply to: XAMMP WPMU Sub-blog issueLike Julia, my apache error log has entries like this:
[Fri Dec 28 21:41:46.912400 2012] [core:error] [pid 6704:tid 1636] (20024)The given path is misformatted or contained invalid characters: [client ::1:52886] AH00127: Cannot map GET /wordpress3/david2/wp-admin/ HTTP/1.1 to file
Forum: Localhost Installs
In reply to: XAMMP WPMU Sub-blog issueI’ve got the same problem.
1) The main site word fine, and his dashboard.
2) the other sites shows only html without styles, and his dashboard show an Error 403. The problem with styles (and js files) is the browser don’t find some files, like style.css. In my case the file “https://localhost/wordpress3/david2/wp-content/themes/twentytwelve/style.css?ver=3.5” returns an Error 403 . “david2” is a site.I don’t undertand the problem ??
My system:
windows vista, XAMPP-PORTABLE 1.8.1, wordpress 3.5My wordpress installation is in the folder “wordpress3”. System folder is “C:\xampp-portable\htdocs\wordpress3”
My .htaccess:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /wordpress3/ RewriteRule ^index\.php$ - [L] # uploaded ?les RewriteRule ^([_0-9a-zA-Z-]+/)??les/(.+) wp-includes/ms-?les.php??le=$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).*) C:\xampp-portable\htdocs\wordpress3/$2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ C:\xampp-portable\htdocs\wordpress3/$2 [L] RewriteRule . index.php [L] </IfModule> # END WordPress