-
AuthorPosts
-
September 18, 2013 at 2:41 pm #162932
Hi Kriesi Team!
My website is almost completed and I couldn’t be happier with this brilliant theme.
I just want to adjust one thing in my menu but up until recently I wasn’t able to because I was receiving the following error.‘Catchable fatal error: Object of class WP_Error could not be converted to string in /home2/krystina/public_html/wp-includes/formatting.php on line 511’
I have found line 511 and it starts off with…
function wp_check_invalid_utf8( $string, $strip = false ) {
$string = (string) $string; <—–THIS IS LINE 511if ( 0 === strlen( $string ) ) {
return ”;
}// Store the site charset as a static to avoid multiple calls to get_option()
static $is_utf8;
if ( !isset( $is_utf8 ) ) {
$is_utf8 = in_array( get_option( ‘blog_charset’ ), array( ‘utf8’, ‘utf-8’, ‘UTF8’, ‘UTF-8’ ) );
}
if ( !$is_utf8 ) {
return $string;
}// Check for support for utf8 in the installed PCRE library once and store the result in a static
static $utf8_pcre;
if ( !isset( $utf8_pcre ) ) {
$utf8_pcre = @preg_match( ‘/^./u’, ‘a’ );
}
// We can’t demand utf8 in the PCRE installation, so just return the string in those cases
if ( !$utf8_pcre ) {
return $string;
}// preg_match fails when it encounters invalid UTF8 in $string
if ( 1 === @preg_match( ‘/^./us’, $string ) ) {
return $string;
}// Attempt to strip the bad chars if requested (not recommended)
if ( $strip && function_exists( ‘iconv’ ) ) {
return iconv( ‘utf-8’, ‘utf-8’, $string );
}return ”;
}Does the Kriesi Team have any idea on what I would need to change in this code? Thank you! :)
- This topic was modified 11 years, 2 months ago by tinagianna.
September 18, 2013 at 3:04 pm #162948Oh and I thought I might add that I have tried
– Deactivating all Pluggins
– Searching the error in Google
– Searching for the error on Kriesi (I found a post, but it didn’t have an answer)Ive been trying, and no luck just yet..
September 19, 2013 at 1:38 am #163251Hi!
I think this problem has to do with cyrillic characters, can we get an screenshot of the backend view of the menu?
Best regards,
JosueSeptember 19, 2013 at 4:18 am #163330Hi Josue,
Thanks for the response! I took 2 screen shots of the menu view through WordPress and through the WordPress installation directory (Formatting.php). I hope this is what you meant :)
September 19, 2013 at 4:20 am #163332I briefly looked through the scripting and didn’t see any cyrillic characters. Ill double check again and let you know if I do :)
September 19, 2013 at 4:23 am #163334Hello!
Well, i thought wrong, have you tried switching back to the default theme?
Regards,
JosueSeptember 19, 2013 at 4:31 am #163343You are brilliant.. That worked! Thanks a million Josue and have a fabulous day :)))
September 19, 2013 at 4:33 am #163345Glad we could help :)
Regards,
Josue -
AuthorPosts
- The topic ‘'Catchable fatal error' appears when I try to access the Menus tab in WordPress’ is closed to new replies.