Why the backups are not created on the windows server?
If site which is using this plugin is located on the windows server with Fast CGI it is a possible you'll be needed to change config settings, the activityTimeout exacyly:
- Find C:\Windows\System32\inetsrv\config\ applicationHost.config file
- Create the copy of this file
- Open the original (or use window+R->inetmgr)
- Find and change the activityTimeout to 80 (or more if it's possible in the server configuration of yours). It should be something like in this example:
<fastCgi>
<application fullPath = "C:\php\php-cgi.exe" arguments = ""
monitorChangesTo = "" stderrMode = "ReturnStdErrIn500" maxInstances = "4"
idleTimeout = "300" activityTimeout = "80" requestTimeout = "1000"
instanceMaxRequests = "10000" protocol = "NamedPipe" queueLength = "1000"
flushNamedPipe = "false" rapidFailsPerMinute = "10">
<environmentVariables>
<environmentVariable name="PHP_MAX_REQUESTS" value="5000" />
</environmentVariables>
</application>
</fastCgi>