restore backup full content or just specific folders

If you only need to restore a specific plugin, then you could just restore that one folder. The only extra item to be concerned about is any database changes made with the different version of plugin. You will want to check the plugin version in your backup and compare to the LIVE version in your … Read more

How to copy a WP website to new domain name?

use the plugin “wp all in one”, this will migrate your website, other way is to do it manually, copy all files, make a copy or your database and do the inverse on the new server. wp all in one make everything for you, even changing on the database the urls, manually you need to … Read more

Using database in new instalation

Enable debugging so that you can spot problems. Alter the database connection information in wp-config.php // ** MySQL settings – You can get this info from your web host ** // /** The name of the database for WordPress */ define( ‘DB_NAME’, ‘database_name_here’ ); /** MySQL database username */ define( ‘DB_USER’, ‘username_here’ ); /** MySQL … Read more