Create a database user:
Create a Silurus database:
Add the user to just created database:
Note all the values of hostname, username, databasename, and the password you have chosen. (Note that hostname will usually be localhost.)
If you have shell access to your web server and your MySQL user has the permissions to create MySQL users and databases, you can follow the sample session below to create your username and database.
$ mysql -u adminusername -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 5340 to server version: 3.23.54
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> CREATE DATABASE databasename;
Query OK, 1 row affected (0.00 sec)
mysql> GRANT ALL PRIVILEGES ON databasename.* TO "username"@"hostname" IDENTIFIED BY "password";
Query OK, 0 rows affected (0.00 sec)
mysql> FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.01 sec)
mysql> EXIT
Bye
$
In the above:
Note all the values you used for databasename, username, hostname, and password.
Using your favorite web browser navigate to your domain (http://mysite.com/) or to your subdirectory (http://mysite.com/subdirectory/)
The installation instruction should appear in your browser's window. Follow them carefully to complete the installation.
To enter your Administration panel please use the following URL:
http://www.mysite.com/admin/
If you are installing Silurus in a sub-directory then the URL will be:
http://www.mysite.com/sub-directory/admin/
To login to the Administration Panel you should use the information which you have appointed above.
Default Administrator login - admin, password - admin
Defaul User login - demo, password - demo