joomla website not showing

Avatar
  • Answered
My Domain Name is inamedia.in

Some sort of errors showing like

Strict Standards: Non-static method JLoader::import() should not be called statically in /home/mediaina/public_html/libraries/joomla/import.php on line 29................. . . .

how it could be rectified??
Avatar
Scott
Hello, This is due to your error reporting being set to display warnings for not using strict standards. You will want to check in your php.ini file for the error reporting settings. They may appear something like this:
error_reporting = E_ALL & ~E_NOTICE | E_STRICT
You will want to remove the reference to E_STRICT so that it appears something like:
error_reporting = E_ALL & ~E_NOTICE
That should remove the warnings and allow the site to display for you. Kindest Regards, Scott M