
Originally Posted by
skipwater
Because the script is using the server time it would be to much to change the code.
Some hosts allow you to change the server time zone GMT +- #, you might want to check.
Skip
Thanks Skip.
What I found strange was that when I look at the backup files created using Filezilla or the Control Panel File Manager, the date of creation is shown in GMT, but the file name is generated using GMT +6 (ie time zone of the server).
However adding this
Code:
date_default_timezone_set('Europe/London');
like this
Code:
// Grab a large chunk of memory
// If your server allows this adjustment then adjust to meet your needs.
// ***********************************************************************
// ini_set("memory_limit","128M");
// ini_set("memory_limit","192M");
// ini_set("memory_limit","256M");
ini_set("memory_limit","512M"); // default
// ini_set("memory_limit","768M");
// ini_set("memory_limit","1000M");
date_default_timezone_set('Europe/London');
appears to have done the trick.
Bookmarks