Registered: 06/05/06
Posts: 163
Loc: Jakarta, Indonesia
I just tried to backup my data files, and got this error about half-way through the procedure:
Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 3383773 bytes) in /home/www/jakchat/forums/admin/dodbbackup.php on line 157
any thoughts?
Edited by Rick (12/03/0601:05 PM)
_________________________ Okusi Associates -- Indonesian business and management services
Express Hosting
"We are the official hosting company of UBB.threads. Ask us about our free migration services to migrate your UBB.threads installation."
Registered: 06/05/06
Posts: 14994
Loc: Portland, OR; USA
Easy, your alotted memory from your server was completely used... You had used 8388608 bytes (8 megabytes) and the script tried to use 3383773 additional bytes (3.2270174 megabytes).
Your webhost would have to increase the php memory limit which would be doubtful in most cases (16mb is a nice round upgrade number to request).
Your best bet however wouild be to run backups from command line, they're much faster and don't rely on the php variables.
Whichever directory you issue the command from will be where your database_name.sql file will be created; additionally you can specify a path before database_name.sql.
How, if you have PHPMyAdmin you could create an archive (tar, tar.gz, .zip, etc) of yoru forums which will download much faster, but depending on the size of your forums I'm not sure if it'd time out or not going this route.
Registered: 06/05/06
Posts: 14994
Loc: Portland, OR; USA
database name woudl be whatever your database name is; as I don't know your setup I just put "database name" in there... You can get the name of the database that UBB is using out of your configuration file...
As you can see fromt he ines i posted, you'd have to replace "username" "password" and "databasename" with the appropraite information; hostname shouldn't have to be used though since it'll by default try localhost.
Registered: 06/05/06
Posts: 14994
Loc: Portland, OR; USA
Originally Posted By: KuKuKaChu
Originally Posted By: Gizmo
I hope that you got your backup built from the command line though
yes, the command-line method worked just fine, and very fast!
lol indeed fast... generally though I woudln't recommend using the all-databases flag though, since i'tll backup every db you have access to (and on a missconfigured server you may snag crap you won't want or that aren't your db's), instead you shoudl specify the databases that you want specifically.
Well my next step will be to FTP the backups to another site on another server at least once a week just in case the hard drives fail or something on the main site, the most I could ever really loose is a week of posts. That is a worse case scenario.
If I had physical access I could hook a tape drive or external drive to the system - but since the site is about 8,000 miles away I don't think that will happen.
Registered: 06/05/06
Posts: 14994
Loc: Portland, OR; USA
My setup is as follows: 1. Server creates backup according to specific directories i wish backed up; this is done to a temp directory. 2. ncftp is set to ftp all files to a remote host. 3. Remote host (my home development machine) sits and recieves files, very litle that i have to do, but I can backup files in house through the dvdrw drivves n the server (which works out fairly well)
I went through ncftp and customized my settings, and have everything issued through a cronjob, I could ajust the crontask to run however often as needed (should I be that anal retentive);
I could also take and setup a seperate task to do just the db or any other set of db's to account for forum data that i'd want backed up.
Everything ofcoarse is tarred before transferred over, i have it done by sites (from my VPS); I rather enjoy the level of customization that there is, always up to learn hehe
Well I just took over as Admin of the site a couple weeks ago after a loss of accounts and no backups.
Got the board back up and running, now have upgraded it, and back it up daily. So it's in much better shape then it was in the past. Had there been a bigger error or full data loss there was no backup period.
Registered: 06/05/06
Posts: 14994
Loc: Portland, OR; USA
I have a similar issue with a friends site, the host made no backups, and neither did he; well the host migrated all of his sites to a new server and left my friends on the old one and the bill poped and the server data is magicaly gone; so now theres no hosting, no backups, etc and no one knows what happened...
Pretty scary :/... If we can get data backup I'm going to ensure weekly backups of the database, with monthly backups of the site.