Title: WordPress HTTPS &gt; Parser enabled on admin screens causing timeouts
Last modified: August 22, 2016

---

# WordPress HTTPS > Parser enabled on admin screens causing timeouts

 *  [bobbysmith007](https://wordpress.org/support/users/bobbysmith007/)
 * (@bobbysmith007)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/wordpress-https-parser-enabled-on-admin-screens-causing-timeouts/)
 * We have a wp-e-commerce shopping cart with >2000 products in it in >200 categories.
   Visiting the category or product pages with wordpress-https enabled causes these
   pages to be unloadable and time out. (The product page currently has >500K of
   html as output if this is significant).
 * Given that I don’t particularly care if wordpress-https is enabled in admin, 
   my simple solution was to remove the parser init call (as the parser module was
   what was timing out in the PHP log). While it solves my problem, this seems laden
   with error possibilities, so I figured I would post a support topic about it
 * My solution:
 *     ```
       global $wordpress_https;
       if(is_admin()){
         // print_r($wordpress_https);
         // Hack to make the huge admin pages work
         $parser = $wordpress_https->getModule('Parser');
         $wordpress_https->unloadModule('Parser');
         remove_action('init', array($parser, 'startOutputBuffering'));
         // print_r($wordpress_https);
       }
       ```
   
 * Do you have a better solution for disabling the output buffering and parsing 
   on the admin side, or perhaps a solution to why it takes so long? (The category
   page goes from <1sec to >45sec for 20K of html).
 * I’ld rather not post my customers site, but if you contact me by email (my user
   [@gmail](https://wordpress.org/support/users/gmail/)), I can probably arrange
   a login to the site if you think its needful.
 * [https://wordpress.org/plugins/wordpress-https/](https://wordpress.org/plugins/wordpress-https/)

The topic ‘WordPress HTTPS > Parser enabled on admin screens causing timeouts’ is
closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/wordpress-https_bec2c9.svg)
 * [WordPress HTTPS (SSL)](https://wordpress.org/plugins/wordpress-https/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wordpress-https/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wordpress-https/)
 * [Active Topics](https://wordpress.org/support/plugin/wordpress-https/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wordpress-https/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wordpress-https/reviews/)

## Tags

 * [admin](https://wordpress.org/support/topic-tag/admin/)
 * [timeout](https://wordpress.org/support/topic-tag/timeout/)

 * 0 replies
 * 1 participant
 * Last reply from: [bobbysmith007](https://wordpress.org/support/users/bobbysmith007/)
 * Last activity: [11 years, 9 months ago](https://wordpress.org/support/topic/wordpress-https-parser-enabled-on-admin-screens-causing-timeouts/)
 * Status: not resolved