0

我是cs购物车的新手。我已完成以下步骤

1.downloaded a cs-cart-V3 website to my localhost.
2.Change database setting,and import database.
3.$config['http_host'] = 'localhost'; added in **config.local.php** file.
4.Removed .htaccess file from root folder.

我的问题是

该站点已加载,但是 css 的路径是错误的。它试图从 localhost 加载而 不是localhost/subfolder

我需要在哪里改变这个?

4

2 回答 2

0

请检查 config.local.php

主要有以下几行:

// Host and directory where software is installed on no-secure server
$config['http_host'] = '';
$config['http_path'] = '';
于 2015-06-22T10:23:38.700 回答
0

请确保店面 URL 也是正确的。可以检查:

  1. 在数据库的 cscart_companies 表中(storefront 和 secure_storefront 列)
  2. 在管理 -> 商店页面(店面 URL 和安全店面 URL 字段)

最后,不要忘记清除缓存。您可以通过将“?cc&ctpl”添加到管理面板中的 URL 来实现。例如

http://your_domain.com/your_admin.php?cc&ctpl

于 2015-07-14T19:45:51.533 回答