1.1.3. Database support In order to run Viart CMS you will need a database. If you do not have one already, you must create it. We recommend to use MySQL database as it is the most widely used database.
1.1.3. Database support
In order to run Viart Shop you will need a database. If you do not have one already, you must create it now.
As MySql seems to be the most popular database we would advise using it (http://www.mysql.org/).
In MySQL use the "mysqladmin" program like this:
mysqladmin -uuser -ppassword create mydb
Be sure that you have a user for the database who has rights to select, insert, update and delete.
A MySQL Grant statement to do this for a user would look like this:
GRANT
select, insert, update, create, alter, delete, drop
ON
database.*
TO
user@localhost
IDENTIFIED BY
'password';