Since a few days, i getting this error constantly showing up in my error log:
[Wed Sep 04 00:46:25 2013] [warn] [client 47.64.203.36] mod_fcgid: stderr: PHP Warning: simplexml_load_string(): Entity: line 948: parser error : Premature end of data in tag meta line 16 in /var/www/vhosts/xxxxxxx/httpdocs/wp-content/themes/enfold/framework/php/class-framework-widgets.php on line 651, referer: http://www.xxxxxx.de/
Has this something to do with, that my COMBO Widget isnt working anymore?
how can i fix this?
Hi,
Are you using the latest version of Enfold?
Regards,
Josue
yes i do, v2.0.1
Hi,
Please try to increase the wordpress php memory limit. Edit wp-config.php, add this code:
define('WP_MEMORY_LIMIT', '128M');
Ask your host if you can exceed this limit.
Regards,
Ismael
The WP Installation runs already on 256M
Try following – open up /wp-content/themes/enfold/framework/php/class-framework-widgets.php and replace
$twittercount = wp_remote_get( 'https://twitter.com/users/'.$twitter );
if (!is_wp_error($twittercount))
with
$twittercount = '';
if (!is_wp_error($twittercount) && !empty($twittercount) )
I guess Twitter removed the old api completely now and the twitter follower count doesn’t work anymore. We’ll fix this in the next update.