Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Huroman

Pioneers
  • Posts

    18
  • Joined

  • Last visited

Posts posted by Huroman

  1. Ok, at last. After many hours in this, at last i could achieve it.

     

    This is really simple, you have to add the same "checkout_process.php" code (QTPro, obviously) to your payment system, for eg.:

     

    I'm using "CIC Cybermut" (French bank), the contribution uses "cmcic_response.php" who has a duplicate code from checkout_process, one for "testing" and another for "production". In my case, i had to add the code twice, taking care about the break lines and spaces.

     

    I guess it could be the same with another payment systems.

     

    The store is here: http://jesuisjedanse.com/catalog

     

    Saludos.

  2. Hello there,

    i've one product in three sizes.

    qtpro works quite good.

    but when I change the number of products (in shopping cart) of size 1 over the number I've in stock of size 1, there is no error report - so a customer has the option to buy more products of size 1 than in stock.

    He also has the option to buy an article which ist out of stock (using multiple dropdowns) - there is no error reporting at all.

     

    Has anybody an idea how to solve these problems?

     

    Same issue here. Any idea?

  3. Just for the record, if you want to make the width fixed but the height taller as possible, comment (or delete) the height:

     

    <script type="text/javascript">
    $('#piGal ul').bxGallery({
     maxwidth: 270,
     //maxheight: 200, <--- Doesn't matter this
     thumbwidth: <?php echo (($pi_counter > 1) ? '84' : '0'); ?>,
     thumbcontainer: 270,
     load_image: 'ext/jquery/bxGallery/spinner.gif'
    });
    </script>
    

  4. The code in "product_info.php" has a minor error, but that error was piss me off for a little time.

     

    After the copy/paste, search into your code a "pod" word, just modify it by "pov" and voilà:

     

    Bad code :

    //<!-- AJAX Attribute Manager -->
    	$products_options_query = tep_db_query("select pov.products_options_values_id, pov.products_options_values_name, pa.options_values_price, pa.price_prefix from " . TABLE_PRODUCTS_ATTRIBUTES . " pa, " . TABLE_PRODUCTS_OPTIONS_VALUES . " pod where pa.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and pa.options_id = '" . (int)$products_options_name['products_options_id'] . "' and pa.options_values_id = pov.products_options_values_id and pov.language_id = '" . (int)$languages_id . "' order by pa.products_options_sort_order");
    //<!-- AJAX Attribute Manager end -->
    

     

    Good code:

    //<!-- AJAX Attribute Manager -->
    	$products_options_query = tep_db_query("select pov.products_options_values_id, pov.products_options_values_name, pa.options_values_price, pa.price_prefix from " . TABLE_PRODUCTS_ATTRIBUTES . " pa, " . TABLE_PRODUCTS_OPTIONS_VALUES . " pov where pa.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and pa.options_id = '" . (int)$products_options_name['products_options_id'] . "' and pa.options_values_id = pov.products_options_values_id and pov.language_id = '" . (int)$languages_id . "' order by pa.products_options_sort_order");
    //<!-- AJAX Attribute Manager end -->
    

  5. Page Control will only show pages with the Header Tags code in the <head> section, or all pages in a 2.3 or BTS based shop. The Add Missing Pages option is for older shops where the code to the <head> section is added to a new file. It may not show up automatically, thus the option. In your case, since you are using 2.3, it doesn't serve any purpose.

     

    I see. Well, so much thank you for your answers. I appreciate it.

     

    H-

  6. I don't think so, i'm pretty sure i am who is missing something, my english is not really good but ok, there i go:

     

    When i go through Page Control -> Add Missing Pages, nothing is showing on, i expected that the option loaded something similar like "index.php".

     

    My question is: What in the option "Add Missing Pages" must show?

     

    Thank you, you've been so gently.

     

    What i see:

    capturadepantalla201110m.png

  7. Never mind. This files just appears suddenly "banner_rotator_old.php". Just i deleted it and voilà, everything's fine.

     

    [04-Oct-2011 17:41:08] PHP Fatal error:  Cannot redeclare class banner_rotator in /Applications/MAMP/htdocs/01-osCommerce/catalog/includes/modules/front_page/banner_rotator_old.php on line 13
    

  8. Hi, Jack. I'm using the 2.3.1 version.

     

    I made a comparison between template_top in local and remote host and everything seems right. It continues like that, not showing on. Any ideas why? Actually it doesn't show me any errors.

     

    Thank you.

  9. Sorry for posting this but i couldn't find a good answer/result with the Search "in topic".

     

    Well, my issue, in Page Control -> Add Missing Pages. What supposed do i have to see/do? Because nothing is showing on.

     

    My "header_tags.php" has 755, my test (into Header Tags SEO) is OK and everything seems good.

     

    What do i have to do, so?, What kind of pages supposed to be shown?

     

    Please, excuse me if my question is odd or dumb, but i can't find the answer with the forum search field (in topic, i mean, it show me just the topic and not the comments, per se).

     

    Thank you in advance.

  10. If you have this ERROR:

     

    1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'TYPE=MyISAM' at line 1
    

     

    Just, open your file "headertags_seo_install.php", find TYPE=MyISAM and replace for ENGINE=MyISAM

     

    That's it.

     

    Remember, for better performance, uninstall *again* your tables with the "headertags_seo_uninstall.php" and install it.

×
×
  • Create New...