Posted by sammy
2013-10-05

i am getting the Strict Standard warnings
Strict Standards: Declaration of COutString::Render() should be compatible with COutObject::Render() in C:\Program Files\EasyPHP-DevServer-13.1VC9\data\localweb\web\codelib\sys\COutObject.inc.php on line 115

Strict Standards: Declaration of COutHtml::Render() should be compatible with COutObject::Render() in C:\Program Files\EasyPHP-DevServer-13.1VC9\data\localweb\web\codelib\sys\COutObject.inc.php on line 305
Posted by Tom
2013-10-06

Hi, Sammy. It seemed that the error_reporting command was ignored in your php environment. Try this. Open web/staff/index.php and replace
error_reporting( E_ALL & ~E_DEPRECATED & ~E_STRICT );
with
error_reporting( 22527 );
Hope it helps