PHPJoomla 1.7 摘要错误
我已经安装了xampp的xampp-win32-1.7.4-VC6-installer.exe并且运行良好 除了最后一个声明(问题)。
创建了一个MySQL数据库,然后开始安装htdocs中的视频Joomla Joomla_1.7.0-Stable-Full_Package.zip。然后将其连接起来。
然后当我在我的浏览器上访问 Joomla 网站时,abstact erroer
Strict Standards: Static function JDatabase::test() should not be abstract in C: \x\htdocs\libraries\joomla\database\database.php on line 350
Strict Standards: Accessing static property JCache::$_handler as non static in C: \x\htdocs\libraries\joomla\cache\cache.php on line 394
Strict Standards: Accessing static property JCache::$_handler as non static in C: \x\htdocs\libraries\joomla\cache\cache.php on line 396
Strict Standards: Accessing static property JCache::$_handler as non static in C: \x\htdocs\libraries\joomla\cache\cache.php on line 396
[etc.]
Strict Standards: Accessing static property JCache::$_handler as non static in C: \x\htdocs\libraries\joomla\cache\cache.php on line 396
I have installed xampp's xampp-win32-1.7.4-VC6-installer.exe and went in fine
except the last statment (Of Issue).
Created a MySQL database, and then started installing as to a video Joomla Joomla_1.7.0-Stable-Full_Package.zip in htdocs. And connected it in.
Then as I go to the Joomla site on my surver, abstact erroer
Strict Standards: Static function JDatabase::test() should not be abstract in C: \x\htdocs\libraries\joomla\database\database.php on line 350
Strict Standards: Accessing static property JCache::$_handler as non static in C: \x\htdocs\libraries\joomla\cache\cache.php on line 394
Strict Standards: Accessing static property JCache::$_handler as non static in C: \x\htdocs\libraries\joomla\cache\cache.php on line 396
Strict Standards: Accessing static property JCache::$_handler as non static in C: \x\htdocs\libraries\joomla\cache\cache.php on line 396
[etc.]
Strict Standards: Accessing static property JCache::$_handler as non static in C: \x\htdocs\libraries\joomla\cache\cache.php on line 396
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这意味着技能低下。
在该文件中将$this->_handler 更改为 self::$_handler
。鳍
it means low skills.
change $this->_handler to self::$_handler
in that file. Fin
这意味着 Joomla 不满足 PHP 严格标准。您可以在 php.ini 文件中关闭这些错误
This means that Joomla doesn't satisfied PHP Strict Standards. You can turn off these errors in your php.ini file
这在 joomla 中很常见,这也不是错误。这只是警告这不会阻止你的 joomla 停止。
无论如何,我会给出一个解决方案尝试这个......
问候,
尚穆根
This is common in joomla also this is not error. This is just warning this will not stop your joomla to stop.
Anyway i will give a solution try this...
Regards,
Shanmugam
您遇到“严格标准:非静态方法”错误,这是由于
Xampp php.ini
文件中的错误报告设置造成的。在php.ini
文件中进行这些更改,然后重新启动 Apache:您必须重新启动 Apache,这些更改才能生效。如果您不确定
php.ini
文件位于何处,请尝试在服务器上运行此文件并查找“加载的配置文件”行。You have "Strict Standards: Non-static method" errors, this is because of the error reporting settings in your
Xampp php.ini
file. In thephp.ini
file make these changes and then restart Apache:You must restart Apache before these changes take effect. If you are unsure where you
php.ini
file is, try running this file on your server and look for the "Loaded Configuration File" line.