blob: 40983353e248e26968a8f7b82661b60e509b163c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
===========================================================================
$NetBSD: MESSAGE,v 1.5 2011/12/29 14:44:21 joerg Exp $
Install mysql-server as needed.
To configure blur6ex, complete the following steps:
$ mysql -e "create database blur6ex"
$ mysql -e "grant all on blur6ex.* to ''@'' identified by 'PASSWORD'"
$ mysql blur6ex < ${PREFIX}/share/doc/blur6ex/blur6ex_tables.sql
Change "PASSWORD" to your desired password.
Modify ${PKG_SYSCONFDIR.blur6exdb}/db.php and
${PKG_SYSCONFDIR.blur6ex}/index.php.
Before accessing the blog, you should create a user for the admin
group:
$ mysql
mysql> use blur6ex;
mysql> insert into
-> permissionGroups (username,pGroup) values ('YOUR-NAME', 'admin' );
mysql> quit
Now you can access it at the following URL:
http://localhost/blog/
===========================================================================
|