WordPress “Add Media” button not working on 3.5 Fix

Though we have upgraded many sites to 3.5, this is the first time we have run into the problem of the “Add Media” button not working. When you click on it, nothing happens at all. But, don’t worry because there is a fix and it is very simple.

You need to open your “wp-config.php” file in the root of your WordPress Install. You can do this with an FTP program or a file manager from your hosting company.

Search for this line — it was near the bottom for us on the site we had an issue with.

/** Sets up WordPress vars and included files. */
require_once(ABSPATH . ‘wp-settings.php’);

And just before it add this code:

define(‘CONCATENATE_SCRIPTS’, false );

So the final version now looks like:

/** Sets up WordPress vars and included files. */
define(‘CONCATENATE_SCRIPTS’, false );
require_once(ABSPATH . ‘wp-settings.php’);

Now your “Add Media” button should be working again.

Testing out DISQUS

By Dave Fogel | March 12, 2010

I am testing out the DISQUS (pronounced DISCUSS) commenting system for WordPress.

Converting a site to WordPress

By Dave Fogel | March 3, 2010

So over the last two week, I have spend my free time converting my site over to WordPress. There are several reasons for this. First, I really like the ability to add plug-ins to my site. I also love how easy it is to add new pages and manage the site. There are also the…

Ten tips for passing the new Google Advertising Fundamentals Exam

By Dave Fogel | February 28, 2010

So, you have decided that it is time to finally take the test. What you might not know is that Google JUST changed over to a brand new test. Gone are the days of testing through Prometric. Google now has you download a browser to use that you must take the test with. Now, I…

Posted in

Dave Fogel

Leave a Comment