Error while install Joomla

橙三吉。 提交于 2019-12-03 13:59:41

"Strict Standards" isn't technically an error, it's saying that the Joomla version you installed isn't strictly adhering to PHP standards. What you want to do is two things: first, restrict error reporting in php.ini to not report a standards violation as an error, then (when you're ready for go-live), turn off Joomla error reporting.

In your php.ini, change error_reporting = E_ALL | E_STRICT to error_reporting = E_ALL & ~E_NOTICE

Restart xampp to apply the changes.

In Joomla's configuration.php file, change $error_reporting value to 6135.

Thank Guys. I have found the Solution

You need to deactivate the display of PHP errors and warnings from your php.ini. You could contact your hosting provider about it or you could do it yourself ( if you have access to that file ).

If you not have access to the php.ini file you can try to edit your htaccess file. (You find this file in the root of your Joomla! installation. If the name is htaccess.txt, remember to rename it to .htaccess .

Write this to your .htaccess file

Code

# supress php errors
php_flag display_startup_errors off
php_flag display_errors off
php_flag html_errors off
php_value docref_root 0
php_value docref_ext 0

In xampp/php/php.ini change

    1.display_errors=Off
    2.error_reporting = E_ALL & ~E_NOTICE & ~E_WARNING 

Then restart your xampp

Set error reporting to "none" in joomla configuration. which will turn off notices

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!