polites
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Installing WordPress
In reply to: 2 errorsIn my case, this error was a consequence of the ‘array’ error.
See here for the solution:
Forum: Fixing WordPress
In reply to: cannot publish at allIn my case, this error was a consequence of the ‘array’ error.
See here for the solution:
Forum: Installing WordPress
In reply to: Error on users.php line 55In my case, this error was a consequence of the ‘array’ error.
See here for the solution:
Forum: Installing WordPress
In reply to: Users.php errorsIn my case, this error was a consequence of the ‘array’ error.
See here for the solution:
Forum: Fixing WordPress
In reply to: the word ‘Array’ is appearing everywhere in the dashboardI also had the same problem with the last version of WP (2.3.1). My solution is similar.
In the file wp-includes/plugin.php is the function remove_filter with this lines of code:
$r = isset($GLOBALS['wp_filter'][$tag][$priority][$function_to_remove]); unset($GLOBALS['wp_filter'][$tag][$priority][$function_to_remove]);I have added the ‘if’ to solve the problem:
$r = isset($GLOBALS['wp_filter'][$tag][$priority][$function_to_remove]); if ($r) unset($GLOBALS['wp_filter'][$tag][$priority][$function_to_remove]);
Viewing 5 replies - 1 through 5 (of 5 total)