Title: Change HTTPS:// to HTTP://?
Last modified: August 30, 2016

---

# Change HTTPS:// to HTTP://?

 *  [convictedvapour](https://wordpress.org/support/users/chronicbubble/)
 * (@chronicbubble)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/change-https-to-http/)
 * How can i change the HTTPS:// to [http://](https://wordpress.org/support/topic/change-https-to-http/?output_format=md)?
 * Thanks,
 * Gaz
 * [https://wordpress.org/plugins/tabbed-login/](https://wordpress.org/plugins/tabbed-login/)

Viewing 1 replies (of 1 total)

 *  [roeller](https://wordpress.org/support/users/roeller/)
 * (@roeller)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/change-https-to-http/#post-8625308)
 * The problem lies in the tabbed-login.php file. There on line 61 is:
 *     ```
       		  $current_url='http'.(empty($_SERVER['HTTPS'])?'':'s').'://'.$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'];
       ```
   
 * It assumes that when your site is not running on SSL, the “HTTPS” server variable
   is EMPTY. But it is not: My server says: “off”. And so it thinks:.. ok.. not 
   empty.. you are using SSL then..
    SO: I changed the line to:
 *     ```
       		  $current_url='http'.($_SERVER['HTTPS']=="on"?'':'s').'://'.$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'];
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Change HTTPS:// to HTTP://?’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/tabbed-login_fefefe.svg)
 * [Tabbed Login Widget](https://wordpress.org/plugins/tabbed-login/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/tabbed-login/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/tabbed-login/)
 * [Active Topics](https://wordpress.org/support/plugin/tabbed-login/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/tabbed-login/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/tabbed-login/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [roeller](https://wordpress.org/support/users/roeller/)
 * Last activity: [9 years, 4 months ago](https://wordpress.org/support/topic/change-https-to-http/#post-8625308)
 * Status: not resolved