How should the perfect wordpress blog backup be done?

4

I've been looking for some time on the internet how to backup the theme I'm developing in wordpress and database .

I use xampp and banco de dados in phpMyAdmin .

I've found several tutorials, but I'm not feeling secure in these tutorials, because I want a full backup , with all the plugins settings and everything else saved, so if one day I have one problem on the site and I lose everything, I can get the latest version of the backup and just put it back in the air again. Without much effort to look for all the plugins, make all the settings all over again, because although I got a theme ready, I changed a lot in it directly in php.

When I say perfect backup, I say everything from the database, plugins, posts, created pages, theme settings, plugins settings ...

NOTE: I'm using the Oblique theme, follow the link: link

How should this mode be backed up? It's possible? If so, please tell me what tools I can use and how to implement them?

    
asked by anonymous 20.12.2015 / 00:53

1 answer

2

A "full backup" of WordPress can be accomplished by saving the following data:

  • Database: Information about your posts, pages, system settings, and some plugins and themes.
  • Directory Files: All files that usually come in the default installation of WordPress (which as you reported, should have modified) and also the directory of themes and plugins.

To perform a database backup, phpMyAdmin is a good alternative as it performs the extraction without having much knowledge in SQL . For files, any copy via FTP ensures that your data is secure locally.

If you're dealing with more than one site, and find this process cumbersome, I recommend using a management platform, such as InfiniteWP . or ManageWP , for example. Both facilitate this process of Backing Up Websites for a quick restore.

    
21.12.2015 / 14:29