I added the force_ssl field on my About Us page but getting infinite loop
when trying to load the about us page using https://
Please let me know what is happening.
Thanks in advance
https://www.ads-software.com/plugins/wordpress-https/
]]>For those that are having apostrophe issues where an apostrophe will show up with slashes like \\\\\’ … it’s a magic quotes issue which was identified BUT the information wasn’t quite accurate as I just found and posted my magic quotes issue here with cpanel:
https://forums.cpanel.net/f5/magic-quotes-off-php-ini-but-shows-258262.html
Basically, WHM was telling me that it was off, but phpinfo was telling me that it was on. If you leave magic quotes at the default setting in whm, which is off (**DEFAULT**, Click to Edit), the php.ini file leaves them commented out which leaves them ‘on’ by default I guess for some reason, or that is what it appears to be in phpinfo. When you turn magic quotes on and save, you will see that it is then uncommented, then when you turn it back off and save, it is uncommented in the off and phpinfo then will return that it is in fact off…
Which I guess I would have to question what other items are being displayed as “off” that you want “off” but are actually still on if the (**DEFAULT**, Click to Edit) is visible in the WHM PHP editor…
———————-
For running the plugin in a secured admin area where you force ssl, the latest plugin needs to have this in the ajax-event-calendar/ajax-event-calendar.php as it seemed not to have it when I downloaded it earlier this week in version 1.0.2:
return array_merge($this->localized_variables(),
array(
//'ajaxurl' => admin_url('admin-ajax.php'), // required for non-admin ajax pages
'ajaxurl' => admin_url('admin-ajax.php', is_ssl() ? 'https' : 'http'), // required for non-admin ajax pages
'editable' => false
)
Or you could have just used
site_url('wp-admin/admin-ajax.php'),
I guess.
Please correct me if I’m wrong, but these are the only two problems I have found using this plugin and the latest wordpress and my pandatheme. Great plugin with a nice looking frontend. Clean.
https://www.ads-software.com/extend/plugins/ajax-event-calendar/
]]>The translated languages permalink are such as: siteurl/langcode/post
The main language site works as expected, forced pages load with ssl while unforced pages load normally.
As soon as I switch to the translated language there is no page loaded with SSL, absolutely all pages load normally even if the force_ssl is set.
https://www.ads-software.com/extend/plugins/wordpress-https/
]]>Even with FORCE_SSL_ADMIN set, thumbnails in the media library are delivered insecurely, which leads to incessant and annoying “Load only secure content?” pop-ups. The thumbs should be delivered via https:// URIs.
]]>How can I get those thumbnails to load with https? Am I doing something wrong?
]]>