1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-18 03:46:03 +00:00
freebsd-ports/chinese/tatter-tools/pkg-message
Martin Wilke d416d6d40b - Update to 1.0.6.1
Notes: Please read the UPDATING!

PR:		ports/105066
Submitted by:	chinsan
2006-11-06 11:54:49 +00:00

1.0 KiB

==================================================================
Tatter-Tools is now installed. If you intall it for the first time,
you may have to follow this steps to make it work correctly.
 
1. Create the MySQL database:
 
# mysqladmin --user=root -p create tattertools
 
2. Create a mysql user/password for tatter(database):
(change user and/or password if requered)
 
# mysql -u root -p
mysql> GRANT ALL ON tattertools.* TO ttuser@localhost
IDENTIFIED BY 'tt_password';
mysql> FLUSH PRIVILEGES;
mysql> QUIT;
 
3. Please add the following to your apache config, and restart.
#
# Directives to allow use of Tatter-Tools
#
Alias /%%TT_URL%% "%%PREFIX%%/%%TT_DIR%%/"
 
<Directory "%%PREFIX%%/%%TT_DIR%%">
Options FollowSymLinks
AllowOverride FileInfo
</Directory>
 
4.Open Tatter-Tools installation page in your web browser
and fill with ttuser/tt_password
 
http://www.your.host/%%TT_URL%%/setup.php
 
Have fun!
==================================================================