Last active
June 22, 2017 21:09
-
-
Save rafalosinski/295bfd921da22102c3f605f95031d53f to your computer and use it in GitHub Desktop.
DUMP WordPress SQL DB
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| include 'wp-config.php'; | |
| $DBUSER = DB_USER; | |
| $DBPASSWD = DB_PASSWORD; | |
| $DATABASE = DB_NAME; | |
| $filename = "backup-" . date("d-m-Y") . ".sql.gz"; | |
| $mime = "application/x-gzip"; | |
| header( "Content-Type: " . $mime ); | |
| header( "Content-Disposition: attachment; filename='" . $filename . "'" ); | |
| $cmd = "mysqldump -u $DBUSER --password=$DBPASSWD $DATABASE | gzip --best"; | |
| passthru( $cmd ); | |
| exit(0); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment