Quote:
Originally Posted by NLP-er
About DB - the reason is differences in mySQL versions. On my version varchar(328) is not automatically changed to blob/text - on yours it is.
Please let me know which version do you have?
You made wrong changes in SQL, please drop your table and use this one (corection will be included in next release):
Code:
CREATE TABLE vbenterprisetranslator_cache_medium (
id INT AUTO_INCREMENT NOT NULL PRIMARY KEY,
serie BIGINT(14) UNSIGNED,
dateline int(10) UNSIGNED default 0,
tl VARCHAR(5),
originaltext VARCHAR(328),
translated VARCHAR(1000),
UNIQUE (originaltext(328), tl),
INDEX(serie)
) ENGINE = MYISAM, CHARACTER SET utf8 COLLATE utf8_bin
About holding translation - turn on tracking in options.
Not understood about images.
|
I think we both lost each other on images as that was never an issue just that Webdeveloper Plus mod I provided a link to in a previous post, that would translate but the DB error resulted form text in that however we know now that the table was never created so that was not the cause of the error
And MySQL version per the previously posted DB error:
Quote:
MySQL Version : 4.1.22-max-log
|
I'll drop that table ASAP and try the new, thanks for the revision and prompt replies

.
S-MAN