Changing PHP variable (more.groupware)

kankei71

New Member
Messages
2
Reaction score
0
Points
0
Hi,

this is my first post in this forum.

I'm trying to configure my more.groupware server and have some problems. I already could receive some help by mailing to "X 10 support" but maybe I can ask for help here.

I would like to set the PHP variable "display_errors" to 0. I had the following error message when trying to configure moregroupware:

"
display_errors should to be set to 0.
The PHP setting display_errors needs to be set to 0 for more.groupware to operate without problems. It might work anyway, but we recommend adjusting your php.ini accordingly.
"

How can this be done?

TIA
Edit:
I received an answer for my problem by e.mail.

Thank you.
 
Last edited:

conker87

New Member
Messages
65
Reaction score
0
Points
0
Just add:
PHP:
ini_set('display_errors', 0)
To the very top of your page.
 
Top