2005-09-04 01:31:18 +02:00
|
|
|
==================================================================
|
2006-08-07 03:23:32 +02:00
|
|
|
b2evolution is now installed. If you install it for the first time,
|
2007-06-14 23:14:48 +02:00
|
|
|
you may need to perform the following steps.
|
2005-05-17 05:40:09 +02:00
|
|
|
|
2007-08-29 08:55:59 +02:00
|
|
|
1. Make sure your mysql-server is running.
|
2005-05-17 05:40:09 +02:00
|
|
|
|
2007-08-29 08:55:59 +02:00
|
|
|
2. Create a new MySQL database:
|
2005-05-17 05:40:09 +02:00
|
|
|
|
2007-08-29 08:55:59 +02:00
|
|
|
# mysqladmin --user=root -p create b2evolution
|
|
|
|
|
|
|
|
(in mysql root's password is empty unless you have set it in advance).
|
|
|
|
|
|
|
|
3. Create a mysql user/password for the b2evolution database:
|
2007-06-14 23:14:48 +02:00
|
|
|
(change user and/or password if required)
|
2005-09-04 01:31:18 +02:00
|
|
|
|
2007-08-29 08:55:59 +02:00
|
|
|
# mysql -u root -p
|
|
|
|
mysql> GRANT ALL ON b2evolution.* TO b2evouser@localhost
|
|
|
|
IDENTIFIED BY 'b2evopassword';
|
|
|
|
mysql> FLUSH PRIVILEGES;
|
|
|
|
mysql> QUIT;
|
2005-09-04 01:31:18 +02:00
|
|
|
|
2007-08-29 08:55:59 +02:00
|
|
|
4. Add the following to your apache config, and restart.
|
|
|
|
#
|
|
|
|
# Directives to allow use of b2evolution
|
|
|
|
#
|
|
|
|
Alias /%%B2EVO_URL%% "%%PREFIX%%/%%B2EVO_DIR%%/"
|
2009-09-29 02:44:38 +02:00
|
|
|
AcceptPathInfo On
|
|
|
|
<Directory /usr/local/www/Wikka-1.2>
|
|
|
|
AllowOverride None
|
|
|
|
Order Allow,Deny
|
|
|
|
Allow from all
|
|
|
|
</Directory>
|
2007-08-29 08:55:59 +02:00
|
|
|
#
|
2006-08-01 17:51:18 +02:00
|
|
|
|
2007-08-29 08:55:59 +02:00
|
|
|
5. Open b2evo installation page in your web browser
|
|
|
|
and login with b2evouser/b2evopassword
|
2005-09-04 01:31:18 +02:00
|
|
|
|
2007-08-29 08:55:59 +02:00
|
|
|
http://www.your.host/%%B2EVO_URL%%/blogs/install/
|
2005-09-04 01:31:18 +02:00
|
|
|
|
2007-08-29 08:55:59 +02:00
|
|
|
(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.
|
2005-09-04 01:31:18 +02:00
|
|
|
|
2008-05-21 19:32:07 +02:00
|
|
|
If you upgrade from b2evolution version 1.x.y you may need to upgrade
|
|
|
|
your database as described at
|
|
|
|
|
|
|
|
http://manual.b2evolution.net/Upgrade_from_an_older_version
|
|
|
|
|
2009-09-29 02:44:38 +02:00
|
|
|
|
|
|
|
More detailed information please visit:
|
|
|
|
http://manual.b2evolution.net/Install_b2evolution
|
|
|
|
|
2005-09-04 01:31:18 +02:00
|
|
|
==================================================================
|