Title: Harshad's Replies - page 8 | WordPress.org

---

# Harshad

  [  ](https://wordpress.org/support/users/bornforphp/)

 *   [Profile](https://wordpress.org/support/users/bornforphp/)
 *   [Topics Started](https://wordpress.org/support/users/bornforphp/topics/)
 *   [Replies Created](https://wordpress.org/support/users/bornforphp/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/bornforphp/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/bornforphp/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/bornforphp/engagements/)
 *   [Favorites](https://wordpress.org/support/users/bornforphp/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 106 through 120 (of 2,472 total)

[←](https://wordpress.org/support/users/bornforphp/replies/page/7/?output_format=md)
[1](https://wordpress.org/support/users/bornforphp/replies/?output_format=md) [2](https://wordpress.org/support/users/bornforphp/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/bornforphp/replies/page/3/?output_format=md)…
[7](https://wordpress.org/support/users/bornforphp/replies/page/7/?output_format=md)
8 [9](https://wordpress.org/support/users/bornforphp/replies/page/9/?output_format=md)…
[163](https://wordpress.org/support/users/bornforphp/replies/page/163/?output_format=md)
[164](https://wordpress.org/support/users/bornforphp/replies/page/164/?output_format=md)
[165](https://wordpress.org/support/users/bornforphp/replies/page/165/?output_format=md)
[→](https://wordpress.org/support/users/bornforphp/replies/page/9/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance] 1 Cron event not removed when deleting plugin](https://wordpress.org/support/topic/1-cron-event-not-removed-when-deleting-plugin/)
 *  [Harshad](https://wordpress.org/support/users/bornforphp/)
 * (@bornforphp)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/1-cron-event-not-removed-when-deleting-plugin/#post-15999863)
 * [@didierjm](https://wordpress.org/support/users/didierjm/) I’ll check this issue
   with our development team and update you soon.
 * Thank you for your time and patience.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance] Using Cache and pre load but no cached files on server](https://wordpress.org/support/topic/using-cache-and-pre-load-but-no-cached-files-on-server/)
 *  [Harshad](https://wordpress.org/support/users/bornforphp/)
 * (@bornforphp)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/using-cache-and-pre-load-but-no-cached-files-on-server/#post-15996643)
 * [@lucycrisps](https://wordpress.org/support/users/lucycrisps/) Could you please
   try to enable/disable the cache feature?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance] RAM issue](https://wordpress.org/support/topic/ram-issue-2/)
 *  [Harshad](https://wordpress.org/support/users/bornforphp/)
 * (@bornforphp)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/ram-issue-2/#post-15996641)
 * [@timgood85](https://wordpress.org/support/users/timgood85/) Could you please
   increase max_execution_time to 900 secs?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance] Disable Gzip Compression / Writing .htaccess](https://wordpress.org/support/topic/disable-gzip-compression-writing-htaccess/)
 *  [Harshad](https://wordpress.org/support/users/bornforphp/)
 * (@bornforphp)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/disable-gzip-compression-writing-htaccess/#post-15996640)
 * [@jidwictut9](https://wordpress.org/support/users/jidwictut9/) To disable GZIP
   you can remove the following lines from .htaccess file:
 *     ```
       # BEGIN WP-Optimize Gzip compression
       <IfModule mod_filter.c>
       <IfModule mod_deflate.c>
       # Compress HTML, CSS, JavaScript, text, XML and fonts
       AddType application/vnd.ms-fontobject .eot
       AddType font/ttf .ttf
       AddType font/otf .otf
       AddType font/x-woff .woff
       AddType image/svg+xml .svg
   
       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-font-woff
       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 font/off
       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 (required only for very old browsers)
       BrowserMatch ^Mozilla/4 gzip-only-text/html
       BrowserMatch ^Mozilla/4\.0[678] no-gzip
       BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
       <IfModule mod_headers.c>
       Append header Vary user agent
       </IfModule>
       </IfModule>
       </IfModule>
       # END WP-Optimize Gzip compression
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance] No one is welcome to touch robots.txt](https://wordpress.org/support/topic/no-one-is-welcome-to-touch-robots-txt/)
 *  [Harshad](https://wordpress.org/support/users/bornforphp/)
 * (@bornforphp)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/no-one-is-welcome-to-touch-robots-txt/#post-15993382)
 * [@dgner](https://wordpress.org/support/users/dgner/) Few people complained about
   exposing the possible table names and plugins to bots. They felt is a security
   issue. So our development team added it
    . But seo plugins always modifies the
   robots.txt file
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance] Optimization gets stuck at wpcp_yoast_seo_links](https://wordpress.org/support/topic/optimization-gets-stuck-at-wpcp_yoast_seo_links/)
 *  [Harshad](https://wordpress.org/support/users/bornforphp/)
 * (@bornforphp)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/optimization-gets-stuck-at-wpcp_yoast_seo_links/#post-15993203)
 * [@miku88](https://wordpress.org/support/users/miku88/) Try to optimize the tables
   from phpMyAdmin and then optimize the tables from WP-Optimize
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance] Using Cache and pre load but no cached files on server](https://wordpress.org/support/topic/using-cache-and-pre-load-but-no-cached-files-on-server/)
 *  [Harshad](https://wordpress.org/support/users/bornforphp/)
 * (@bornforphp)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/using-cache-and-pre-load-but-no-cached-files-on-server/#post-15993199)
 * [@lucycrisps](https://wordpress.org/support/users/lucycrisps/) The log file didn’t
   help much, have you checked with your host, if there are any extra permissions
   required inside wp-content folder?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance] RAM issue](https://wordpress.org/support/topic/ram-issue-2/)
 *  [Harshad](https://wordpress.org/support/users/bornforphp/)
 * (@bornforphp)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/ram-issue-2/#post-15993190)
 * [@timgood85](https://wordpress.org/support/users/timgood85/) Could you please
   ask your host to increase `max_execution_time` and `memory_limit` values in php.
   ini file and check if it helps to fix the issue?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance] No one is welcome to touch robots.txt](https://wordpress.org/support/topic/no-one-is-welcome-to-touch-robots-txt/)
 *  [Harshad](https://wordpress.org/support/users/bornforphp/)
 * (@bornforphp)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/no-one-is-welcome-to-touch-robots-txt/#post-15993186)
 * [@dgner](https://wordpress.org/support/users/dgner/) I’ll share this with our
   development team, so it can be fixed in future release.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance] Difference between using the cache preload with and without an sitemap?](https://wordpress.org/support/topic/difference-between-using-the-cache-preload-function-with-and-without-an-sitemap/)
 *  [Harshad](https://wordpress.org/support/users/bornforphp/)
 * (@bornforphp)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/difference-between-using-the-cache-preload-function-with-and-without-an-sitemap/#post-15990376)
 * [@wrdprssmstr](https://wordpress.org/support/users/wrdprssmstr/) Certainly having
   sitemap.xml will do the preload faster as WP-Optimize scans the sitemap.xml and
   preloads the cache.
 * If you are using another sitemap generation plugin thats fine.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance] Difference between using the cache preload with and without an sitemap?](https://wordpress.org/support/topic/difference-between-using-the-cache-preload-function-with-and-without-an-sitemap/)
 *  [Harshad](https://wordpress.org/support/users/bornforphp/)
 * (@bornforphp)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/difference-between-using-the-cache-preload-function-with-and-without-an-sitemap/#post-15989873)
 * [@wrdprssmstr](https://wordpress.org/support/users/wrdprssmstr/) WP-Optimize 
   reads sitemap.xml while loading urls via Preload, by default the sitemap format
   should be in xml format.
 * If you use any SEO plugin such as Yoast SEO, the post pages will get automatically
   updated in sitemap.xml file, so you don’t have to worry about updating the sitemap.
   xml file.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance] Using Cache and pre load but no cached files on server](https://wordpress.org/support/topic/using-cache-and-pre-load-but-no-cached-files-on-server/)
 *  [Harshad](https://wordpress.org/support/users/bornforphp/)
 * (@bornforphp)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/using-cache-and-pre-load-but-no-cached-files-on-server/#post-15989522)
 * [@lucycrisps](https://wordpress.org/support/users/lucycrisps/) Could you send
   me a copy of your server’s PHP Error log?
    You can find this log through your
   web hosting control panel (typically cPanel). If you are unsure where to find
   the PHP Error log, you can ask your hosts to provide it.
 * You can copy and paste the error logs here [https://pastebin.com](https://pastebin.com)
   and share the link with us.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance] Optimize Theme](https://wordpress.org/support/topic/optimize-theme/)
 *  [Harshad](https://wordpress.org/support/users/bornforphp/)
 * (@bornforphp)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/optimize-theme/#post-15981996)
 * [@markk26](https://wordpress.org/support/users/markk26/) As these are the urls
   generated by 3rd party site it cannot be optimized by WP-Optimize at the moment.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance] ShortPixel Adaptive Images](https://wordpress.org/support/topic/shortpixel-adaptive-images/)
 *  [Harshad](https://wordpress.org/support/users/bornforphp/)
 * (@bornforphp)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/shortpixel-adaptive-images/#post-15981993)
 * [@granny63](https://wordpress.org/support/users/granny63/) Please check this 
   article on how you can fix the issue: [https://getwpo.com/faqs/how-can-i-eliminate-render-blocking-resources/](https://getwpo.com/faqs/how-can-i-eliminate-render-blocking-resources/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance] Using Cache and pre load but no cached files on server](https://wordpress.org/support/topic/using-cache-and-pre-load-but-no-cached-files-on-server/)
 *  [Harshad](https://wordpress.org/support/users/bornforphp/)
 * (@bornforphp)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/using-cache-and-pre-load-but-no-cached-files-on-server/#post-15981965)
 * [@lucycrisps](https://wordpress.org/support/users/lucycrisps/) Could you please
   check the permissions for wp-content/cache folder?

Viewing 15 replies - 106 through 120 (of 2,472 total)

[←](https://wordpress.org/support/users/bornforphp/replies/page/7/?output_format=md)
[1](https://wordpress.org/support/users/bornforphp/replies/?output_format=md) [2](https://wordpress.org/support/users/bornforphp/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/bornforphp/replies/page/3/?output_format=md)…
[7](https://wordpress.org/support/users/bornforphp/replies/page/7/?output_format=md)
8 [9](https://wordpress.org/support/users/bornforphp/replies/page/9/?output_format=md)…
[163](https://wordpress.org/support/users/bornforphp/replies/page/163/?output_format=md)
[164](https://wordpress.org/support/users/bornforphp/replies/page/164/?output_format=md)
[165](https://wordpress.org/support/users/bornforphp/replies/page/165/?output_format=md)
[→](https://wordpress.org/support/users/bornforphp/replies/page/9/?output_format=md)