I found error like these:

user warning: Table 'vic120.uc_attribute_url_default_option_aid' doesn't exist query: SELECT urlid FROM uc_attribute_url_default_option_aid WHERE aid = 1 in /home/content/17/727/html/sites/all/modules/uc_attribute_url_default/uc_attribute_url_default.module on line 90.

The problem was that the database table had a prefix and the table namings were not wrapped in curly braces. So I found a bare 'uc_attribute_url_default_option_aid', I have replaced it with '{uc_attribute_url_default_option_aid}' and it looks like that fixes the problem. I did the same with a swap of 'uc_attribute_url_default_option_oid' to '{uc_attribute_url_default_option_oid}'

Comments

dubs’s picture

Status: Needs review » Patch (to be ported)

Thanks so much. As soon as I get GIT sorted I'll update the module.

dubs’s picture

Issue summary: View changes

Adding a reference to the option

dubs’s picture

Issue summary: View changes
Status: Patch (to be ported) » Closed (outdated)