Lots of PHP error messages

Situation
I have just installed openEMR and I get this message when I log on

: Only variables should be passed by reference in D:\xampp\htdocs\openemr\src\Menu\MainMenuRole.php on line 68

OpenEMR Version
I’m using OpenEMR Version Number: v6.0.0 (4)

Browser:
Firefox

Operating System
I’m using: XAMP on WIN10

Logs
Did you check the logs?
Was there anything pertinent in them?
Please paste them here (surround with three backticks (```) for readability.
You can also turn on User Debugging under Administration->Globals->Logging User Debugging Options=>All

Hi George,

Is this showing up in the user interface or only in the logs?

Hi Rob,

Thank you for responding I’m a complete noob when it comes to OpenEMR I’m trying to customize it for use in our Natural health clinic

in answer to your question It shows up in the user interface

See attached screen shot

GV

You need to change your PHP preferences in the php.ini file.

See:
https://www.open-emr.org/wiki/index.php/FAQ#What_are_the_correct_PHP_settings_.28can_be_found_in_the_php.ini_file.29.3F

You need to change error reporting to:
error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED

The symbol “~” means “NOT”. So, the above line means Notices and deprecated messages will not be displayed.

Hi Robert,

Thank you for responding, I managed to fig the error … was a config issue in my php.conf file.

regards

GV