summaryrefslogtreecommitdiffstats
path: root/www/drupal6/files/pkg-message.in
blob: 0b58d8e976384e6199a9112d80840fc098a26379 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
PLEASE NOTE: on 24th February 2016, Drupal 6 will reach end of life
upstream and will no longer be supported. This means no further security
updates. Please consider upgrading to Drupal 7.

https://www.drupal.org/drupal-6-eol

===============================

You now need to create the DB where Drupal is going to live

 PostgreSQL::
   createdb -U pgsql -W drupal
   createuser -U pgsql -P -e drupal
   createlang -U pgsql -W plpgsql drupal

 MySQL::
   mysqladmin -u dba_user -p create drupal
   mysql -u dba_user -p
   GRANT ALL PRIVILEGES ON drupal.* TO drupal@localhost IDENTIFIED BY 'passwd';

You also need to add appropriate configuration directives to your apache
configuration file (%%PREFIX%%/etc/apache(2)/httpd.conf).

A typical configuration might read:

    Alias /drupal "%%DRUPAL_DIR%%"
    <Directory "%%DRUPAL_DIR%%">
        Options Indexes FollowSymlinks MultiViews
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>

Please see http://drupal.org/cron for important information on setting up
periodic maintenance tasks in Drupal.

For important information about upgrading from previous versions of Drupal, please 
please see: %%DRUPAL_DIR%%/doc/UPGRADE.txt
OpenPOWER on IntegriCloud