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.
Google Warning To Non-Mobile Friendly Web Sites
Today one of the sites we work with got a message in their Google Webmaster Tools. The message titled “Fix mobile usability issues found on yoursite.com” basically informs the site own that because “These pages will not be seen as mobile-friendly by Google Search, and will therefore be displayed and ranked appropriately for smartphone users.”…
Google losing market share
Recently posted in the Wall Street Journal, Market researcher Statcounter says Google’s share of U.S. search traffic, excluding mobile devices, declined to 75.3% in December from 77.5% in November, after the maker of the Firefox browser made Yahoo the default search engine. Yahoo YHOO -1.05%’s share of search traffic excluding mobile devices grew to 10%,…
Can good links solve Penguin Problems
In a recent video hangout with Google’s John Mueller, John said that even without using the disavow file or removing bad links, it is possible to recover from a Google Penguin Penalty. So instead of going through all the trouble of removing bad links and creating a disavow file, Google is saying adding good links…