How to e-mail yourself an automatic backup of your MySQL database table with PHP
First published on July 5, 2006
This script will send an e-mail to you with an .sql file attached, thus enabling you to back up specific tables easily. If you have a database-driven site, your mysql info is what is most valuable to you! You could even set up an e-mail account just to receive these backups…
First of all, this script works best if you place it in a non-web accessible folder and run a daily cron job on it. Cron is a server “tool” that can run scripts regularly or at specified times (thus you don’t need to call them in your browser). I used to be scared of cron but it’s really easy. Here are two tutorials if you are interested Cron Tutorial 1 … Cron Tutorial 2. If you have cPanel on your server it’s even easier (see here).
The code is below, and requires the Pear Mime and Pear Mail packages. If you want to download everything at once, I have provided a zip file at the end of this post.
Known limitations of this script: if you have a big database table over 2mb, you will probably run into php timeouts and php mail attachment limits. Check this comment for information about compressing the backup file before sending or storing it.
<?php // Create the mysql backup file // edit this section $dbhost = "yourhost"; // usually localhost $dbuser = "yourusername"; $dbpass = "yourpassword"; $dbname = "yourdb"; $sendto = "Webmaster <[email protected]>"; $sendfrom = "Automated Backup <[email protected]>"; $sendsubject = "Daily Mysql Backup"; $bodyofemail = "Here is the daily backup."; // don't need to edit below this section $backupfile = $dbname . date("Y-m-d") . '.sql'; system("mysqldump -h $dbhost -u $dbuser -p$dbpass $dbname > $backupfile"); // Mail the file include( 'Mail.php' ); include( 'Mail/mime.php' ); $message = new Mail_mime(); $text = "$bodyofemail"; $message->setTXTBody( $text ); $message->AddAttachment( $backupfile ); $body = $message->get(); $extraheaders = array( "From"=> $sendfrom, "Subject"=> $sendsubject ); $headers = $message->headers( $extraheaders ); $mail = Mail::factory( "mail" ); $mail->send( $sendto, $headers, $body ); // Delete the file from your server unlink($backupfile); ?>
Download Peter’s automatic mysql backup tool (in the zip file, backup.php is the file you need to execute).
March 25th, 2008 at 1:13 am
Omid says:
Does it work with big databases?
March 25th, 2008 at 8:30 am
Peter says:
Hi Omid, I think it depends on your server setup. So far this blog's database is at 3.5mb and the automatic backup seems to be working. However, I have not tested it with bigger databases.
September 5th, 2008 at 3:17 am
newmorning says:
I’ve had some hard work to add Pear and Mime : you may add them to your archive for those who can’t access to server configuration.
What’s more, I was scared that data wasn’t droped : actually the tables come into one single line per table ! (coma separated values).
I tryed to import dump just as it was on a local server : no problem at all, this is great, many thanks !
September 5th, 2008 at 10:52 am
Peter says:
Hi newmorning, I’m glad it helped you! I should note that I have since added one more step to my own backup process — I compress the file before storing and e-mailing it. This cuts the size of the DB backup by almost 75%. I replaced the two lines below "don’t need to edit below this section" with this:
$backupfile = $dbname . date("Y-m-d") . ‘.sql';
$backupzip = $backupfile . ‘.tar.gz';
system("mysqldump -h $dbhost -u $dbuser -p$dbpass $dbname > $backupfile");
system("tar -czvf $backupzip $backupfile");
You would also need to tweak the line that adds the attachment:
$message->AddAttachment($backupzip);
Then, at the bottom you have to also delete the compressed file as well:
unlink($backupzip);
September 5th, 2008 at 11:49 am
newmorning says:
Well, I’ve just tried this improvement, and I’m afraid my configuration does not permit it : the backup comes just as before with the whole SQL, which is quite big !
Any idea why this should not work ?
September 5th, 2008 at 12:01 pm
Peter says:
Since the "mysqldump" command works, then it’s probably not an issue with PHP being allowed to run shell commands. It’s either an issue of "tar" not being available (or that the full path to the tar utility needs to be entered). That, or, I’d forgotten that you need to also modify the part where it adds the attachment to use the compressed file
$message->AddAttachment($backupzip);
September 5th, 2008 at 12:12 pm
newmorning says:
YES ! That was it, brilliant
Anything similar to mail the whole folder and subfolders in a compress archive ? It could be helpful since some CMS, forums and wikis use" flat" FTP text files instead of MySQL database…
September 5th, 2008 at 12:25 pm
Peter says:
Erm, that is certainly possible — you’ll just have to look up the syntax and usage instructions for the "tar" command. You could also look into SVN if you want to have version control for larger amounts of files. Or, Dropbox if you’re adventurous and have full access to your server.
September 5th, 2008 at 1:00 pm
newmorning says:
trouble is precisely that I don’t have full access : this is why your code is precious, trouhg webcron.org to execute it every day.
I wish I’d find the equivalent for files since I don’t know enough of php to do it myself.
September 26th, 2008 at 5:16 am
Cuong says:
Dear Peter,
Thank you in advance for that great script.
I have got one trouble, when I run backup.php. The out put error like this:
——————–
Warning: require_once(pear.php) [function.require-once]: failed to open stream: No such file or directory in /home2/cuong/public_html/absql/Mail.php on line 21
Fatal error: require_once() [function.require]: Failed opening required ‘pear.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home2/cuong/public_html/absql/Mail.php on line 21
———-
I opened Mail.php and I saw:
———-
require_once ‘PEAR.php';
———-
Does it mean that my host doesnot support "PEAR"
Sorry I am newbie.
September 26th, 2008 at 2:06 pm
Peter says:
Hi Cuong, I’m not completely sure how to solve that. It has to do with your system not having PEAR installed or it is not where it should be. I’ll have to defer to others (maybe "newmorning" knows what to do) for more precise instructions.
September 27th, 2008 at 1:43 am
newmorning says:
Install Pear in your backup folder OR trie this : http://www.commentcamarche.net/forum/affich-8578881-php-un-mail-qui-veut-pas-venir
September 29th, 2008 at 2:32 am
Cuong says:
@Peter
@newmorning
Thank you very much for responding. Maybe I will try to install pear.
Have a nice day.
January 3rd, 2009 at 9:26 am
J says:
mysqlhotcopy executes faster :>
February 25th, 2009 at 8:58 am
William says:
Juste, clair, net, précis, fonctionnel et utile.
Que dire de plus?
Ah oui!! Mille merci
William
March 15th, 2009 at 5:33 pm
Matt says:
I’ve got everything working, as far as I can tell, but all the attachments sent to the email are only 1kb/empty. Any suggestions as to what I might be doing wrong?
Thanks!
Reply from Peter: Unfortunately, I don’t see an obvious solution. I would break it down by first making sure the backup SQL file is being generated, then test file compression if you are using that, then test e-mails on their own, then test e-mails with small attachments, then put it all together.
March 16th, 2009 at 4:41 am
Basti says:
Hi,
thanks for that script…
I only get Emails with an attached file called "noname" without extension.
This file is not the mysql-database, it seems to contain it, because its size is similar to my database.
This is the beginning of my file
boundary="=_b93bc378af2ddbeabe770c611c3fb955"
Message-Id: <[email protected]>
Date: Mon, 16 Mar 2009 13:24:21 +0100 (CET)
–=_b93bc378af2ddbeabe770c611c3fb955
Content-Transfer-Encoding: 7bit
Content-Type: text/plain; charset="ISO-8859-1"
Here is the daily backup.
–=_b93bc378af2ddbeabe770c611c3fb955
Content-Transfer-Encoding: base64
Content-Type: application/octet-stream;
name="xxxxeeb12dd009-03-16.sql";
Content-Disposition: attachment;
filename="xxxxxx.sql";
LS0gTXlTUUwgZHVtcCAxMC4xMQotLQotLSBIb3N0OiBsb2NhbGhvc3QgICAgRGF0YWJhc2U6IGQw
Thanks for help.
Reply from Peter: Could be some sort of mail encoding issue, but I am no expert here.
March 16th, 2009 at 7:44 am
DanoNH says:
Hi folks, Good comments and such…
After reading through this page, I wanted to share a great WordPress plugin that I use: WP-DBManager.
This plugin lets you:
While it doesn’t have the granular abilities of phpMyAdmin, it is a clean, easy to use interface.
Just wanted to share with my fellow WordPress administrators out there.
-Dan
May 22nd, 2009 at 1:50 pm
Joel Cornuz says:
Hi guys,
I don’t know if this could be of interest, but I modified the script so it takes an array of database(s) instead of just one. So you can backup several databases in one go (1 tar.gz file with several .sql ones). See code here.
November 12th, 2009 at 12:10 am
kaiz says:
well, we can change the email attachment size from 2mb to the size we want in the php.ini file. i think it is possible to do it.
Thanks.
December 26th, 2009 at 6:06 am
Simon says:
I had a problem with your compression method so I did a bit of scratching around and came up with the following method which is only a minor alteration to your original script:
// don’t need to edit below this section
$backupfile = $dbname . date("Y-m-d") . ‘.sql.gz';
system("mysqldump -h $dbhost -u $dbuser -p$dbpass $dbname | gzip > $backupfile");
December 26th, 2009 at 9:09 am
Simon says:
I have struck a problem on another server. The first server worked beautifully. The second server returns an email with the attachment displayed as scrambled text in the body of the email.
Anybody had a similar problem? Is it a server mail config issue?
January 14th, 2010 at 5:48 am
Brian says:
It sends me a blank notepad attachment.
Any suggestions??
Reply from Peter: You might not have permission to run the command or you might have input the wrong database information. If you don’t have access to the command line and want to find out what specific error is being returned, see this comment.
June 7th, 2010 at 7:12 pm
Zach says:
Here’s a version of the backup.php that just creates a compressed backup file in whatever folder it’s in. It is completely independent and doesn’t use any of the other files.
<?php
// Inspired by tutorials: http://www.phpfreaks.com/tutorials/130/6.php
// http://www.vbulletin.com/forum/archive/index.php/t-113143.html
// http://hudzilla.org
// Create the mysql backup file
// edit this section
ini_set("memory_limit","40M");
$dbhost = ""; // usually localhost
$dbuser = "";
$dbpass = "";
$dbname = "";
// don’t need to edit below this section
$backupfile = $dbname . date("Y-m-d") . ‘.sql';
$backupzip = $backupfile . ‘.tar.gz';
system("mysqldump -h $dbhost -u $dbuser -p$dbpass $dbname > $backupfile");
system("tar -czvf $backupzip $backupfile");
// Delete the unzipped file from your server
unlink($backupfile);
?>
June 18th, 2010 at 4:25 pm
CK says:
Nice tool, thanks a lot.
July 1st, 2010 at 12:07 am
Jegan says:
hi,
i got an warning message when i try to run it on my windows server. Also i got the mail only with out any attachments…
The warning message is
"PHP Warning: system() [function.system]: Unable to fork [mysqldump -h XXXXXXXXX -u XXXX -p XXXX fancy > fancy2010-07-01.sql] in G:\Domains\XXX\wwwroot\db\maildb.php on line 15 PHP Warning: unlink(fancy2010-07-01.sql) [function.unlink]: No such file or directory in G:\Domains\XXX\wwwroot\db\maildb.php on line 33"
Please help me in this its urgent….
Reply from Peter: Your host might not allow the “system” PHP function. See my answer below to “volt” for some alternatives.
July 1st, 2010 at 8:38 am
volt says:
My host disables access to the system function. Is there another way to make this work?
Reply from Peter: You could try a plugin such as this one or write some PHP and MySQL to loop through every table, instead of using the mysqldump command. Or you could look into a service such as VaultPress.
July 6th, 2010 at 12:10 am
agile says:
where are the mail.php and mail/mime.php files exits?
Reply from Peter: They’re from the PEAR Mail (http://pear.php.net/package/Mail/) and Mime (http://pear.php.net/package/Mail_Mime/download) packages.
July 21st, 2010 at 2:21 pm
freddo says:
thx…
October 28th, 2010 at 1:22 pm
David Ryder says:
works perfectly. well done and thanks! If this helps anybody the actual cron command I used (using cPanel on hostgator shared) is:
php /home/[my_account_name]/petermysqlbackup/backup.php
January 24th, 2011 at 11:22 am
dan-ll says:
try this to sort out the output file, just add
–skip-extended-insert
this will take a new line of each record in each table, hence not all in one unreadable and trucated line.
eg.
system("mysqldump –skip-extended-insert -h $dbhost -u $dbuser -p$dbpass $dbname > $backupfile");
if that don’t work
try
–skip-opt
eg
system("mysqldump –skip-opt -h $dbhost -u $dbuser -p$dbpass $dbname > $backupfile");
February 19th, 2011 at 7:30 pm
Greg says:
Is there some way to make this script export a .xls file instead of .sql?
Reply from Peter: You’d have to write your own code to transform the database information into an .xls structure, but there is likely public code somewhere.
March 4th, 2011 at 12:33 am
krlos says:
i write in my comand of cron jobs :
/ home / [my_account_name] / petermysqlbackup / backup.php
but the message I get is a file. sql is blank (0.0 kb)
Sorry for my english. I no speak english
March 4th, 2011 at 12:38 am
krlos says:
help me please!!!!
my .sql is blank for this error
Warning: mysqldump: Option ‘–set-variable’ is deprecated. Use –variable-name=value instead.
mysqldump: Got error: 1045: Access denied for user ‘odontolo_dental’@’localhost’ (using password: YES) when trying to connect
X-Powered-By: PHP/5.2.14
Content-type: text/html
May 16th, 2011 at 1:01 pm
sourav kumar kar says:
i want to automatically backup in 1 hours interval.. means in 1 hours interval backup & sent to main after then 1 Hours backup n send to mail.. plz help me….thanks to all the poster …
Reply from Peter: A cron job should do that. Check the links in the post for more information on cron jobs.
May 17th, 2011 at 4:07 pm
Stephen says:
Anyone who is getting a blank sql file as an attachment, you either have the username, password, or host incorrect. For example, I was using "localhost" for host which I discovered to be incorrect. I am using GoDadddy and they requires a very specific host name for my connection. I fixed the problem and the script started working.
July 13th, 2011 at 4:17 am
Henri says:
Works like the train toilet! Thanks, I use it with cron job and now it backups my and my customers db hourly.
July 27th, 2011 at 1:02 am
Brian says:
Just wanted to say I found you through a Google search via Noupe.com. Your script works like a charm and gave me enough of a head start to customize and update for my own purposes. I’m glad you called out the Pear Mime and Pear Mail dependencies. Fortunately for me, Hostgator has those installed by default.
I’ve got the script setup to backup a number of WordPress databases. The backups are e-mailed to a Backup account, and if everything is successful, I get an e-mail in my inbox telling me that the backup was performed successfully.
Thanks for sharing. I really appreciate your contribution, and it’s still valid 5 years hence.
October 18th, 2011 at 2:40 pm
Alejandro Arauz says:
I had some errors runing the scritpt due to insufficient privileges on the server but I found this tool MySQLBackupFTP (http://mysqlbackupftp.com). The free version allows you to send the compressed bakups to a remote FTP server and can also send notifications to your email.
The good thing about the tool is that unlike the script you can change the timeout settings for big databases.
November 16th, 2011 at 4:59 am
Thomas says:
Is there a way to exclude a specific table from the export. For example i have a table called ‘file’ which is about 95% of the db but doesn’t contain any data I would need backed up. Can we exclude this?
Reply from Peter: Yes, the mysqldump command supports: –ignore-table=db_name.tbl_name
February 17th, 2012 at 5:45 am
Jesean says:
This works perfectly but cant we make this more elegant …. ?
can’t we store the database on the server it self and protect the compressed file with a password and then email the URL to the File + Password to the user
further more , we could add a login system and create a list view thingy to view the backups if needed
Thanks
April 5th, 2012 at 8:14 am
Johnny says:
if you have big sql file just follow this comment
http://www.theblog.ca/mysql-email-backup#comment-9819
then edit php.ini
max post, max upload to number larger then your sql file. and memory limit as high as possible (mine 2000MB)
if you have problem with cront job , you can read this comment:
http://www.theblog.ca/mysql-email-backup#comment-14676
April 18th, 2012 at 7:33 am
Mike S says:
This script works great, and very easy to use. Works great as is. Thanks. One thing though, I have a database with 7 tables in it, and I only want to back up 1 table with a cron job. How can I modify the script not to send me all 7 tables, but 1 table and in a csv file? I think I have the csv part licked; just having trouble isolating the single table.
I see the comment above for ignore table command, but I want to ignore multiple tables, and just export the one table in the db. I can’t seem to get it to work that way. Any ideas or help is super appreciated!
May 28th, 2012 at 10:52 pm
Bahadur says:
Hi Sir,
i want to email mysql database to a rediffmail id.
My questions are
1. Can i use your script for it?
2. Where should i place your script? should i create a button in a page or anytyhing else?
Reply from Peter: Yes, you should be able to use any e-mail provider. Typically the script is run via a cronjob or manually on the command line.
August 13th, 2012 at 3:55 am
LT says:
For those of you getting a blank email i.e. no text in the body or no attachment. Make sure your db password is not longer that 12 characters AND does not contain any variables such as a dollar sign.
Substitute an easy password and see if this corrects the problem. If it does, experiment with harder passwords until you get what you need.
I have done this and it works. Now I get an email with no body and an attachment that is the database. The attachment is labeled "noname" and has no file extension.
If anyone knows how to correct this do tell.
September 5th, 2012 at 8:44 am
Paul says:
Nice post. php / sql dump commands helpful. thanks for sharing!
October 22nd, 2012 at 2:51 am
RainS says:
Nothing happened. Missing Pear.php
January 15th, 2013 at 3:22 pm
Kelson says:
Used this and after some finagling I got it to work – IE – I get an approval message that nothing failed, but my email comes through with no attachment. When I take off the mail send function, the mysqldump function still doesn’t work. Using IIS, not apache, could this be the issue?
January 29th, 2013 at 5:24 am
raghava says:
Please give me solution for this errors.
1) Deprecated: Assigning the return value of new by reference is deprecated in C:\wamp\www\payrolv1\example\backup mail\Mail.php on line 134
2) Warning: require_once(PEAR.php): failed to open stream: No such file or directory in C:\wamp\www\payrolv1\example\backup mail\Mail.php on line 21.
3) Fatal error: require_once(): Failed opening required ‘PEAR.php’ (include_path=’.;C:\php\pear’) in C:\wamp\www\payrolv1\example\backup mail\Mail.php on line 21
January 31st, 2013 at 4:00 pm
Sunny says:
I Installed the script and everything seems to be working fine except the attached file. Its attaches a blank file with 0Bytes. Has anyone else encountered the same problem? What kind of permission do you all allow for the DB USER?
February 21st, 2013 at 4:53 pm
Paul Sijpkes says:
Hi and thanks for this great script.
I just found a small detail that might save some headaches for other users. If you’ve got a super-secure password with weird characters in it then you’ll need to put it in quotes before calling the system() command. Here’s my updated code:
$backupfile = $dbname . date("Y-m-d") . ".sql";
$backupzip = "$backupfile.tar.gz";
system("mysqldump -h $dbhost -u $dbuser -p\"$dbpass\" $dbname > $backupfile");
system("tar -czvf $backupzip $backupfile");
April 16th, 2013 at 2:43 am
lokilust says:
Can you add a part that says email has been sent ?
August 30th, 2013 at 9:45 pm
Brad says:
What is the format for to have the sql sent to two email addresses?
$sendto = "Webmaster <[email protected]>";
somthing like: $sendto = "Webmaster <[email protected]>,<[email protected]>";
Reply from Peter: You should be able to separate the recipients by commas or use an array. For more information, check out the Pear Mail documentation
October 15th, 2014 at 9:12 pm
rodrigo says:
THE DUMP FILE STORES IN ANY DIRECTORY OF WINDOWS??? HOW CAN I FIND IT??
December 23rd, 2014 at 9:12 pm
Kumar says:
Hi
I am unable to get proper sql file, it is just sending a 152b file at the place of a 1 MB file. I have tested the script in CORN jobs and in browser too. Details are as below:
I am using following command in corn job – ‘php /home/[My Username]/petermysqlbackup/backup.php’
I am getting following text in mail sent after the CORN job completion:
sh: }mfH^o: command not found
X-Powered-By: PHP/5.2.17
Content-type: text/html
Usage: mysqldump [OPTIONS] database [tables]
OR mysqldump [OPTIONS] –databases [OPTIONS] DB1 [DB2 DB3...]
OR mysqldump [OPTIONS] –all-databases [OPTIONS]
For more options, use mysqldump –help
———————————————————
When the same script is executed in browser then I get the following echo
Usage: mysqldump [OPTIONS] database [tables] OR mysqldump [OPTIONS] –databases [OPTIONS] DB1 [DB2 DB3...] OR mysqldump [OPTIONS] –all-databases [OPTIONS] For more options, use mysqldump –help
———————————————————————-
Please suggest where i am wrong
March 19th, 2015 at 11:04 am
Fabio says:
Works well and creates the file in the directory but not absolutely sends the e-mail . Why?
May 16th, 2015 at 8:34 am
Olivier Dauxais says:
Hi Peter,
Thank you for your info and zip file that I downloaded.
I looked at it and I see so 100 of lines of codes.
You created your zip file about 10 years ago by now.
Would you have a newer and more simple version of code to propose?
Would you mind answering me to my email that I gave while filling this form?
You can find my email at the bottom of the front page of my site: www.olivierdauxais.fr
Best regards.
H Olivier Dauxais.
Reply from Peter: I do not have anything different to propose, although there are new mail libraries that you could probably swap in.
July 25th, 2015 at 1:58 pm
Brett says:
Hi,
Thanks a lot for the information. However when I try to run the script I get the error below.
"mysqldump: Can’t read dir of ‘/etc/my.cnf.d’ (Errcode: 2)
Fatal error in defaults handling. Program aborted"
Any idea what I should do?
Thanks
Reply from Peter: I suggest asking your web host to enable the “mysqldump” command for your account.
August 25th, 2015 at 9:53 am
Ian Haney says:
Hi
I have just started to use this script to backup my clients database and works perfect but have a few questions if ok, I ma using the compressed coding version
1) Is it possible that the DB backup is not stored on the FTP server in the directory and just have it emailed to me
Yes, possible; you’d need to simply remove the file after it’s been sent
2) Is it possible to backup more than one database using this script that has different database hosts, usernames and passwords?
Yes — just duplicate that part of the code or run a loop.
3) For some reason the email I receive with the attached compressed Database is being sent twice?
Not obvious why
Thank you in advance
Kind regards
Ian
August 26th, 2015 at 9:46 am
Ian Haney says:
Hi
Just a update, it works perfect now, the code I have is below
<?php
// Create the mysql backup file
// edit this section
//first database to backup
$dbhost = "hostone"; // usually localhost
$dbuser = "dbusername";
$dbpass = "dbpassword";
$dbname = "dbname";
//second databasr to backup
$dbhost2 = "dbhosttwo"; // usually localhost
$dbuser2 = "dbusernametwo";
$dbpass2 = "dbpasswordtwo";
$dbname2 = "dbnametwo";
$sendto = "Webmaster <[email protected]>";
$sendfrom = "Automated Backup <[email protected]>";
$sendsubject = "Daily Mysql Backups";
$bodyofemail = "Here is the daily backup of Databases.";
// don’t need to edit below this section
$backupfile = $dbname . date("d-m-Y") . ‘epg.sql';
$backupfile2 = $dbname2 . date("d-m-Y") . ‘shf.sql';
$backupzip = $backupfile . ‘epg.tar.gz';
$backupzip2 = $backupfile2 . ‘shf.tar.gz';
system("mysqldump -h $dbhost -u $dbuser -p$dbpass $dbname > $backupfile");
system("mysqldump -h $dbhos2t -u $dbuser2 -p$dbpass2 $dbname2 > $backupfile2");
system("tar -czvf $backupzip $backupfile");
system("tar -czvf $backupzip2 $backupfile2");
// Mail the file
include( ‘Mail.php’ );
include( ‘Mail/mime.php’ );
$message = new Mail_mime();
$text = "$bodyofemail";
$message->setTXTBody( $text );
$message->AddAttachment($backupzip);
$message->AddAttachment($backupzip2);
$body = $message->get();
$extraheaders = array( "From"=> $sendfrom, "Subject"=> $sendsubject );
$headers = $message->headers( $extraheaders );
$mail = Mail::factory( "mail" );
$mail->send( $sendto, $headers, $body );
// Delete the file from your server
unlink($backupzip);
unlink($backupzip2);
?>
June 30th, 2016 at 2:16 am
ruth test says:
Hi
great script, but I have concerns about sending the compressed sql file via email as it may contain sensitive information, in case the email should get intercepted.
Is it safer to save in ftp folder? And how do I do this please?
thanks in advance
Ruth
September 11th, 2016 at 10:47 pm
Huzan says:
Hi,
When I run the cron it says the password on the command line interface can be insure. Could you please help.
August 29th, 2019 at 12:54 am
Soumya Naskar says:
I found the below error. Please suggest anyone what I will do know? It’s my first cornjob lesson.
PHP Warning: date(): Invalid date.timezone value ‘n/a’, we selected the timezone ‘UTC’ for now. in /home/xxxxxx/domains/xxxxxxx.com/public_html/backup.php on line 19
mysqldump: [Warning] Using a password on the command line interface can be insecure.
PHP Warning: require_once(Mail/mimePart.php): failed to open stream: No such file or directory in /home/xxxxxx/domains/xxxxxxx.com/public_html/Mail/mime.php on line 41
PHP Fatal error: require_once(): Failed opening required ‘Mail/mimePart.php’ (include_path=’.:/usr/local/lib/php’) in /home/xxxxxx/domains/xxxxxxx.com/public_html/Mail/mime.php on line 41
Reply from Peter: Did you install the Pear Mail package in a folder called “Mail”? The script references it.