adam4jmj
Forum Replies Created
-
Forum: Plugins
In reply to: [User Access Manager] All groups and pages deletedThanks. I talked to our IT guy and told him we need to keep this up to date.
Is there a way you can help us write a query to add all of our users back into a user group? We have over 2,000 of them. Doing that manually will be a nightmare. Is there a field for last login?
Forum: Plugins
In reply to: [User Access Manager] All groups and pages deletedThis is a pain because we have to manually add thousands of users back into the their appropriate user groups, and add the group designation back to hundreds of pages.
Forum: Plugins
In reply to: [User Access Manager] All groups and pages deletedVersion 1.2.14
streetevangelizaton.com
Forum: Plugins
In reply to: 4.1 "New Post on Test Website" ErrorJet pack
Forum: Networking WordPress
In reply to: New Installs are BrokenOkay, I just discovered something fascinating.
1. I had edited the .htaccess file to default to the theme “responsive”
2. When I deleted that line and made a new network site, it worked.
3. If I activated the responsive theme, it broke everything again and reverted to the original problem I had.
4. If I tried to change it back to WP’s default theme, it wouldn’t do it.So it seems as long as you do not use responsive as a theme, you can create network sites.
I wonder why that is.
Forum: Networking WordPress
In reply to: New Installs are BrokenWhen I create a new site:
1. https://streetevangelization.com/template/wp-admin/ works
2. https://streetevangelization.com/template redirects to https://streetevangelzation.com/
3. https://streetevangelization.com/wp-admin/network/site-info.php?id=8 works correctly.
4. All links in the admin to edit or go to the new ‘template’ site do not work. They all link to https://streetevangelization.com instead of https://streetevangelization.com/template/Forum: Networking WordPress
In reply to: New Installs are BrokenGodaddy had no idea what I was talking about. Support just said that there is “no subfolder for streetevangelization.com/template/” so that is why it redirects to the root URL.
He suggested the only way to get multiple wordpress sites to work on Godaddy is to create my own subfolders and do a fresh install each time.
Forum: Networking WordPress
In reply to: New Installs are Brokenok.
Forum: Networking WordPress
In reply to: New Installs are Brokenwp-config.php
/* Multisite */ define('WP_ALLOW_MULTISITE', true); define('MULTISITE', true); define('SUBDOMAIN_INSTALL', false); $base = '/'; define('DOMAIN_CURRENT_SITE', 'streetevangelization.org'); define('PATH_CURRENT_SITE', '/'); define('SITE_ID_CURRENT_SITE', 1); define('BLOG_ID_CURRENT_SITE', 1);
.htaccess
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]