parseha
parseha

Reputation: 170

how disable E_DEPRECATED in php for joomdle configuration

i use joomdle for integrating moodle and joomla but i face this message

E_DEPRECATED errors are enabled in your PHP configuration

and say me disable this setting . i change php.ini to :

error_reporting = ~E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED

but joomla say :

E_DEPRECATED errors are enabled in your PHP configuration

are there way for me ?

Upvotes: 1

Views: 2624

Answers (1)

Milap
Milap

Reputation: 7221

Joomla's configuration allows one to set a custom error reporting level, which overrides the one set in php.ini

Did you try ?

error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED

I think this will works. Good luck.

Upvotes: 1

Related Questions