Habey Gonzo
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Multi Site install shows sub-site admin but no site contentHi everyone,
I believe I’m running into a similar issue, so I reply here. If you prefer that I create a new topic instead, please tell me.
So, here is the setup: I installed WordPress 3.04 in an intranet environment (thus, not allowing me to use subdomains, so I used subdirs). After enabling the network, the main site is working fine, and the sub-sites’ dashboards too. The sub-sites themselves on the other hand keep displaying “Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.”.
What seems weird is that I can see the posts’ and pages’ counters from the administration interface (saying 1 published post for example), but it keeps saying “no pages found” or “no posts found”. I mean, no pages or posts are shown in the list, thus they cannot be edited.
Since the main address is accessible, I guess this is not an .htaccess problem, but here is my version of it, if you need it:
RewriteEngine On RewriteBase / 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).*) $2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L] RewriteRule . index.php [L]Thanks in advance for any help you can provide.