View Full Version : Finally installing but I have a question
scalemotorcars
18-11-2010, 19:48
Product is installed and Im about to run the install script but I just noticed something a little off. More then likely a typ o but just in case.
The Welcome screen says "Welcome to osCommerce Online Merchant v2.2 - vBulletin 4 Integration!"
This code is int he 3.8 version.
If it just a typo or should I upload a different script.
Also whats the best way to backup the database. The built in code sucks. I had PHP Myadmin but for some reason it no longer works on my server. Any other good options before I continue? Thanks....
http://www.scalemotorcars.com/images/installtypo.jpg
Greystoke
18-11-2010, 20:18
Hi,
Sorry about that. Yes its a typo.
When you say 'The built in code sucks', I take it you mean the vBulletin database backup.
If you have shell access to your server you could do a database backup from the terminal.
Back up From the Command Line (using mysqldump)
If you have shell or telnet access to your web server, you can backup your MySQL data by using the mysqldump command. This command connects to the MySQL server and creates an SQL dump file. The dump file contains the SQL statements necessary to re-create the database. Here is the proper syntax:
$ mysqldump --opt -u [uname] -p[pass] [dbname] > [backupfile.sql]
* [uname] Your database username
* [pass] The password for your database (note there is no space between -p and the password)
* [dbname] The name of your database
* [backupfile.sql] The filename for your database backup
* [--opt] The mysqldump option
For example, to backup a database named 'Tutorials' with the username 'root' and with no password to a file tut_backup.sql, you should accomplish this command:
$ mysqldump -u root -p Tutorials > tut_backup.sql
This command will backup the 'Tutorials' database into a file called tut_backup.sql which will contain all the SQL statements needed to re-create the database.
scalemotorcars
18-11-2010, 21:37
Cool so the PHP is fine?
And yes the VB backup stinks. I dont have access to the server itself, just FTP.
Have you head of anything else. I know theres one on VB.org that seems to do a good job.
Greystoke
18-11-2010, 22:32
Yes the installer is fine, just a typo.
Sorry I don't know of any other way to backup the database.
You should contact your hosting company about phpMyAdmin not working.
Powered by vBulletin™ Version 4.2.5 Copyright © 2026 vBulletin Solutions, Inc. All rights reserved.