Title: LiteSpeed Cache Crawler
Last modified: August 27, 2025

---

# LiteSpeed Cache Crawler

 *  Resolved [chromasiv](https://wordpress.org/support/users/chromasiv/)
 * (@chromasiv)
 * [9 months, 2 weeks ago](https://wordpress.org/support/topic/litespeed-cache-crawler/)
 * I’ve enabled LS Cache and turned on the Crawler. The crawler status never updates
   showing that it hit any of the sitemap pages. When I run the cron job, it doesn’t
   throw any errors but the show crawler status just always has “start watching ….”
   and nothing happens. 
   Last Report Number: **TKZVBZCL**

Viewing 15 replies - 1 through 15 (of 31 total)

1 [2](https://wordpress.org/support/topic/litespeed-cache-crawler/page/2/?output_format=md)
[3](https://wordpress.org/support/topic/litespeed-cache-crawler/page/3/?output_format=md)
[→](https://wordpress.org/support/topic/litespeed-cache-crawler/page/2/?output_format=md)

 *  Plugin Support [qtwrk](https://wordpress.org/support/users/qtwrk/)
 * (@qtwrk)
 * [9 months, 2 weeks ago](https://wordpress.org/support/topic/litespeed-cache-crawler/#post-18616636)
 * please do me a full screenshot on crawler summary page
 *  Thread Starter [chromasiv](https://wordpress.org/support/users/chromasiv/)
 * (@chromasiv)
 * [9 months, 2 weeks ago](https://wordpress.org/support/topic/litespeed-cache-crawler/#post-18616659)
 * ![](https://wordpress.org/62abb1e5-9b00-4bbe-a13c-5958770d33a1)
 * ![](https://wordpress.org/b865ab16-4a59-41b4-8dac-4de69a5c4399)
 * Is this the summary page you are looking for?
 *  Plugin Support [qtwrk](https://wordpress.org/support/users/qtwrk/)
 * (@qtwrk)
 * [9 months, 2 weeks ago](https://wordpress.org/support/topic/litespeed-cache-crawler/#post-18616660)
 * yes, the summary page, please do me a full screenshot of it
 *  Thread Starter [chromasiv](https://wordpress.org/support/users/chromasiv/)
 * (@chromasiv)
 * [9 months, 2 weeks ago](https://wordpress.org/support/topic/litespeed-cache-crawler/#post-18616661)
 * Sorry I’m having issues with it uploading the image. Working on it now.
 *  Plugin Support [qtwrk](https://wordpress.org/support/users/qtwrk/)
 * (@qtwrk)
 * [9 months, 2 weeks ago](https://wordpress.org/support/topic/litespeed-cache-crawler/#post-18616662)
 * the simplest way is that you can just upload to your own wp , then share the 
   link
 *  Thread Starter [chromasiv](https://wordpress.org/support/users/chromasiv/)
 * (@chromasiv)
 * [9 months, 2 weeks ago](https://wordpress.org/support/topic/litespeed-cache-crawler/#post-18616664)
 * > [View post on imgur.com](https://imgur.com/QK921o7)
 * Is the screen you are looking for?
 *  Plugin Support [qtwrk](https://wordpress.org/support/users/qtwrk/)
 * (@qtwrk)
 * [9 months, 2 weeks ago](https://wordpress.org/support/topic/litespeed-cache-crawler/#post-18616666)
 * yes, now please go to “map” click refresh map , see what it says
 *  Thread Starter [chromasiv](https://wordpress.org/support/users/chromasiv/)
 * (@chromasiv)
 * [9 months, 2 weeks ago](https://wordpress.org/support/topic/litespeed-cache-crawler/#post-18616667)
 * Sitemap created successfully: 64 items
 * Crawler status still shows blank though.
    -  This reply was modified 9 months, 2 weeks ago by [chromasiv](https://wordpress.org/support/users/chromasiv/).
 *  Plugin Support [qtwrk](https://wordpress.org/support/users/qtwrk/)
 * (@qtwrk)
 * [9 months, 2 weeks ago](https://wordpress.org/support/topic/litespeed-cache-crawler/#post-18616669)
 * ok, now go to summary page, click manual run , wait for 2 minutes, click manual
   run again , wait for 2 minutes, see if anything changes, like any number shows
   up in that “grey/green/blue/red” area
 *  Thread Starter [chromasiv](https://wordpress.org/support/users/chromasiv/)
 * (@chromasiv)
 * [9 months, 2 weeks ago](https://wordpress.org/support/topic/litespeed-cache-crawler/#post-18616670)
 * Nothing changed. Still all blank in the status section.
 *  Plugin Support [qtwrk](https://wordpress.org/support/users/qtwrk/)
 * (@qtwrk)
 * [9 months, 2 weeks ago](https://wordpress.org/support/topic/litespeed-cache-crawler/#post-18616676)
 * okay , please go to toolbox -> debug setting -> set debug log to ON
 * set debug level to advance , add `async_litespeed` and `litespeed_type=start`
   into debug include URI ( these are 2 lines of content , one per each line)
 * go to toolbox -> log view -> clean up existing log if any
 * now go to crawler page again , manually run it , wait for 2 minutes , go back
   to log view again , copy paste and share the log via [https://pastebin.ubuntu.com/](https://pastebin.ubuntu.com/)
 *  Thread Starter [chromasiv](https://wordpress.org/support/users/chromasiv/)
 * (@chromasiv)
 * [9 months, 2 weeks ago](https://wordpress.org/support/topic/litespeed-cache-crawler/#post-18616681)
 * [https://pastebin.ubuntu.com/p/q4ZsCzPqjJ/](https://pastebin.ubuntu.com/p/q4ZsCzPqjJ/)
 *  Plugin Support [qtwrk](https://wordpress.org/support/users/qtwrk/)
 * (@qtwrk)
 * [9 months, 2 weeks ago](https://wordpress.org/support/topic/litespeed-cache-crawler/#post-18616683)
 *     ```wp-block-code
       <?phprequire( './wp-load.php' );$args = array(  'timeout'   => 100,  'blocking'  => true,  'sslverify' => false,  // 'cookies'   => $_COOKIE,);$url = 'https://' . $_SERVER['HTTP_HOST'] . '/wp-admin/admin-ajax.php?action=async_litespeed&nonce=123123123&litespeed_type=imgoptm_force';$result = wp_remote_post(esc_url_raw($url), $args);echo '<pre>';var_dump($result);echo '</pre>';
       ```
   
 * create a php file, name it like `test.php` with above code, put it at same directory
   as your wp-config.php , then open it browser, see what it returns
 *  Thread Starter [chromasiv](https://wordpress.org/support/users/chromasiv/)
 * (@chromasiv)
 * [9 months, 2 weeks ago](https://wordpress.org/support/topic/litespeed-cache-crawler/#post-18616693)
 * Seems like I have a deny on accessing this stuff. Looking at how to get it to
   run.
 *  Thread Starter [chromasiv](https://wordpress.org/support/users/chromasiv/)
 * (@chromasiv)
 * [9 months, 2 weeks ago](https://wordpress.org/support/topic/litespeed-cache-crawler/#post-18616695)
 * So when I ran it it just gave a 0.

Viewing 15 replies - 1 through 15 (of 31 total)

1 [2](https://wordpress.org/support/topic/litespeed-cache-crawler/page/2/?output_format=md)
[3](https://wordpress.org/support/topic/litespeed-cache-crawler/page/3/?output_format=md)
[→](https://wordpress.org/support/topic/litespeed-cache-crawler/page/2/?output_format=md)

The topic ‘LiteSpeed Cache Crawler’ is closed to new replies.

 * ![](https://ps.w.org/litespeed-cache/assets/icon-256x256.png?rev=2554181)
 * [LiteSpeed Cache](https://wordpress.org/plugins/litespeed-cache/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/litespeed-cache/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/litespeed-cache/)
 * [Active Topics](https://wordpress.org/support/plugin/litespeed-cache/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/litespeed-cache/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/litespeed-cache/reviews/)

 * 31 replies
 * 2 participants
 * Last reply from: [qtwrk](https://wordpress.org/support/users/qtwrk/)
 * Last activity: [9 months, 2 weeks ago](https://wordpress.org/support/topic/litespeed-cache-crawler/page/3/#post-18618496)
 * Status: resolved