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 Memory limit not increasing

Try to create .user.ini file in root and put below code upload_max_filesize = 500M post_max_size = 256M memory_limit = 500M max_execution_time = 300 max_input_vars = 500M Try and let me know if any query. Hope it will help!

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

How do I access cPanel features within WordPress?

I do not believe there are any plugins specifically catered to cPanel, however there are a few plugins which will allow you to add an iFrame to your admin pages. I have not used any of these, and agree with the other commenter (Chip) who mentioned that it may pose a security risk. With that … Read more