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.
Once my new website is live, how do I get on Google?
After your website is live, we will submit your website to be crawled or indexed by Google. You will see it appear typically in a few weeks. If you are looking to get on the first page of Google, you will need search engine optimization.
What is involved in selling things online? (e-commerce)
There are many options out there for e-commerce websites. WordPress/WooCommerce, Shopify, 3d Cart, Big Commerce, and many more. We have experience working with the most popular ones. They all have their advantages and disadvantages. While WooCommerce is free to download, there are many paid add-ons required to start selling products online. You will need a…
What about Website Hosting?
When you have a website, it needs to live somewhere on the web – this is what website hosting is. Website hosting can range anywhere from $3 a month to $99+. Not all website hosting is created equal. Budget hosting plans from places like Hostgator or Go Daddy get the job done … barely. You…