Closed (fixed)
Project:
DruTeX
Version:
master
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Reporter:
Created:
28 Feb 2007 at 14:13 UTC
Updated:
23 Sep 2007 at 19:28 UTC
Can't configure drutex input format. I'm getting folowing error message:
warning: pg_query() [function.pg-query]: Query failed: ERROR: column "drutex" does not exist in /var/www/localhost/htdocs/includes/database.pgsql.inc on line 125.
Apparently, column drutex is missing from database, but nothing is mentioned about database in the installation instructions.
Comments
Comment #1
steven jones commentedI don't think that DruTeX has the Postgres create table statements in it's install file. I will look at adding this.
Comment #2
Gertje commentedI wasn't even able to find an .install file...
Comment #3
Gertje commentedI figured it out..
The in select statement on line 593 in drutex.module the double quotes on drutex isn't according to the SQL standard. MySQL doesn't matter though Postgres does... I simply changed it to:
$result = db_query('SELECT format from {filters} WHERE module = \'drutex\'');
Cheers
Comment #4
steven jones commentedThank you.
Comment #5
(not verified) commented