mvied
Forum Replies Created
-
I just pushed out 3.1.1. Give it a go and let me know.
Well, the plugin works completely fine for a lot of people, so I disagree with you. Either way, I can’t do anything without some kind of error report.
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] [Plugin: WordPress HTTPS (SSL)] still getting errorsEveryone’s site is different, so the answer is different for everybody.
Stacey, you have an absolute URL in your stylesheet that’s causing one error.
https://snowcountrylimo.com/wp-content/themes/guesthouse/style.css?1331664509the image ishttp://snowcountrylimo.com/wp-content/themes/guesthouse/design/img/patterns/structure.pngwhich needs to be changed to/wp-content/themes/guesthouse/design/img/patterns/structure.pngI can’t find the other one, but the fact that it uses
www.tells me it was probably typed manually since all of your URL’s do not contain www. If you can, search through all the files in your theme or plugin settings until you find it and make it a relative URL as well.Your home page probably doesn’t have the correct template set or something like that. The plugin won’t make any permanent changes to your site.
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] [Plugin: WordPress HTTPS (SSL)] v3.1 not rewritingI think I see where the issue is. I’ll try to get a bug fix release out shortly.
https://github.com/Mvied/wordpress-https/commit/87b92987085b753fd436aede5a384ac549fc2f34
White pages are generally syntax errors or memory issues. What version of PHP are you using? Have you checked your Apache error logs?
This should work. Just put it in your theme’s functions.php or in your own plugin file.
register_activation_hook( 'wp-content/wordpress-https/wordpress-https.php', 'wordpress_https_activate' ); function wordpress_https_activate() { $args = array( 'numberposts' => -1 ); $posts = get_posts($args); foreach( $posts as $post ) { update_post_meta($post->ID, 'force_ssl', '1'); } }It sounds like you’re running out of memory. Check your Apache error logs.
I’ve used the plugin with many sites and WP E-commerce with no issues.
I went ahead and added support for custom post types in the most recent release.
Any exception thrown when error reporting is turned off will produce a white screen unless there is some kind of special error handler. The error could literally be anything. Try setting WP_DEBUG to true in wp-config.php.
Then I don’t know what to tell you. There should be an error in your error logs.
Usually caused by PHP running out of memory. Check with your hosting provider to look at your error logs to confirm. If that’s the case, you’ll have to increase the memory limit for PHP. If not, post the error here.
Check your E-commerce plugin for any SSL settings and enable them.
I don’t know what you’re trying to say. Try using normal sentence structures.
Your SSL Host should be
secure122.inmotionhosting.com/~insigh40/indirasalonspa.com/if that’s where your site is.If your home page over the Shared SSL produces a 404 error, you can not use that Shared SSL with WordPress.