bitpay / opencart3-plugin

13 stars 15 forks source link

Table prefix #8

Closed faca5 closed 6 years ago

faca5 commented 6 years ago

Error: Fatal error: Uncaught exception 'Exception' with message 'Error: Table 'oc_setting' doesn't exist
Error No: 1146

Line to fix: $this->db->query("delete from oc_setting where code='bitpay'");

Solution: $this->db->query("delete from ".DB_PREFIX."setting where code='bitpay'");

pieterpoorthuis commented 6 years ago

thanks for the report, fixed