gpt4 book ai didi

php - 如何解决这个德性显示错误?

转载 作者:行者123 更新时间:2023-12-03 08:57:40 26 4
gpt4 key购买 nike

我在joomla 2.5.11中遇到问题。这里显示了一些通知,而在这些页面中,venturemart除了这些通知外没有显示任何内容。

Notice: Undefined property: TableCategories::$virtuemart_id in C:\xampp\htdocs\joonla\Joomla_2.5.11-Stable-Full_Package\components\com_virtuemart\views\categories\view.html.php on line 57

Strict Standards: Declaration of VirtueMartModelMedia::store() should be compatible with that of VmModel::store() in C:\xampp\htdocs\joonla\Joomla_2.5.11-Stable-Full_Package\administrator\components\com_virtuemart\models\media.php on line 435

Strict Standards: Declaration of JParameter::loadSetupFile() should be compatible with that of JRegistry::loadSetupFile() in C:\xampp\htdocs\joonla\Joomla_2.5.11-Stable-Full_Package\libraries\joomla\html\parameter.php on line 512

Strict Standards: Creating default object from empty value in C:\xampp\htdocs\joonla\Joomla_2.5.11-Stable-Full_Package\components\com_virtuemart\views\categories\view.html.php on line 82

最佳答案

确保运行最新版本的Virtuemart之后,如果要修复这些警告(尽管请记住,它们只是警告,并且如果您未通过Virtuemart进行修复,它们可能会在更新时再次出现),然后您应该按照每个错误给出的简单说明进行操作:

Notice: Undefined property: TableCategories::$virtuemart_id in x.php on line y

这意味着在文件 yx行上调用了一个属性。在这种情况下,您应该找到 TableCategories类的实例化位置,并添加默认的 $virtuemart_id
Strict Standards: Declaration of VirtueMartModelMedia::store()
should be compatible with that of VmModel::store() in x.php on line y

这意味着两个相关类的两个函数声明的声明方式不同。例:
function Parent::a($param1, $param2) {}
function Child::a($param1) {}

显然,子级也应该将 $param2参数传递给它。如果您要更改此类内容,则应该知道该函数有各种调用,显然没有(例如)第二个参数。最好的处理方法 ,因为您要摆脱错误,是使子调用等于父调用,但要确保像 $param2 = 0中那样有一个默认值,以避免将来出现错误。
Strict Standards: Declaration of JParameter::loadSetupFile()
should be compatible with that of JRegistry::loadSetupFile() in x.php on line y

如果您需要我的意见,请避免这一观点。通常,最好不要使用Joomla代码,除非您 really知道要执行的操作,并且这是唯一的方法。但是,请注意,如果您仍在使用2.5.11,则Joomla 2.5会有更新。
Strict Standards: Creating default object from empty value in x.php on line y

对于最后一个错误,请阅读 this

关于php - 如何解决这个德性显示错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18940007/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com