blob: 3d89792294d891f8f45e1d037088a4103b82f55b (
plain) (
blame)
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
31
32
33
34
35
|
==================================================================
b2evolution is now installed. If you install it for the first time,
you may need to perform the following steps.
1. Create the MySQL database:
# mysqladmin --user=root -p create b2evolution
2. Create a mysql user/password for the b2evolution database:
(change user and/or password if required)
# mysql -u root -p
mysql> GRANT ALL ON b2evolution.* TO b2evouser@localhost
IDENTIFIED BY 'b2evopassword';
mysql> FLUSH PRIVILEGES;
mysql> QUIT;
3. Please add the following to your apache config, and restart.
[1;32m#
# Directives to allow use of b2evolution
#
Alias /%%B2EVO_URL%% "%%PREFIX%%/%%B2EVO_DIR%%/"[m
4.Open b2evo installation page in your web browser
and login with b2evouser/b2evopassword
http://www.your.host/%%B2EVO_URL%%/blogs/install/
If you are doing a fresh install...
Note that password carefully! It is a random password that is given to you
when you install b2evolution.
If you lose it, you will have to delete the database tables and reinstall.
Have fun!
==================================================================
|