micahmills
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Multisite Subdirectory: Sites Not FoundIpstenu you pointed me in the right direction with the httpd.conf.
This server is a VM on our own local server and was pretty much a vanilla LAMP stack. I dug around in the httpd.conf and found that the ServerAdmin, and ServerName where not set. I also moved the DocumentRoot to html/domainname.com just for good measure.
One of those changes fixed it for me. Thanks guys.
Micah Mills
Forum: Networking WordPress
In reply to: Multisite Subdirectory: Sites Not FoundThere are currently 5 sites on this multisite setup and only the main site works. I am absolutely sure that there are no subfolders by the names of the sites.
I thought it might have been an htaccess problem so I copied and pasted this from a previous forum post from Ipstenu for MultiSite subfolder setups.
# BEGIN WordPress <IfModule mod_rewrite.c> 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).*) $1 [L] RewriteRule ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L] RewriteRule . index.php [L] </IfModule> # END WordPress # Change PHP memory limit, time limit, # max post size, and max upload file size php_value memory_limit 256M php_value max_execution_time 300 php_value upload_max_filesize 32M php_value post_max_size 32MForum: Networking WordPress
In reply to: Multisite Subdirectory: Sites Not FoundIt is a server error. White page black text.
Forum: Networking WordPress
In reply to: Multisite Subdirectory: Sites Not FoundNo there isn’t any non wordpress folders in the root directory. If it helps I am pulling this from a Git repo. This code works on my local environment and in a staging/test server.