Title: jetpack is loading slow
Last modified: September 1, 2016

---

# jetpack is loading slow

 *  [Marius](https://wordpress.org/support/users/buzucan/)
 * (@buzucan)
 * [9 years, 12 months ago](https://wordpress.org/support/topic/jetpack-is-loading-slow/)
 * I have a problem with jetpack. Something is using all my hosting memory.
    i`ve
   installed P3 – Plugin Performance Profiler to see what plugin cause my problems.
   When i deactivate Jetpack all works fine, but when i activate it there are a 
   lot of querys. take a look: [https://postimg.org/image/5btoxtob5](https://postimg.org/image/5btoxtob5)
   [https://postimg.org/image/53qv5bsjd/](https://postimg.org/image/53qv5bsjd/)
 * On jetpack i deactivated all modules.
 * [https://wordpress.org/plugins/jetpack/](https://wordpress.org/plugins/jetpack/)

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

 *  Plugin Author [Jeremy Herve](https://wordpress.org/support/users/jeherve/)
 * (@jeherve)
 * Jetpack Mechanic 🚀
 * [9 years, 12 months ago](https://wordpress.org/support/topic/jetpack-is-loading-slow/#post-7700900)
 * Could you try to run your tests as an anonymous user, as explained by the author
   here:
    [https://wordpress.org/support/topic/jetpack-is-a-resource-hog?replies=3#post-5249168](https://wordpress.org/support/topic/jetpack-is-a-resource-hog?replies=3#post-5249168)
 * Let me know if it changes the results.
 * I would also recommend updating to the most recent version of Jetpack, if you
   haven’t done it yet. We’ve made multiple performance improvements, and significantly
   reduced the number of queries executed on the front end.
 *  Thread Starter [Marius](https://wordpress.org/support/users/buzucan/)
 * (@buzucan)
 * [9 years, 12 months ago](https://wordpress.org/support/topic/jetpack-is-loading-slow/#post-7700901)
 * With manual i have 7-80 queryes, but all site is working slow with jetpack on.
 *  Plugin Author [Jeremy Herve](https://wordpress.org/support/users/jeherve/)
 * (@jeherve)
 * Jetpack Mechanic 🚀
 * [9 years, 12 months ago](https://wordpress.org/support/topic/jetpack-is-loading-slow/#post-7700935)
 * Is your site still slow when all modules are deactivated? Once you deactivate
   all modules, Jetpack shouldn’t run any additional queries on your site’s front
   end, and shouldn’t affect your site’s speed.
 * If it is still slow, could you let me know if your site speed is always affected,
   or if you only experience issues when logged in?
 *  Thread Starter [Marius](https://wordpress.org/support/users/buzucan/)
 * (@buzucan)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/jetpack-is-loading-slow/#post-7700942)
 * only logged in are problems.
    i tried to deactivate all plugins and after i deactivated
   jetpack all is fine.
 * i activated debug and are no errors for jetpack. i don’t know what to do anymore…
 * my other plugins are:
    Akismet Autoptimize Hyper Cache ImageLightbox.js Pretty
   Link Pro Rocket Lazy Load WP Review Pro Yoast SEO
 * in htacces i have
 *     ```
       RewriteEngine On
       RewriteCond %{HTTPS} off
       RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
       # BEGIN WordPress
       <IfModule mod_rewrite.c>
       RewriteEngine On
       RewriteBase /
       RewriteRule ^index\.php$ - [L]
       RewriteCond %{REQUEST_FILENAME} !-f
       RewriteCond %{REQUEST_FILENAME} !-d
       RewriteRule . /index.php [L]
       </IfModule>
   
       # END WordPress
   
       #FileETag none
       <IfModule mod_deflate.c>
         # Compress HTML, CSS, JavaScript, Text, XML and fonts
         AddOutputFilterByType DEFLATE application/javascript
         AddOutputFilterByType DEFLATE application/rss+xml
         AddOutputFilterByType DEFLATE application/vnd.ms-fontobject
         AddOutputFilterByType DEFLATE application/x-font
         AddOutputFilterByType DEFLATE application/x-font-opentype
         AddOutputFilterByType DEFLATE application/x-font-otf
         AddOutputFilterByType DEFLATE application/x-font-truetype
         AddOutputFilterByType DEFLATE application/x-font-ttf
         AddOutputFilterByType DEFLATE application/x-javascript
         AddOutputFilterByType DEFLATE application/xhtml+xml
         AddOutputFilterByType DEFLATE application/xml
         AddOutputFilterByType DEFLATE font/opentype
         AddOutputFilterByType DEFLATE font/otf
         AddOutputFilterByType DEFLATE font/ttf
         AddOutputFilterByType DEFLATE image/svg+xml
         AddOutputFilterByType DEFLATE image/x-icon
         AddOutputFilterByType DEFLATE text/css
         AddOutputFilterByType DEFLATE text/html
         AddOutputFilterByType DEFLATE text/javascript
         AddOutputFilterByType DEFLATE text/plain
         AddOutputFilterByType DEFLATE text/xml
   
         # Remove browser bugs (only needed for really old browsers)
         BrowserMatch ^Mozilla/4 gzip-only-text/html
         BrowserMatch ^Mozilla/4\.0[678] no-gzip
         BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
         Header append Vary User-Agent
       </IfModule>
   
       <IfModule mod_expires.c>
       # Enable expirations
       ExpiresActive On
       # Default directive
       ExpiresDefault "access plus 1 month"
       # My favicon
       ExpiresByType image/x-icon "access plus 1 year"
       # Images
       ExpiresByType image/gif "access plus 1 month"
       ExpiresByType image/png "access plus 1 month"
       ExpiresByType image/jpg "access plus 1 month"
       ExpiresByType image/jpeg "access plus 1 month"
       # CSS
       ExpiresByType text/css "access plus 1 month"
       # Javascript
       ExpiresByType application/javascript "access plus 1 year"
       </IfModule>
   
        RewriteEngine On
        RewriteCond %{REMOTE_ADDR} ^164\.132\.161\.([2-9]|[1-8][0-9]|9[0-7])$ [OR]
        RewriteCond %{REMOTE_ADDR} ^51\.255\.65\.([2-9]|[1-8][0-9]|9[0-7])$
        RewriteRule ^.*$ - [F]
   
        SetEnvIfNoCase User-Agent .*ahrefsbot.* bad_bot
        <Limit GET POST HEAD>
        Order Allow,Deny
        Allow from all
        Deny from env=bad_bot
        </Limit>
   
        SetEnvIfNoCase User-Agent .*semalt.* bad_bot
       ```
   
 *  Plugin Author [Jeremy Herve](https://wordpress.org/support/users/jeherve/)
 * (@jeherve)
 * Jetpack Mechanic 🚀
 * [9 years, 11 months ago](https://wordpress.org/support/topic/jetpack-is-loading-slow/#post-7700970)
 * Thanks for the extra details.
 * Would you mind trying to activate Jetpack again, and then deactivate the Stats
   module? Let me know if it helps.

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

The topic ‘jetpack is loading slow’ is closed to new replies.

 * ![](https://ps.w.org/jetpack/assets/icon.svg?rev=2819237)
 * [Jetpack - WP Security, Backup, Speed, & Growth](https://wordpress.org/plugins/jetpack/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/jetpack/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/jetpack/)
 * [Active Topics](https://wordpress.org/support/plugin/jetpack/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/jetpack/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/jetpack/reviews/)

 * 5 replies
 * 2 participants
 * Last reply from: [Jeremy Herve](https://wordpress.org/support/users/jeherve/)
 * Last activity: [9 years, 11 months ago](https://wordpress.org/support/topic/jetpack-is-loading-slow/#post-7700970)
 * Status: not resolved