aboutsummaryrefslogtreecommitdiff
path: root/www/b2evolution/pkg-message
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2005-09-03 23:31:18 +0000
committerPav Lucistnik <pav@FreeBSD.org>2005-09-03 23:31:18 +0000
commitb487d3a41b405a92f615d6ad4f88c28a188e0990 (patch)
tree7036a2794c6c32a3fa3f9a7280e9b600e612c5e1 /www/b2evolution/pkg-message
parent13008771dba2d66fb2b9df7eae187ad363ffa27e (diff)
- Fix security issue with xmlrpc
- Provide more installation instructions PR: ports/85568 Submitted by: chinsan <chinsan.tw@gmail.com> (maintainer)
Notes
Notes: svn path=/head/; revision=141864
Diffstat (limited to 'www/b2evolution/pkg-message')
-rw-r--r--www/b2evolution/pkg-message30
1 files changed, 26 insertions, 4 deletions
diff --git a/www/b2evolution/pkg-message b/www/b2evolution/pkg-message
index daba180ad1c7..c01774807342 100644
--- a/www/b2evolution/pkg-message
+++ b/www/b2evolution/pkg-message
@@ -1,7 +1,29 @@
+==================================================================
+b2evolution is now installed. If you intall it for the first time,
+you may have to follow this steps to make it work correctly.
- **** NOTE ****
-For first use of b2evolution, remember to point your browser to
+1. Create the MySQL database:
- http://localhost/%%B2EVO_URL%%/blogs/install/
+ # mysqladmin --user=root -p create b2evolution
-and follow the instructions.
+2. Create a mysql user/password for b2evolution(database):
+ (change user and/or password if requered)
+
+ # mysql -u root -p
+ mysql> GRANT ALL ON b2evolution.* TO b2evouser@localhost
+ IDENTIFIED BY 'b2evopassword';
+ mysql> FLUSH PRIVILEGES;
+ mysql> QUIT;
+
+3.Open b2evo installation page in your web browser
+ and login with b2evouser/b2evopassword
+
+ http://%%HOSTNAME%%/%%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!
+==================================================================