Error establishing a database connection in godaddy.com

Did you change http://localhost to http://yoursite.com in your .sql file Also ,check your client website database in phpmyadmin ,upload .sql file to it and also make sure your localhost databse have same prefix as your client ,generally it is wp_ but if different change it . connect to your client website through FTP and upload … Read more

Download a zip folder of selected files

remove the brackets from your name=”checked” It should just be <input type=”checkbox” name=”checked” value=”<?php echo $path; ?>”> Which would only return one value, so you cant do a foreach loop on one value. You need multiple input fields and then put those values into an array to use in the foreach loop

WordPress site causing lots of server IO

1) Try WordPress › WPDB Profiling « WordPress Plugins to see what is running all the queries. 2) Clearing post and page revisions will greatly reduce the size of a WP database – up to 90% in some cases – with a huge return in speed and lower server load. Run as SQL query in … Read more