Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

4vrij

Pioneers
  • Posts

    20
  • Joined

  • Last visited

Posts 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. Run it as headertags_seo_update.php?reset_options=true. It's safe to do that even though it has been ran already and it will clean up the duplicate entries.

    Ok Jack, no problem already removed the bubble entries.

     

    It's just for your information ;-) 

  4. Jack - getting the same with your latest bingfeeder... executing was giving http500 server error.  the final ?> is throwing the syntax error in dreamweaver...fiddled with it but couldn't see the problem. queenzukies version works but is missing some of your latest improvements. my shop is 2.3.4 on php 5.2.17

    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...