Forum Moderators: coopster
Run script 'db.sql' located in the 'scripts' folder on the above-created database. This will create all database tables necessary for the system. Again, if you don't have access to the server, ask somebody who has. The command might look like this: mysql -u john -p < db.sqlHowever I don't have direct connection to the db like they have in the sample command. How do I do this? (If I can't do it through my control panel I get lost in a hurry :))
mysql -u john -p < db.sql
mysql -h db43.example.com -u john -p databasename < db.sql
You can also probably pass the raw SQL to your database through a web-based database manager if you use one.