Simple Machines Community Forum

SMF Support => SMF 1.1.x Support => Topic started by: billeng on August 14, 2020, 10:31:35 AM

Title: Re: SMF 1.1.x incompatibility with recent PHP versions (PHP5.5+)
Post by: billeng on August 14, 2020, 10:31:35 AM
Quote from: vbgamer45 on March 17, 2016, 02:41:49 PM
1.1.x will work fine on  php 5.5
Here is a quick change to fix all notices.

open index.php change

error_reporting(E_ALL);

To

error_reporting(E_ALL & ~E_DEPRECATED & ~E_NOTICE);


open ssi.php
Change

$ssi_error_reporting = error_reporting(E_ALL);

To

$ssi_error_reporting = error_reporting(E_ALL & ~E_DEPRECATED & ~E_NOTICE);


Thanks for the info

I made the mods to our Forum and it did stop the popups and all the errors however
it puts hundreds of error messages in my forum maint log.

anyway to stop that?

thanks Bill
Title: Re: Re: SMF 1.1.x incompatibility with recent PHP versions (PHP5.5+)
Post by: vbgamer45 on August 14, 2020, 10:38:20 AM
You have one more to go https://www.simplemachines.org/community/index.php?topic=534915.msg3867567#msg3867567
Title: Re: Re: SMF 1.1.x incompatibility with recent PHP versions (PHP5.5+)
Post by: Arantor on August 14, 2020, 10:51:12 AM
Then start planning for an upgrade... ;)