yes sorry was my fault...
hmm, i think you can try this:
open admin/backup.php
find:
PHP Code:
doformheader("backup","sqlfile");
maketableheader("Save data to file on server:");
below add:
PHP Code:
$result=$DB_site->query("SHOW tables");
while ($currow=$DB_site->fetch_array($result)) {
makeyesnocode($currow[0],"table[$currow[0]]",1);
}
then find this:
PHP Code:
while ($currow=$DB_site->fetch_array($result)) {
sqldumptable($currow[0], $filehandle);
fwrite($filehandle, "\n\n\n");
echo "<p>Dumping $currow[0]</p>";
}
and change it to:
PHP Code:
while (list($key,$val)=each($table)) {
if ($val==1) {
sqldumptable($key,$filehandle);
fwrite($filehandle, "\n\n\n");
echo "<p>Dumping $currow[0]</p>";
}
}
it should work, because it's the same code used for save to disk