
Originally Posted by
lat9
Hmm, that's bizarre. Let me poke around a bit and see if I can come up with anything in the morning.
Update: Just saw your previous post. When you view the products_description table, via phpMyAdmin, what's the configuration for the products_url field?
Text , utf8mb4_general_ci , NULL Yes , Default NULL
And this may be all my doing...
My admin installer script file modifies that field.
Code:
$sql = "alter table " . TABLE_PRODUCTS_DESCRIPTION . " change `products_url` `products_url` text character set " . DB_CHARSET . " null default null ";
$this->executeInstallerSql($sql);
Let me change the field back to original and see what happens...
Code:
$sql = "alter table " . TABLE_PRODUCTS_DESCRIPTION . " change `products_url` `products_url` varchar(255) character set " . DB_CHARSET . " not null default '' ";
$this->executeInstallerSql($sql);
Uuuuuuugh
Bookmarks