Suppress strict standards errors in Joomla
If you are getting too many strict standards errors in Joomla then there is a very easy way to suppress these kinds of error.
Just open configuration.php file which is in the root of the Joomla installation.
Open that file and find the line
public $error_reporting = 'default'
change this line to
public $error_reporting = 'production'
And refresh the page. Your all strict standards should disappear.