tweak MESSAGE a little
This commit is contained in:
parent
eb1c28d37f
commit
345b2e135a
@ -1,9 +1,9 @@
|
||||
# $OpenBSD: Makefile,v 1.5 2008/04/09 14:32:22 naddy Exp $
|
||||
# $OpenBSD: Makefile,v 1.6 2008/05/03 18:16:25 espie Exp $
|
||||
|
||||
COMMENT = powerful content management system
|
||||
|
||||
DISTNAME = drupal-5.7
|
||||
PKGNAME= ${DISTNAME}p2
|
||||
PKGNAME= ${DISTNAME}p3
|
||||
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}
|
||||
|
||||
RUN_DEPENDS = ::www/php5/core \
|
||||
|
@ -12,13 +12,12 @@ In order to run with standard OpenBSD chroot'ed httpd:
|
||||
|
||||
- make sure you can connect to your database.
|
||||
|
||||
For mysql on localhost:
|
||||
For mysql on localhost, run the following snippet AFTER
|
||||
you make sure your mysql daemon is running:
|
||||
|
||||
mkdir -p /var/www/var/run/mysql
|
||||
ln /var/run/mysql/mysql.sock /var/www/var/run/mysql
|
||||
|
||||
is a way to do it.
|
||||
|
||||
- file uploads require a tmp directory writable by www.
|
||||
.e.g., with the default php setup:
|
||||
|
||||
@ -29,9 +28,9 @@ Don't forget to set the character set to utf8 in your database.
|
||||
|
||||
In mysql, assuming you're connected as admin initially.
|
||||
|
||||
create user drupal identified by 'password';
|
||||
create user drupal identified by password('clearpassword');
|
||||
create database drupal character set utf8;
|
||||
grant all on drupal.* to user drupal@localhost:
|
||||
grant all on drupal.* to drupal@localhost:
|
||||
|
||||
In postgresql, assuming an `admin' account has all rights:
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user