导入后,Opencart重新缓存产品页面

时间:2012-04-28 21:11:40

标签: php caching opencart

我有代码在opencart中导入xml feed。我可以在导入之前清除缓存,但是在我想为产品页面重新创建缓存之后。

我看到catalog / product / getProducts使用

$this->cache->set('product.' . (int)$this->config->get('config_language_id') . '.' . (int)$this->config->get('config_store_id') . '.' . (int)$customer_group_id . '.' . $cache, $product_data);

但我找不到类似于单个产品页面的内容,这些页面看起来像是用

缓存的
$this->response->setOutput($this->render());

无论如何在产品数据循环中生成和缓存产品页面?如果我不能编码它,我只想设置$ _GET并调用index.php或使用curl,尽管我想避免带宽。

1 个答案:

答案 0 :(得分:1)

尝试通过require包含站点根目录的index.php导致函数重新声明问题。尝试通过新的前端调度新操作导致在管理员内部调用目录操作的问题。

我最终做的是给当地主持人打电话。

 http://localhost/index.php?route=product/product&product_id=1234567890