0

所以首先我是 prestashop 的新手。我安装它并购买了一个主题。安装主题后,当我尝试查看我的商店时出现此错误(打开错误报告,否则它是一个空白屏幕)

Fatal error: Class 'ProductCore' not found in /nfs/home/mywebsite.com/public_html/store/classes/Product.php on line 4

我没有对代码做任何事情......为什么我会得到这个,我怎样才能摆脱它?

4

1 回答 1

0

/nfs/home/mywebsite.com/public_html/store/classes/ 中的文件 Product.php 必须是原始发行版中的文件,如果需要,可以在 nfs/home/mywebsite.com/public_html/store/override/classes/ 中覆盖.

原始类定义为:“class ProductCore extends ObjectModel” 覆盖为“class Product extends ProductCore”

很可能必须在“覆盖”文件夹中的文件被复制到核心类文件夹中。

只需将 /nfs/home/mywebsite.com/public_html/store/classes/Product.php 复制到 /nfs/home/mywebsite.com/public_html/store/override/classes/ 和 Product.php 从原始发行版(相同的 PS 版本)到 /nfs/home/mywebsite.com/public_html/store/classes/

确保备份所有要覆盖的文件。

于 2013-10-12T16:34:02.113 回答