Where Does LS get the URL's to Cache?

Lee

Well-Known Member
#1
OK, where does litespeed get the URL's to cache?

The reason is the URL's it's caching does not match the URL's when you click the links on my site.

For example, when I click on the brand name then the product the URL is: /atmysphere/atmysphere-used.html and the site map is the same so they match. But the URL that litespeed caches when when I click on rebuild cache is: /atmysphere-used.html. Notice that litespeed is missing the brand '/atmysphere/' so the site is not cached properly.

I need the cache to match the actual websites URL's so I need to figure out how and where litespeed is getting the data to cache to I can make some changes so the site caches properly.

I'm using Opencart v3.0.3.7, not sure the version of litespeed A2 hosting is using and I'm using v2.2 latest version of the extension.

Thanks,
Lee
 

AndreyPopov

Well-Known Member
#3
sorry, recache manufacturer list is next step.

I began from this

add /manufacturer/product.html to crawler list

PHP:
$urls[] = $this->url->link('product/product', 'manufacturer_id=' . $result['manufacturer_id'] . '&product_id=' . $result['product_id']);
 
Top