PHPJoomla 1.7 摘要错误

发布于 2024-12-01 10:32:16 字数 942 浏览 1 评论 0原文

我已经安装了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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

夜空下最亮的亮点 2024-12-08 10:32:16

这意味着技能低下。

在该文件中将$this->_handler 更改为 self::$_handler

。鳍

it means low skills.

change $this->_handler to self::$_handler

in that file. Fin

深海蓝天 2024-12-08 10:32:16

这意味着 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

书间行客 2024-12-08 10:32:16

这在 joomla 中很常见,这也不是错误。这只是警告这不会阻止你的 joomla 停止。

无论如何,我会给出一个解决方案尝试这个......

  1. 首先检查服务器文件夹 (XAMPP) 中的 php.ini 文件,其中
    替换display_errors=false

  2. 更改 error_reporting = E_ALL | E_STRICT 到 error_reporting =
    E_ALL & ~E_NOTICE

  3. 还有一件事选择服务器(XAMPP)应用程序并右键
    点击->并检查“始终以管理员身份运行”

问候,

尚穆根

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...

  1. First check for php.ini file in your server folder (XAMPP), in that
    replace display_errors=false

  2. Change error_reporting = E_ALL | E_STRICT to error_reporting =
    E_ALL & ~E_NOTICE

  3. One more thing select the Server (XAMPP) application and right
    click-> and check for 'run always as administrator'

Regards,

Shanmugam

养猫人 2024-12-08 10:32:16

您遇到“严格标准:非静态方法”错误,这是由于 Xampp php.ini 文件中的错误报告设置造成的。在 php.ini 文件中进行这些更改,然后重新启动 Apache:

error_reporting = E_ALL & ~E_NOTICE
display_errors = Off

您必须重新启动 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 the php.ini file make these changes and then restart Apache:

error_reporting = E_ALL & ~E_NOTICE
display_errors = Off

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文