083a133c50
- Remove description of using PostgreSQL for backend database from files/README. - Replace remained www/www to APACHE_USER/APACHE_GROUP in Makefile. - Don't hardcord /typolight in files/typolight.conf. Bump PKGREVISION.
24 lines
782 B
Text
24 lines
782 B
Text
$NetBSD: README,v 1.2 2008/12/09 07:27:39 taca Exp $
|
|
|
|
1. First, create a database for TYPOlight CMS.
|
|
|
|
# mysqladmin -p -u <administrator> create <dbname>.
|
|
|
|
2. Next, create a user for accessing that database.
|
|
|
|
# mysql -p -u <administrator> <dbname>
|
|
mysql> grant select, insert, update, delete, create, drop,
|
|
index, alter, create temporary tables, lock tables on
|
|
<dbname>.* to '<dbuser>'@'localhost'
|
|
identified by '<dbpass>' ;
|
|
|
|
3. Edit ${PKG_SYSCONFDIR}/typolight.conf and include from httpd.conf.
|
|
|
|
Include ${PKG_SYSCONFDIR}/typolight.conf
|
|
|
|
Then reload or restart apache.
|
|
|
|
4. Start setup from TYPOlight installer. If your setup TYPOlight's
|
|
URL as http://www.example.org/, the installer's URL will be
|
|
http://www.example.org/typolight/install.php.
|
|
|