Database ? phpmyadmin : sub sites with in network not working
-
When I enter a new site with in the Network Admin section it does create wp_2_option, however the new site url and url/wp-admin is not found on the server. The blogs.dir is in the wp-content folder with 755 permissions. The htaccess is
# BEGIN WordPress 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] # END WordPress
wp-config
define('WP_DEBUG', false); define('WP_ALLOW_MULTISITE', true); define( 'MULTISITE', true ); define( 'SUBDOMAIN_INSTALL', false ); $base = '/'; define( 'DOMAIN_CURRENT_SITE', 'waccamawtransport.com' ); define( 'PATH_CURRENT_SITE', '/' ); define( 'SITE_ID_CURRENT_SITE', 1 ); define( 'BLOG_ID_CURRENT_SITE', 1 ); /* That's all, stop editing! Happy blogging. */
with in phpmyadmin > DB information_schema > schema_privileges the table_catalog is NULL but all privilege_types is_granted yes, also DB information_schema > user_privileges table_catalog NULL / privilege_type USAGE / is_granted NO. Does this mean anything?
The site I am working on is https://waccamawtransport.com/wp-index.php
The index.php file is not up b/c client does not want to switch yet. But I did make it live to test the sub site out and it still did not solve anything. here is link to the sub site https://waccamawtransport.com/employeeI am new to this network stuff and thought I was dong rather well until this. UH! I really want to solve this issue before the server guy does. He is a pain in the butt and has given me hell every step of the way for even trying to use wordpress. Im sure the guy is testing out his own theories so please bare with me if the links arent as mentioned.
- The topic ‘Database ? phpmyadmin : sub sites with in network not working’ is closed to new replies.