In the folder /wp-content/uploads of your WordPress installation, BackWPup creates temporary directories for files, which are only needed while a job is running. You can choose another folder for the temporary directories.
For this, you need write access to your wp-config.php, which can generally be found in the root directory of your WordPress installation.
- Ouvrez le wp-config.php ouvrez le fichier et recherchez la ligne
if ( !defined('ABSPATH') ). - Ajoutez cette ligne avant celui de l'étape 1 :
define( 'WP_TEMP_DIR', '/absolute/path/to/wp/your/temp-dir' ); - Remplacer
/absolute/path/to/wp/with the absolute path of your WordPress installation andyour/temp-diren indiquant le chemin d'accès à votre nouveau dossier temporaire. - Enregistrez le fichier.