|
Those instructions are based on you having some knowledge of installing a database through a shell session.
However, in cPanel...
Go to Mysql Databases, and create a new database called citrus, which will then be called username_citrus
Then create a new mysql user with password, so then it would be username_user and password (use something cryptic for your password)
Then in phpmyadmin, go to that database and click import, then search for the citrus.sql file on your desktop.
Then file out the config file, like so
$sys_dbhost='localhost';
$sys_dbuser='username_user';
$sys_dbpasswd='password';
$sys_db='username_citrus';
And you should be good to go
|