Why your pages broke here
Posted: Fri Oct 09, 2015 7:54 pm
If this is of any interest to web devs here -
http://stackoverflow.com/questions/1222 ... rds-errors
http://stackoverflow.com/questions/1222 ... rds-errors
Put this in my php.ini and your Quote button and Registration pages seem to load again. Apparently the version of phpBB3 here is quite old (2007), and I'll have to look into updating it soon.One of the changes in php 5.4 is that E_STRICT is now part of E_ALL
So, in your ... you could remove the E_STRICT from your error reporting:
error_reporting(E_ALL ^ E_STRICT);
and be compatible again with before 5.4 versions.