Simply navigate to /your/path/to/Lyricova
and follow the instructions./install
ation
/install
FOLDER AFTER INSTALLATION FOR SAFETY REASON.Manually installation is more stable, yet requires a basic knowledge of PHP and MySQL.
The following instructions are for manual installation.
gy/config/config.php
base_url
would be the root directory of Project Lyricova.
e.g. http://localhost/project-Lyricova/
If your server does not support .htaccess
feature,
Please change index_page
into index.php
otherwise, please leave blank.
$config['base_url'] = 'http://localhost/project-Lyricova/'; $config['index_page'] = '';
gy/config/database.php
$db['default']['hostname']
is database address
$db['default']['username']
is database username
$db['default']['password']
is database password
$db['default']['database']
is database name
$db['default']['hostname'] = 'localhost'; $db['default']['username'] = 'root'; $db['default']['password'] = ''; $db['default']['database'] = 'Lyricova';
.htaccess
feature.Change RewriteBase
into your root folder of Project Lyricova
RewriteBase /project-Lyricova/
Simply import gy.sql
into MySQL database.
At the very beginning, role of new users are always 0 (Registered user). (Refer to Role of Users)
As the user management module is not yet built, you are advised to change your role to Admin manually, by changing role
of your user into 3 (Administrator), or you can also use this query...
Assuming your user id is 0
UPDATE users SET role = '3' WHERE id = 0
/install
FOLDER AFTER INSTALLATION FOR SAFETY REASON.For more information and full documentation, please refer to GitHub Wiki