webmasterdrake
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Sites created via admin not installing/createdI was able to take a crash course in apache2 config and enabled AllowOverride All for my /var/www/ directory and VIOLA!
Thanks for pushing me in the right direction!
Forum: Networking WordPress
In reply to: Sites created via admin not installing/createdMy webhost is actually an Amazon EC2 instance that I created…so that would be me 🙂
Does it need to chmod to something?
Forum: Networking WordPress
In reply to: Sites created via admin not installing/created@tim: I do not.
@andrea_r: OK…How do I know if my server is reading the .htaccess file? Here are the contents of my .htaccess file (maybe I did something wrong there?):
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]Forum: Networking WordPress
In reply to: Sites created via admin not installing/createdI have a ‘wp_blogs’ table that does show the other sites I created. The id is incrementing, the site_id is 1 for all. However, when I try to access the dashboard or site I get a page not found error like “The requested URL /site1/wp-admin/ was not found on this server”.