Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MySQL dump on WAMP server using PHP

I am trying to dump the mysql database using a PHP file. I am using windows 7 OS.

but I am always getting error; This is my code

$user='root';
$pass='mypassword';
$host='localhost';
//$sql_file='db_backup.sql';
$cmd = "e:\\wamp\\bin\\mysql\\mysql5.6.12\\bin\\mysqldump -h$host  -u$user -p$pass hospitalerp > db_backup.sql";
exec($cmd, $output, $return);
if ($return != 0) { //0 is ok
    die('Error: ' . implode("\r\n", $output));
}

echo "dump complete";

Any suggestion will be greatly appreciated. Thanks.

like image 866
Pawan Avatar asked Jul 20 '26 07:07

Pawan


2 Answers

Ok I found the solution, may someone find it useful.

$user='root';
$pass='mypassword';
$host='localhost';

$cmd='e:\wamp\bin\mysql\mysql5.6.12\bin\mysqldump --user='.$user.' --password='.$pass .' --host=localhost hospitalerp > db_backup4.sql';
//var_dump($cmd);exit;
exec($cmd, $output, $return);
if ($return != 0) { //0 is ok
    die('Error: ' . implode("\r\n", $output));
}

echo "dump complete";
like image 111
Pawan Avatar answered Jul 22 '26 00:07

Pawan


I note that mysqldump need the exe extension, just like:

$cmd='e:\wamp\bin\mysql\mysql5.6.12\bin\mysqldump.exe --user='.$user.' --password='.$pass .' --host=localhost hospitalerp > db_backup4.sql';

I tried this on a Windows 10 PC

like image 43
Carlos Sifuentes Ludeña Avatar answered Jul 21 '26 23:07

Carlos Sifuentes Ludeña



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!