XFileSharing Pro - dump of your SQL database, How?

Message
Author
Timmy
Posts: 146
Joined: Feb 10, 2010 8:17 pm

dump of your SQL database, How?

#1 Postby Timmy » Dec 14, 2010 3:59 pm

Hello friends,

I want to upgrade my script from 1.7 to 1.8
But I am stuck in this step:
Make a dump of your SQL database.
What is dump? And how to make that?
Is dump a backup?

Thank you :)

chrda
Posts: 296
Joined: Sep 14, 2009 7:16 pm

#2 Postby chrda » Dec 14, 2010 4:45 pm

How to take backup
mysqldump -u root -p DBNAME > DBNAME.sql

How to put it back:
mysql -u root -p DBNAME < DBNAME.sql

so dump means taking backup of your database..

admin
Site Admin
Posts: 1839
Joined: Mar 22, 2006 12:32 pm

#3 Postby admin » Dec 14, 2010 6:00 pm


Timmy
Posts: 146
Joined: Feb 10, 2010 8:17 pm

#4 Postby Timmy » Dec 14, 2010 6:19 pm

Thank you guys!

I already did the backup but I restore my script back to version 1.7
Because I have a custom template and this version had a lot of template files modifications.

Would be great If we had access to the template modifications so we can update our custom template too :/