In 4.0.7 i get random errors when clicking, Heres a couple
Quote:
Deprecated: Assigning the return value of new by reference is deprecated in /home/britishb/public_html/awards.php on line 47
|
Quote:
Deprecated: Assigning the return value of new by reference is deprecated in /home/britishb/public_html/admincp/award.php on line 30
|
Quote:
Deprecated: Assigning the return value of new by reference is deprecated in /home/britishb/public_html/admincp/award_diagnostics.php on line 17
|
And if i try to edit the PM message or body i get.....
Quote:
No Phrases Matched Your Query
|
EDIT...
PS: PHP Version Is 5.3.2, Have been reading similar errors in other software and think it my be related....
Quote:
That indicates that you're running a really new version of PHP 5, which adds those warnings on older PHP 4 compatible code. Annoying, huh?
Add this to the top of your wp-config.php file, right after the first <?php line:
error_reporting(0);
That will turn off warnings and such.
|