Posted by Jenny
2016-04-11

Hi I am new to programming and I am getting the following warnings when trying to install (ie when doing Step 3 Uploading script to your website) and not really sure what to do with them

"Warning: Declaration of COutString::Render($format_encoding) should be compatible with COutObject::Render() in C:\xampp\htdocs\AB201-118-22311\AB201-118\web\codelib\sys\COutObject.inc.php on line 103

Warning: Declaration of COutHtml::Render($format_encoding) should be compatible with COutObject::Render() in C:\xampp\htdocs\AB201-118-22311\AB201-118\web\codelib\sys\COutObject.inc.php on line 223

Parse error: syntax error, unexpected 'new' (T_NEW) in C:\xampp\htdocs\AB201-118-22311\AB201-118\web\codelib\sys\CVField.inc.php on line 169"

I did find a previous message from 2014-11-08...but I have downloaded the latest zip and it still throws the above warning/error.

Many thanks

Posted by Tom
2016-04-11

Hi,

>I did find a previous message from 2014-11-08...but I have downloaded the latest zip and it still throws the above warning/error.

It's weird. This problem was solved more than a year ago and I haven't received similar reports since then. It looks like the error_reporting() command is ignored in your web server. OK, try this. Put the following line at the top of web/install/index.php and web/staff/index.php.
ini_set('display_errors', 'Off');
The first two lines of the files should look like
<?php ini_set('display_errors', 'Off');
//==>>>==>>>==>>>==>>>==>>>==>>>==>>>==>>>...