14.07.2010, 08:30
You must make a database, use the mysql.sql, and fill in with mysql commands...
For instance:
Go into the folder, where the mysql.sql file is be placed
[SHELL]
mysql -u root -p
FILL IN THE ROOT PASSWORD ON MySQL
create database control_panel
use control_panel
source mysql.sql
insert into Users values('Grex','cdbb08d0bc8ea3b3a30e88c15970a1bd');
[SHELL OFF]
This was an example to add user Grex with password gregor (to get md5 search for md5 hash code generator at ******), I will write at evening a detailed tutorial for Users, who don't know about mysql.
For instance:
Go into the folder, where the mysql.sql file is be placed
[SHELL]
mysql -u root -p
FILL IN THE ROOT PASSWORD ON MySQL
create database control_panel
use control_panel
source mysql.sql
insert into Users values('Grex','cdbb08d0bc8ea3b3a30e88c15970a1bd');
[SHELL OFF]
This was an example to add user Grex with password gregor (to get md5 search for md5 hash code generator at ******), I will write at evening a detailed tutorial for Users, who don't know about mysql.