Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Error 1146 Table Does Not Exist


Guest

Recommended Posts

Posted

1146 - Table 'me.TABLE_EXTRA_FIELDS' doesn't exist

 

select ce.fields_id, ce.fields_input_type, ce.fields_required_status, cei.fields_name, ce.fields_status, ce.fields_input_type from TABLE_EXTRA_FIELDS ce, TABLE_EXTRA_FIELDS_INFO cei where ce.fields_status=1 and cei.fields_id=ce.fields_id and cei.languages_id =1

 

I installed a contribution per the directions and this is what I see when viewing a customer's record inside Admin.

 

I have added the SQL strings into the DB.

 

What did I miss?

 

Thanks in advance.

Posted

That was easy.

 

Retraced every step of the contribution.

 

I missed point 6 from installation instructions:

 

6. In admin/includes/database_tables.php

Add the following lines:

define('TABLE_EXTRA_FIELDS','extra_fields');

define('TABLE_EXTRA_FIELDS_INFO','extra_fields_info');

define('TABLE_CUSTOMERS_TO_EXTRA_FIELDS','customers_to_extra_fields');

 

AND

 

11. In catalog/includes/database_tables.php

Add the following lines:

define('TABLE_EXTRA_FIELDS','extra_fields');

define('TABLE_EXTRA_FIELDS_INFO','extra_fields_info');

define('TABLE_CUSTOMERS_TO_EXTRA_FIELDS','customers_to_extra_fields');

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...