Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

4vrij

Pioneers
  • Posts

    20
  • Joined

  • Last visited

Everything posted by 4vrij

  1. @fourmat and @Cheloki And in catalog\admin\backup.php line 108 $strlener_of_tables_backed_up_now = 0; to $counter_of_tables_backed_up_now = 0; line 138 $no_of_tables = strlen($tables); $no_of_tables_for_backup = strlen($_POST['dbtable']); to $no_of_tables = count($tables); $no_of_tables_for_backup = count($_POST['dbtable']);
  2. @fourmat and @Cheloki catalog\admin\includes\functions\db_backup.php find line 34: if (strlen($a_name) && $a_name !== '*') { return '`' . str_replace('`', '``', $a_name) . '`'; Replace by: if ( is_string($value) && (strlen($a_name)) && $a_name !== '*') { return '`' . str_replace('`', '``', $a_name) . '`';
  3. Add define('HTTPS_SERVER', 'https://www.mydomain.nl'); to configure.php to fix the problem
  4. Hi Jack, Just make de update. In admin/header_tags_seo_social.php the path to the icons give me no images: <input type="image" id="notused" name="500px" src="HTTPS_SERVER/images/socialbookmark/500px-16x16.png" alt="500px" title="500px" onclick="javascript:return ChangeStatus('16x16', '500px')"> Is SERVER not CATALOG ? I'm running OSC 2.3.3.1
  5. Ok Jack, no problem already removed the bubble entries. It's just for your information ;-)
  6. Hi Jack, Don't know if it's a new bug for you? When I run headertags_seo_update.php it makes dubble items in the config pages. Regards, Ivo
  7. And your Quote 3398: Find this around line 191 if (OPTIONS_ENABLED_BING_PRODUCT_CATEGORY == 1 && OPTIONS_BING_PRODUCT_CATEGORY == 'db') { $extraFields .= ' products_description.bing_product_category as bing_category, '; and add this below it } ;-)
  8. Thanks Jack, Problem SOLVED :-) In feeders.php I change line 21 : $currentVersion = 'GoogleBase V 3.3'; to $currentVersion = 'GoogleBase V 3.4'; Regards, Ivo
  9. Hi Jack - getting the same with your latest bingfeeder... error. the final ?> Parse error: syntax error, unexpected $end in /admin/bingfeeder.php on line 674 Any ideas? my shop is 2.3.3.1 on php 5.3.28
×
×
  • Create New...