blindsquirrel
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Wilson] lost titles in browser tabI am having this same problem. It appears to be an issue with this theme?
Forum: Networking WordPress
In reply to: Multisite domain mapping with multiple SSL certificatesEverything is working now. When I updated to WP 4.2 I decided to try dropping the WordPress MU Domain Mapping plugin and follow the suggestions here. Worked like a charm.
As far as getting the https to work, you were exactly right. I adjusted the htaccess rules per your suggestions and placed them in the root directory, not the htaccess file inside the subdirectory that wp is installed in. This makes sense now that I think about it, the redirects need to be at the very top before it is “too late” to redirect, which is why I was getting such strange behavior by having the redirect commands in the wrong place.
Thank you for the help!
Forum: Themes and Templates
In reply to: [Twenty Fifteen] Twenty Fifteen theme breaks in WordPress 4.2re-downloaded the twenty fifteen theme and manually added it. Now everything is working. Must be an issue with the auto-update feature for this theme.
Forum: Themes and Templates
In reply to: [Twenty Fifteen] Twenty Fifteen theme breaks in WordPress 4.2having the exact same issue. Saw the updates of the new WP 4.2 and the updated Twenty Fifteen theme, installed the updates, now all my post content is missing.
Forum: Networking WordPress
In reply to: Multisite domain mapping with multiple SSL certificatesGetting much closer, thanks! I updated the htaccess code per your suggestion (can’t believe all I had to do was move the https to before the rest, duh!). Now I’m not getting the redirect to my base site, but I’m still not getting a redirect to https. Here is what my htaccess looks like:
<IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTP_HOST} ^mysitedomain\.com RewriteCond %{HTTP_HOST} ^www\.mysitedomain\.com RewriteCond %{SERVER_PORT} !443 RewriteRule ^(.*)$ https://www.mysitedomain.com/$1 [R,L] RewriteBase /subfolder/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /subfolder/index.php [L] </IfModule>
And here is the multisite section of my wp-config:
/* Multisite */ define('MULTISITE', true); define('SUBDOMAIN_INSTALL', false); define('DOMAIN_CURRENT_SITE', 'www.basesitedomain.com'); define('PATH_CURRENT_SITE', '/'); define('SITE_ID_CURRENT_SITE', 1); define('BLOG_ID_CURRENT_SITE', 1); define('FORCE_SSL_ADMIN', true); define( 'SUNRISE', 'on' );
I cleared cookies, added the
define('FORCE_SSL_ADMIN', true);
and I’m still not getting a redirect to https. What am I missing?
Does the htaccess code go in the file in my wp directory or in my root directory?Is this even possible with the WordPress MU Domain Mapping plugin? When I uninstall the plugin and try the suggestions here I get a “could not establish database connection” error.
The WP MU Domain Mapping plugin doesn’t seem to allow adding domains with the https protocol, can’t find anything about this in my searching online.
Forum: Networking WordPress
In reply to: Multisite domain mapping with multiple SSL certificatesOkay, I tried adding the htaccess rule but now it just redirects to my root install.
I think there may be an issue because my wordpress MU installation is in a subdirectory folder (as described here)
Is this what the htaccess should look like? (“subfolder” being the folder that the WP MU is installed in)
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase /subfolder/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /subfolder/index.php [L] RewriteCond %{HTTP_HOST} ^mysitedomain\.com RewriteCond %{SERVER_PORT} !443 RewriteRule ^(.*)$ https://www.mysitedomain.com/$1 [R,L] </IfModule>
This is the htaccess code I am currently using and it is redirecting to my base wp site. I’ve tried various htaccess modifications but can’t get anything to work.
2nd problem: still can’t access the wp-admin with the https protocol. I have to manually remove “https” from the address bar to get wp-admin to work.
Forum: Networking WordPress
In reply to: Multisite domain mapping with multiple SSL certificatesThanks for responding. Yes, I have read that article, it seems to be written for single installs whereas I am running a Multisite with domain mapping. Following the advice of the article I was able to update the ‘Home’ and ‘SiteUrl’ with the HTTPS protocol but since the WordPress MU Domain Mapping plugin doesn’t seem to accommodate HTTPS the sites are still defaulting to HTTP. What I need is for the sites to automatically load as HTTPS. Also, can’t seem to get the dashboard to work for the site when HTTPS is loaded. The dashboard will only open if the site is HTTP.
Spent some time going through a great article by Ipstenu: https://halfelf.org/2014/mapping-domains-without-plugin/ but can’t seem to get this to work. When I uninstall the mapping plugin and try to operate the mapping this way it isn’t working at all, everything just redirects to my root install.
Also spent some time on another great article by Ipstenu: https://halfelf.org/2014/ssl-for-one-domain-on-multisite/ but the HTTPS plugin doesn’t seem to be working, maybe it is outdated?
Anyone else been able to get HTTPS to work for specific domains in a WordPress multisite?
Forum: Fixing WordPress
In reply to: wp_terms_checklist display selected categories onlyThanks for the suggestion, I decided not to use this feature after all. The problem I am running into is a website that has hundreds of custom post categories. The built-in admin widget is hardly sufficient in this scenario so I was developing a new meta box to manage the categories better. I decided to go with a different method instead. Still confused by the “descendants_and_self” parameter though, the codex is pretty vague and it doesn’t seem to function as described.