Disable your add-ons and confirm. Look at the server error log to see if there's any info there (assuming you're running 1.2.1).yep can log in to admin now as well... just have the same log out error.
Disable your add-ons and confirm. Look at the server error log to see if there's any info there (assuming you're running 1.2.1).
mysqldump -u<user> -p<password> --single-transaction --skip-lock-tables db_name > /path/to/backup/db_name_$(date +%d.%m.%y).sql
tar -czf db_name_$(date +%d.%m.%y).tar.gz /path/to/backup/db_name_$(date +%d.%m.%y).sql
mysql -u<user> -p<password> db_name < db_name.sql
Dump:
Code:mysqldump -uuser -p --single-transaction --skip-lock-tables db_name > /path/to/backup/db_name_$(date +%d.%m.%y).sql
Zip (optional):
Code:tar -czf db_name_$(date +%d.%m.%y).tar.gz /path/to/backup/db_name_$(date +%d.%m.%y).sql
Restore:
Code:mysql -uuser -p db_name <db_name.sql
We use essential cookies to make this site work, and optional cookies to enhance your experience.