mvied
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] Subdomain for admin only ?It is possible.
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] Theme & Plugins Not LoadingI see you have the plugin in debug mode, and if you look, it says “SSL: No” on HTTPS pages, which means something is not configured correctly. Generally this is caused by your web server being hosted through a proxy and the proxy not setting the correct headers. The issue is definitely your web host’s configuration.
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] Locks me out of adminHave you tried using just FORCE_SSL_ADMIN in wp-config.php without the plugin to ensure that your SSL is set up correctly and that WordPress plays nice with it without the plugin?
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] WPMU | WPMS Site Logins & Admin Areas not using SSLHmm. No, it should just work. Let me set up a test similar to your setup and I’ll see if I can reproduce the issue. Or, if you can give me FTP and admin access, I’m sure I could figure out exactly what’s going on. My email is mike[at]mvied[dot]com.
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] Fatal error: Call to undefined function home_url()Your version of WordPress is too old to use the current version of this plugin. The latest version of this plugin that you can use is version 2.0.4. which you can download here.
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] What kind of redirect does this plugin use?Yes, it always uses 301 redirects.
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] last update rendered site login impossibleI changed very little between those two versions, so I find it really strange that you started having issues after the recent update. Do you have FORCE_SSL_ADMIN set to true in wp-config.php? There may be a bug there.
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] Website went completely down after last updateYou can find all previous versions here.
Could you check your Apache error logs for the error produced so that I can look into a fix? I do not have this issue.
Hmm, yeah. That’s kind of awkward. It’s hitting a redirect loop and stopping itself. Try adding
/?s=to your list of URL Filters to make that page always be secure. That should fix it.Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] HTTPS for home pageThat’s a pain. Don’t do that. You can use a piece of code in your theme’s functions.php (or in a custom plugin). Change ‘5’ to the ID of the post you don’t want to be secure.
function custom_force_ssl( $force_ssl, $post_id = 0, $url = '' ) { if ( $post_id == 5 ) { $force_ssl = false; } else { $force_ssl = true; } return $force_ssl; } add_filter('force_ssl' , 'custom_force_ssl', 10, 3);Indeed. Thanks. 🙂
The issue is the plugin is querying URL’s to see if the URL’s map to pages. Each check is query. The more URL’s on your pages, the more queries there are. I am looking for ways to cache results or something, but it’s not an easy problem to solve.
The issue is either the server configuration (not that it’s wrong, I’ve just never tested on it) or a conflicting theme or plugin. I’m leaning toward the server being the issue. The only way I can know for sure is to take a look myself. You can email me at mike[at]mvied[dot]com.
It’s not a bug. I will consider creating a “Lite” version.
Could you enable Debug Mode and send me a link?