When backing up a phpbb3 database, what SQL options should be enabled in phpMyAdmin, and what bearing do they have on the backup?
Thanks.
Backing up phpbb3 database
Forum rules
Discussion of general topics related to the new release and its place in the world. Don't discuss new features, report bugs, ask for support, et cetera. Don't use this to spam for other boards or attack those boards!
Discussion of general topics related to the new release and its place in the world. Don't discuss new features, report bugs, ask for support, et cetera. Don't use this to spam for other boards or attack those boards!
- DraconisCombine
- Registered User
- Posts: 14
- Joined: Sun Dec 17, 2006 4:52 pm
Re: Backing up phpbb3 database
do you have ssh access to your box?
I would strongly recommend using mysqldump instead of a php tool:
That will dump out your database and then gz it up with the date prefixed.
Just run that from the command line.
I would strongly recommend using mysqldump instead of a php tool:
Code: Select all
mysqldump -u <USERNAME> --password="<PASSWORD" <DBNAME> | gzip > `date +%Y.%m.%d`.forums.sql.gz
Just run that from the command line.