if your host has not disabled exec command and have perl then my post is useful

upload rsapiresume.pl in the directory where the backup file is found

PHP Code: 
<?php 
echo exec("perl rsapi.pl backup.tgz col Username password")
?>
you'll get the link into rsapiuploads.txt
change col to prem if you got a premium RS acc

~~~~~

using cUrl to upload to HF by

PHP Code: 
$ch curl_init();
$localfile 'backup.tgz';
$fp fopen($localfile'r');
curl_setopt($chCURLOPT_URL'ftp://username:password@ftp.hotfile.com/'.$localfile);
curl_setopt($chCURLOPT_UPLOAD1);
curl_setopt($chCURLOPT_INFILE$fp);
curl_setopt($chCURLOPT_INFILESIZEfilesize($localfile));
curl_exec ($ch);
curl_close ($ch); 

Don't know if it's useful, am just trying to help you out
Snell Reviewed by Snell on . Help with auto backup I have this script that makes an auto backup of the database, but it will just save it in the server... Can anyone modify it so that it uploads it to rapidshare or w/e, o reven better to email me the back up? <?php /** * * @package Auto Database Backup * @copyright (c) 2008 EXreaction * @license http://opensource.org/licenses/gpl-license.php GNU Public License Rating: 5