joomla1.7中的严格标准错误

sha*_*gam 1 php joomla joomla1.7

我正在尝试使用Joomla和XAMPP创建一个网页.

我在页面的所有部分都获得了严格的标准 ......这很烦人.

严格标准:静态函数JDatabase :: test()不应该在第350行的C:\ xampp\htdocs\Joomla17\libraries\joomla\database\database.php中是抽象的

严格标准:在第394行的C:\ xampp\htdocs\Joomla17\libraries\joomla\cache\cache.php中访问静态属性JCache :: $ _ handler as non static

严格标准:在第396行的C:\ xampp\htdocs\Joomla17\libraries\joomla\cache\cache.php中访问静态属性JCache :: $ _ handler as non static

还有一件事我试图改变php.ini文件.我在Joomla 1.7中有两个文件.php INI-Devlolpment php INI-Production

两者之间有什么区别?

我尝试了许多关闭严格标准的事情:

; 的display_errors

; 默认值:关闭

; 发展价值:关闭

; 产值:关闭

; 使用error_reporting

; 默认值:E_ALL&~E_DEPRECATED

; 开发价值:E_ALL&~E_DEPRECATED

; 产值:E_ALL&~E_DEPRECATED

error_reporting = E_ALL&~E_DEPRECATED

display_errors =关闭

我还有这些错误吗?

请帮我解决这个问题..谢谢,Shanmugam

小智 7

转到导致错误的文件并将$ this - > _ handler更改为self :: $ _ handler