tylerdoornbos
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Network Admin Links Suddenly Not WorkingI figured this out, in case it’s helpful to anyone.
In the Multisite area of the wp-config.php, I had put a preceding “https://” in front of the DOMAIN_CURRENT _SITE url. Removing it fixed the whole thing.
SHOULD BE:
define('DOMAIN_CURRENT_SITE', 'mysite.com');
NOT:
define('DOMAIN_CURRENT_SITE', 'https://mysite.com');
Forum: Networking WordPress
In reply to: Network Admin Links Suddenly Not WorkingNo, all the sites are just set up as mysitename.com/subsitename.
Forum: Networking WordPress
In reply to: Network Admin Links Suddenly Not WorkingIpstenu, thank you for your input thus far. Still can’t find a resolution to this. Getting desperate — don’t want to have to take and reinstall. Any further help would be very much appreciated.
Forum: Networking WordPress
In reply to: Network Admin Links Suddenly Not WorkingThat table looks normal, all sites have mysite.com domain in that field.
Forum: Networking WordPress
In reply to: Network Admin Links Suddenly Not WorkingA quick correction: The URLs are rendering like this —
https://http//mysite.com/wp-admin/network/
Rather than the way that I initially said. Not sure if that makes tracking it down easier.
Forum: Networking WordPress
In reply to: Network Admin Links Suddenly Not WorkingNo, no cache plugins. And the .htaccess just has the standard setup from the Codex (below). I’m just totally vexed because it’s a really simple setup, and was working great until it wasn’t ??
# 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
Forum: Networking WordPress
In reply to: Network Admin Links Suddenly Not WorkingThank you for the reply! Just tried that, but no change. Any other thoughts?
Forum: Themes and Templates
In reply to: Random posts not working — followed it to the letter from CodexSorry, and thank you for the response.
The code only returns the latest post in the category, rather than a single random post.