Quote Originally Posted by paulm View Post
Hi Skip, thanks for this great mod. I do have an issue when using it though (similar or the same as mentioned above?).

Depending on my selection some backups succeed and some don't. Whenever I try to backup everything I get the internal server error message, and the following message appears in the server log:

After viewing this log I tried another backup and recorded the time, and after 40 seconds I got the internal server error.

So I guess the problem/solution lies at the host?
What is happening is that you are requesting more resources then php can give you.
Not all hosts will allow php settings in your htaccess file but if yours allows it add this code to it.

Code:
php_value max_execution_time 200
php_value mysql.connect_timeout 240
php_value memory_limit 128M
If not ask your host to set it in php for you.

Skip