I haven't used the script, but if it's a database script, then just dump the database into a file.. with mysql, you do it this way : mysql -h host -u username -ppassword databasename > dump.sql
then to put it in the other db, do mysql -h host -u username -ppassword databasename < dump.sql .. Remember to create the database before you dump the file.. dump it by :
($ = telnet/ssh shell)
$mysql -h host -u username -ppassword
$CREATE DATABASE databasename
$exit
and there you go :-)
Good luck.
|