Hi
Also with your new localizer.install I get db error messages like this:
* user warning: Table 'drupal.localizertranslation' doesn't exist query: SELECT * FROM localizertranslation WHERE (object_name = 'menu' OR object_name = 'menu_item') AND locale = 'de' in /home/httpd/vhosts/notfallseelsorge.ch/httpdocs/drupal/includes/database.mysql.inc on line 121.
* user warning: Table 'drupal.localizertranslation' doesn't exist query: SELECT * FROM localizertranslation WHERE (object_name = 'menu' OR object_name = 'menu_item') AND locale = 'de' in /home/httpd/vhosts/notfallseelsorge.ch/httpdocs/drupal/includes/database.mysql.inc on line 121.
Server is PHP version 5.1.6, MySQL Client API version 4.1.20, Drupal 4.7.4
Comments
Comment #1
Roberto Gerola commentedYes. There is an error in the script.
Here there is the correct version :
CREATE TABLE localizertranslation (
tid int(10) unsigned NOT NULL auto_increment,
object_key varchar(100) NOT NULL,
object_name varchar(100) NOT NULL,
object_field varchar(100) NOT NULL,
translation text NOT NULL,
locale varchar(10) NOT NULL,
PRIMARY KEY (tid),
UNIQUE KEY localizertranslation_idx1
(object_key,object_name,object_field,locale)
)
I've already fixed it and I'll make it available in the next official
release.
Comment #2
Roberto Gerola commented