Title: SSL &#8211; HTTPS Compatible?
Last modified: August 21, 2016

---

# SSL – HTTPS Compatible?

 *  [brandyqk](https://wordpress.org/support/users/brandyqk/)
 * (@brandyqk)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/ssl-https-compatible/)
 * Is there a way to pull the CAPTCHA image from **https://** instead of [http://](https://wordpress.org/support/topic/ssl-https-compatible/?output_format=md)?
   The insecure image is causing my website to show a “resources are not secure”
   error when people are on my shopping cart.
 * [http://wordpress.org/extend/plugins/really-simple-captcha/](http://wordpress.org/extend/plugins/really-simple-captcha/)

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [wpplatformuser](https://wordpress.org/support/users/wpplatformuser/)
 * (@wpplatformuser)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/ssl-https-compatible/#post-3854651)
 * Did you find the way to output the captcha over https?
 * same situation.
 *  Thread Starter [brandyqk](https://wordpress.org/support/users/brandyqk/)
 * (@brandyqk)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/ssl-https-compatible/#post-3854652)
 * Nope, I never found a way around it. I had to create another side bar widget 
   with a non-captcha contact form so the pages would show as secure.
 *  [jblakely](https://wordpress.org/support/users/jblakely/)
 * (@jblakely)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/ssl-https-compatible/#post-3854658)
 * Here is a method that worked for me. See the following post for the source of
   this solution.
 * [http://wordpress.org/support/topic/wp_content_url-based-defines-do-not-work-over-ssl-https](http://wordpress.org/support/topic/wp_content_url-based-defines-do-not-work-over-ssl-https)
 * Essentially, I edited **wp-includes/default-constants.php** and changed the **
   wp_plugin_directory_constants** function as follows:
 *     ```
       function wp_plugin_directory_constants( ) {
       /**
               if ( !defined('WP_CONTENT_URL') )
                       define( 'WP_CONTENT_URL', get_option('siteurl') . '/wp-content'); // full url - WP_CONTENT_DIR is defined further up
       **/
               if ( !defined('WP_CONTENT_URL') )
                       define( 'WP_CONTENT_URL', site_url( 'wp-content') ); // full url - WP_CONTENT_DIR is define with https or http per connection
       ```
   
 * Hopefully this will be helpful to others.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘SSL – HTTPS Compatible?’ is closed to new replies.

 * ![](https://ps.w.org/really-simple-captcha/assets/icon-256x256.png?rev=1047241)
 * [Really Simple CAPTCHA](https://wordpress.org/plugins/really-simple-captcha/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/really-simple-captcha/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/really-simple-captcha/)
 * [Active Topics](https://wordpress.org/support/plugin/really-simple-captcha/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/really-simple-captcha/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/really-simple-captcha/reviews/)

 * 3 replies
 * 3 participants
 * Last reply from: [jblakely](https://wordpress.org/support/users/jblakely/)
 * Last activity: [12 years, 2 months ago](https://wordpress.org/support/topic/ssl-https-compatible/#post-3854658)
 * Status: not resolved