Quote:
Originally Posted by Paul M
Please be more than specific than "didnt work". Id like to know under what circumstancs it would not work.
As for reverting, there are no database changes from 4.2.1 to 4.2.2, so you could quite easily re-upload 4.2.1 and it would work.
I would suggest if you did this that you turn debug mode on and reset the version back to 4.2.1 in Options > Untouchables (then turn debug back off).
|
I try the setting in options > Plugins > PHP Compatability. Turning it on alone didnt solve the error codes I was getting. I did the code edit , I had seen
(2. For those who feel comfortable with editing files.
In class_core.php locate lines 5683-5685 (class_core.php is in the 'includes' folder)
Code:
case E_NOTICE:
// Just ignore these completely //
break;
Add lines for Deprecated and/or Strict errors as required ;
Code:
case E_NOTICE:
case E_STRICT:
case E_DEPRECATED:
// Just ignore these completely //
break;
This will bypass the additional error reporting. )
And its working fine now. Thanks