[gentoo-user] Set up drupal with postgres

2007-08-09 Thread Mick
Hi All, I am trying to set up drupal on a box that has postgresql instead of mysql. The problem is that the script offered in the Gentoo Wiki[1] is for mysql as quoted below: USE mysql; INSERT

Re: [gentoo-user] Set up drupal with postgres

2007-08-09 Thread Boyd Stephen Smith Jr.
On Thursday 09 August 2007, Mick [EMAIL PROTECTED] wrote about '[gentoo-user] Set up drupal with postgres': USE mysql; \c postgres INSERT INTO user (host, user, password, select_priv, insert_priv, update_priv) VALUES ('localhost', 'drupal', PASSWORD('passwd'), 'Y', 'Y', 'Y'); CREATE USER

Re: [gentoo-user] Set up drupal with postgres

2007-08-09 Thread Mick
On Thursday 09 August 2007 20:29, Boyd Stephen Smith Jr. wrote: On Thursday 09 August 2007, Mick [EMAIL PROTECTED] wrote about '[gentoo-user] Set up drupal with postgres': USE mysql; \c postgres INSERT INTO user (host, user, password, select_priv, insert_priv, update_priv) VALUES

Re: [gentoo-user] Set up drupal with postgres

2007-08-09 Thread Boyd Stephen Smith Jr.
On Thursday 09 August 2007, Mick [EMAIL PROTECTED] wrote about 'Re: [gentoo-user] Set up drupal with postgres': On Thursday 09 August 2007 20:29, Boyd Stephen Smith Jr. wrote: On Thursday 09 August 2007, Mick [EMAIL PROTECTED] wrote GRANT ALL PRIVILEGES ON drupal.* TO drupal@'%' IDENTIFIED