espie 780865564e update to 7.60
tweak plist according to update-plist improvements
(DRUPAL-SA-CONTRIB-2018-006)
2018-10-18 10:28:36 +00:00
..
2018-10-18 10:28:36 +00:00
2018-09-04 12:46:09 +00:00

$OpenBSD: README,v 1.3 2018/09/04 12:46:24 espie Exp $

+-----------------------------------------------------------------------
| Running ${PKGSTEM} on OpenBSD
+-----------------------------------------------------------------------

To enable a decent configuration of drupal, please create a symbolic
link:

ln -sf ../modules.sample/${DRUPAL}.conf \
	/var/www/conf/modules

Drupal can work with a PostgreSQL, MySQL or SQLite3 database.
If you don't already have the corresponding PDO package, install it:
    php-pdo_pgsql, php-pdo_mysql or php-pdo_sqlite

If you just want to try out drupal, you don't need any database server,
an sqlite file will do just fine.

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@localhost identified by 'password';
create database drupal character set utf8;
grant all on drupal.* to drupal@localhost;

Note that the default max_allowed_packet is too small if you install
a few modules. See /etc/my.cnf.

In postgresql, assuming an `admin' account has all rights:

createuser -U admin --pwprompt --no-superuser --createdb --no-createrole drupal
createdb -U drupal -E UTF8 drupal

Updating from a drupal6 installation:
- to do