can i import my phpBB2 forum database fro the .sql file in my pc ?
Announcement
Collapse
No announcement yet.
import from sql backup
Collapse
X
-
You need to restore the sql backup file to a database. Then you can run the phpBB importer.Steve Machol, former vBulletin Customer Support Manager (and NOT retired!)
Change CKEditor Colors to Match Style (for 4.1.4 and above)
Steve Machol Photography
Mankind is the only creature smart enough to know its own history, and dumb enough to ignore it.
Comment
-
Yes it will.
Your problem is most likely a timeout of some sort, let me guess, your trying to upload via phpmyadmin or something similar?
Your best bet is uploading the .sql file to your web server via ftp in a folder ABOVE the public folder. At which point you will be able to import via a number of scripts and bypass the timeout issues.
Comment
-
Php scripts may only run so long, most of the time this is set between 30 - 60 seconds. Basicly if you can not upload the .sql file in that amount of time the process will fail.
By uploading the file to the server via ftp, you bypass your bottleneak (your internet connection). Most scripts like phpmyadmin will allow to import from .sql files that are currently on your webserver. Most of the time it is as simple as typing in the path to the file on your server.
For example your path could be:
/www/mysite.com/dbbacks/phpbackup.sql
Comment
-
You need to upload the file to the server then
mysql -uKleoz -ppass DATABASENAME < /home/kleoz/kleoz.sql
The only thing you need to do is make sure that your user has the create permissions or make a new database before running this command, then change the DATABASE name bit
Comment
widgetinstance 262 (Related Topics) skipped due to lack of content & hide_module_if_empty option.
Comment