Hi,
Do you have a solution for simple BackWPup without cron ?
I tried to add
”
RewriteEngine On
RewriteRule * – [E = noabort: 1].
RewriteRule * – [E = noconntimeout: 1].
”
to my .htacess but I think there is a conflict with others instructions. My .htacess is now:
”
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.mywebsite.fr/$1 [R=301,L]
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
”
Thank you