Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

cw30jp

Pioneers
  • Posts

    6
  • Joined

  • Last visited

Profile Information

  • Real Name
    Craig Woods

cw30jp's Achievements

  1. Hi Kymation, Fantastic addon! I recently upgraded to 2.3.1 and then disappeared from the Search Engines, and I think it is because I didn't have this addon. Regarding the Meta Keywords problem, I found the required code to insert the keywords into the database was missing from; /admin/includes/modules/header_tags/categories_products_process.php eg. // Check whether the products_description table has been altered $check_structure_query_raw = "describe " . TABLE_PRODUCTS_DESCRIPTION; $check_structure_query = tep_db_query($check_structure_query_raw); $products_field_exists = false; while ($check_structure_data = tep_db_fetch_array($check_structure_query)) { if ($check_structure_data['Field'] == 'head_title') { $products_field_exists = true; } if ($check_structure_data['Field'] == 'head_description') { $products_field_exists = true; } ------------------------- this part was missing throughout-------------------------- if ($check_structure_data['Field'] == 'head_keywords') { $products_field_exists = true; } --------------------------------------------------------------------------------------------- } I have added the required code and it is working fine for me. The modified categories_products_process.php file is attached. categories_products_process.php Thanks again
  2. A few years ago you made this contribution;

    Corrupted character on mysql with utf-8

    I just want to say a big Thank You!

    I have had a problem with my Japanese site for a long time, probably since my provider did some kind of upgrade. I am now finally able to once again directly edit my database.

    You are a life saver and a genius!

    Cheers,

    Craig

×
×
  • Create New...