arukiri Posted February 10, 2013 Share Posted February 10, 2013 i can't seem to restore my database backup in php. this is my code <?php $host = 'localhost'; $user = 'root'; $pass = ' '; $dbname = 'itravel'; $backup_name = 'itravel_backup.sql'; if(isset($_POST['backup'])) { $backup = "c:/xampp/mysql/bin/mysqldump --opt -h $host -u $user $dbname > $backup_name"; system($backup); } if(isset($_POST['restore'])) { $restore = 'c:/xampp/mysql/bin/mysql -u $user --p $pass $dbname < $backup_name'; system($restore); } ?> backup was successful but the restore was a failure. help me guys! Link to comment https://forums.phpfreaks.com/topic/274297-restoring-database-php/ Share on other sites More sharing options...
Christian F. Posted February 10, 2013 Share Posted February 10, 2013 Run the restore command manually, and it should tell you why. Also, if you haven't done so already: Turn on error reporting. Without error messages no-one can do anything about your problem, as no-one really knows what the problem actually is. Link to comment https://forums.phpfreaks.com/topic/274297-restoring-database-php/#findComment-1411553 Share on other sites More sharing options...
arukiri Posted February 10, 2013 Author Share Posted February 10, 2013 how to do it manually? i am using phpmyadmin. please help Link to comment https://forums.phpfreaks.com/topic/274297-restoring-database-php/#findComment-1411556 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.