2

i am using Moodle and joomla , and i use joomdle , but i face this message

E_DEPRECATED errors are enabled in your PHP configuration

this message describe in this link

my error reporting in php.ini is :

error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT

how i can solve this problem ?

Edit

Image moved from answer section:

this is image of joomdle error reporting


this is image of joomdle error reporting

Kev
  • 118,037
  • 53
  • 300
  • 385
aya
  • 1,597
  • 4
  • 29
  • 59

1 Answers1

0

Change your php.ini to have this:

error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
Waynn Lue
  • 11,344
  • 8
  • 51
  • 76
  • no i change this line instead my correspond line in php.ini but i face with same page and same error – aya Mar 11 '12 at 12:26
  • 1
    Sorry, I don't quite understand. Did you try changing your php.ini to have the line I suggested and it still gives your error after restart? – Waynn Lue Mar 11 '12 at 12:27
  • Joomla's configuration allows one to set a custom error reporting level, which overrides the one set in php.ini . – DCoder Mar 11 '12 at 13:21