View Single Post
  #45  
Old 06-03-2013, 03:50 AM
  karina's Avatar 
karina karina is offline
 

X-Cart team
  
Join Date: Jul 2009
Posts: 123
 

Default Re: Pop-up Anywhere module released

Quote:
Originally Posted by candc
Hi,

We also seem to have a problem with sql errors.

Error code : 1146 Description : Table '.XC_TBL_PREFIXpopups' doesn't exist

I've checked the distribituves and found out that 'modules/Popup_Anywhere/config.php' file was updated to the new version in all distributives and contain XC_TBL_PREFIX constant. But XC_TBL_PREFIX is used since X-Cart 4.5.3 only. The distributives are updated, please re-upload the module from File Area once again.

If store is X-Cart 4.5.2 or below then 'modules/Popup_Anywhere/config.php' file must contain this part of code:
PHP Code:
$sql_tbl['popups'] = 'xcart_popups';
$sql_tbl['popups_settings'] = 'xcart_popups_settings' 

If store is X-Cart 4.5.3 or above then 'modules/Popup_Anywhere/config.php' file must contain this part of code:
PHP Code:
$sql_tbl['popups'] = XC_TBL_PREFIX 'popups';
$sql_tbl['popups_settings'] = XC_TBL_PREFIX 'popups_settings' 
__________________
Karina Lipnyagova

The "Advanced Customer Reviews", "Root Categories" and "Pop-up Anywhere" author
Reply With Quote