This is the standard upgrade method for AWS Linux AMI’s:
1
2
yum clean all
yum update bash
Or use this for the version 2012.09, 2012.03, or 2011.09 repositories:
1
2
yum clean all
yum--releasever=2013.03update bash
For older AWS Linux AMI’s, you may not be able to use the standard upgrade method as described in this link: https://alas.aws.amazon.com/ALAS-2014-419.html These are the steps needed to manually patch bash 4.1: […]
Edit the wp-config.php file in the root of your WordPress Install. Search for this line: require_once(ABSPATH . ‘wp-settings.php’); Just before it add this line: define(‘CONCATENATE_SCRIPTS’, false ); Save, exit and refresh the page in your browser. It would also be a good idea to empty your browser cache. Original Post: http://www.carnfieldwebdesign.co.uk/blog/wordpress-fix-add-media-button-not-working/
I kept getting this error in my Safari JS console: Failed to load resource: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error -10.) I found that there was an open bug for jQuery UI 1.8.12 for this, so I reverted to 1.8.11 and the problem went away.
Can you believe it? We tripped over a bug in Perl 5.10 and Data::Dumper. [code]Assertion ((buffer)->sv_flags & 0x00000400) failed: file "sv.c", line 1859 at /usr/local/lib/perl5/5.10.1/mach/Data/Dumper.pm line 190.[/code] Jeremy found the following: Link to patched sv.h “This was caused by change 27323/f7877b281b4, which changes the way globs are stored in SVs. This patch teaches Perl_magic_setmglob (which […]