Hallo @elsoar
Currently, most popular free WordPress backup plugins, like UpdraftPlus and BackWPup, only support backing up the WordPress directory and database, without allowing you to include folders outside the WordPress installation directory (such as public_html/anotherfolder
). Typically, adding external folders to a backup is considered an advanced feature, which is why it is often included only in premium versions of backup plugins.
However, if you’re looking for a free solution, there are a couple of approaches you could try:
1. Custom Script and Backup Plugin Combination
- You can create a custom backup script to zip the folder
public_html/anotherfolder
and store it in a directory inside your WordPress installation (e.g., public_html/wp-content/uploads/backup/
).
- Once that folder is within the WordPress directory, use a free plugin like UpdraftPlus (free version) or BackWPup to back up the entire WordPress directory, which will now include your custom folder.
2. Manual Inclusion Using cPanel/Hosting Backup
- Some hosting providers offer built-in backup solutions that allow you to specify which folders you want to back up. You could manually include both the
public_html/anotherfolder
directory and the WordPress folder in those backups.
While these options may require manual setup or workarounds, they could help you achieve the goal without purchasing a premium backup plugin.
If you specifically need a WordPress plugin that directly handles this feature for free, it is unlikely such a plugin exists with the required level of flexibility.