how to restore by vbulletin sql?

Status
Not open for further replies.

wman

Banned
Banned
322
2008
0
0
hej guys,

this bigdump php file sucks, i cant upload my 70mb big vbulletin sql, can somebody help me? how can i upload it, i have :

1 sql file
cpanel
whm
 
10 comments
if u have ssh access, then it so easy...

it's actually rather easy to do through ssh:

Login to old host:
Commands:
First, dump the database to a file.
mysqldump database -uusername -ppassword > database.sql

then open an FTP session to your new host:

ncftp -uuser new-host



then put the file dump on the new server. Navigate to any appropriate directory first:

put database.sql

Exit twice, first to close the FTP session, and the SSH session:
exit
exit

ssh to new host (make sure the database actually exists!)

mysql database -uusername -p < database.sql
or simply mysql database -uusername -p
enter password
source database.sql

anyway, you start the thread in wrong section,that should be on vBulletin Forum Support,
 
Status
Not open for further replies.
Back
Top