https://www.icyphoenix.com/viewtopic.php?f=35&t=9183&p=59447#p59447 ----------------------------------- Mighty Gorgon Tue 21 Jan, 2014 15:50 Re: Problem With IP2.0 In PHP 5.4? ----------------------------------- PHP 5.4 combines E_ALL and E_STRICT, which means that some previous setting for error_reporting does not work properly now. You can try this fix... In your php.ini change: [codeblock]error_reporting = E_ALL[/codeblock] to [codeblock]error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT[/codeblock] If you don't have access to the php.ini, you can potentially put this in your .htaccess file: [codeblock]php_value error_reporting 30711[/codeblock] This is the E_ALL value (32767) and the removing the E_STRICT (2048) and E_NOTICE (8) values. If you don't have access to the .htaccess file or it's not enabled, you'll probably need to put this in common.php in replacement of the old error_reporting code: [codeblock]error_reporting(E_ALL & ~E_STRICT & ~E_NOTICE);[/codeblock]