vote up 0 vote down star

I know about error_reporting(0);, and ini_set('display_errors', false);, but there is a notice appearing in wordpress:

Notice: Array to string conversion in /var/www/vhosts/treethink.net/subdomains/parkridge/httpdocs/wp-includes/formatting.php on line 359

it only appears in wordpress, not in any other pages of the site.

I checked phpinfo(), and everything is set so that errors are not displayed. Why does this one still show up?

Here is the line that generates the error:

function wp_check_invalid_utf8( $string, $strip = false ) {
    $string = (string) $string;

I did change some thing in wordpress, to change how the gallery worked. But not this function, and I don't think I changed any calls to this function either. Aside from the notice appearing, everything seems to operate perfectly fine, I just need to get this error to hide.

flag

Are you sure wp doesn't change the values of error_reporting and display_errors somewhere? – jmucchiello Aug 20 at 19:50
that's what I was thinking, but the error wasn't there before – Carson Myers Aug 20 at 19:58
oh, I set the values when I was working on the site, so I could see if there were errors more easily. – Carson Myers Aug 20 at 19:59

1 Answer

vote up 2 vote down check

You need to edit your:

wp-config.php

file and modify the following here:

error_reporting(0);
@ini_set(‘display_errors’, 0);

otherwise Wordpress overwrites the ALERTS set by PHP.INI

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.