Page 7 of 10 FirstFirst ... 56789 ... LastLast
Results 61 to 70 of 98
  1. #61
    Join Date
    Apr 2008
    Location
    Flint, Michigan
    Posts
    687
    Plugin Contributions
    0

    Default Re: Firefox SSL security warning

    Quote Originally Posted by need_help View Post
    Yes that works just great with the add to cart button.

    Thanks ever so much for your time and patience with me.
    I am having security warning error on my shopping cart page when customer clicks on quantity changes. If they try to change quantity. Does this file work with it also? Same changes? I do not see error on add to cart button at product page.

    Thanks, Kim

  2. #62
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Firefox SSL security warning

    If they come to the shopping cart from a secure page and try to click any submit they will see warning as the page is secure but the submits are to non-secure ...

    You can either change all submit buttons to use the current $request_type for secure and non-secure or endure that for when they happen to use that particular trail ...

    These have been updated on the form tags to use the $request_type to help eliminate this issue ...

    Example: on the tpl_product_info_display.php this line was changed to include the $request_type
    Code:
    <?php echo zen_draw_form('cart_quantity', zen_href_link(FILENAME_SHOPPING_CART, 'action=update_product', $request_type)); ?>
    in addition to other changes ...

    Sideboxes etc are also changed for this ...
    Last edited by Ajeh; 6 May 2010 at 03:14 PM. Reason: fix filename reference tpl_product_info_display.php
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  3. #63
    Join Date
    Oct 2008
    Location
    Corona, CA
    Posts
    7
    Plugin Contributions
    0

    Default Re: Firefox SSL security warning

    Hello,

    Ok, I am having this same basic issue with my site www.ccrsport.com However this issue is with Internet Explorer, Fire Fox and Safari...maybe more, but those are the 3 that I've checked thus far. Basically a warning pops up when a customer clicks the "Checkout" button and continues on through the checkout process. I'm not sure how long this has been going on, but my massive loss of business the last couple of months lead me to begin looking into why customers were ditching their carts and not coming back. This security warning I believe is scaring many of them off, as they don't know what is going on! PLEASE HELP!!!

  4. #64
    Join Date
    Apr 2008
    Location
    Flint, Michigan
    Posts
    687
    Plugin Contributions
    0

    Default Re: Firefox SSL security warning

    Quote Originally Posted by Ajeh View Post
    If they come to the shopping cart from a secure page and try to click any submit they will see warning as the page is secure but the submits are to non-secure ...

    You can either change all submit buttons to use the current $request_type for secure and non-secure or endure that for when they happen to use that particular trail ...

    These have been updated on the form tags to use the $request_type to help eliminate this issue ...

    Example: on the tpl_product_info_display.php this line was changed to include the $request_type
    Code:
    <?php echo zen_draw_form('cart_quantity', zen_href_link(FILENAME_SHOPPING_CART, 'action=update_product', $request_type)); ?>
    in addition to other changes ...

    Sideboxes etc are also changed for this ...
    Thank you! I tried several times and no error!
    Last edited by Ajeh; 6 May 2010 at 03:15 PM. Reason: fix filename reference tpl_product_info_display.php

  5. #65
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Firefox SSL security warning

    You still need to fix your manufacturers dropdown sidebox as that is a submit too ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  6. #66
    Join Date
    Apr 2008
    Location
    Flint, Michigan
    Posts
    687
    Plugin Contributions
    0

    Default Re: Firefox SSL security warning

    Quote Originally Posted by Ajeh View Post
    You still need to fix your manufacturers dropdown sidebox as that is a submit too ...
    Do you mean sideboxes/tpl_manufacturers-select.php? Got it.

    Thank you. Kim

  7. #67
    Join Date
    Jun 2008
    Location
    southwest Oklahoma
    Posts
    2
    Plugin Contributions
    0

    Default Re: Firefox SSL security warning

    I'm breaking down and asking for help after many hours of trying to fix my "Firefox" SSL security warning. I have version 1.38 and am using the CSS Flyout Header 1.5 (but of course, I know this must be an operator (sic) error). I have read, re-read, and re-re-re-read this thread and am having no success. My primary concern is that it occurs when "Add to Cart" is clicked after the user has hit the SSL area and then clicks "Shop Now." If I could get this resolved, I wouldn't worry about any other such errors at this time.

    Following the instructions in this thread, my file tpl_product_info_display.php has been modified to read:
    Code:
        echo zen_draw_form('multiple_products_cart_quantity', zen_href_link(FILENAME_PRODUCTS_ALL, zen_get_all_get_params(array('action')) . 'action=multiple_products_add_product', $request_type), 'post', 'enctype="multipart/form-data"');
    Yet, even after clearing my cache, forcing a reload, etc., when the page displays, the source reads: <form name="multiple_products_cart_quantity" action="http://www.sensuoussoaps.com/index.php?main_page=index&amp;cPath=1&amp;sort=20a&amp;action=multiple_products_ add_product" method="post" enctype="multipart/form-data"> and the warning continues.

    So, there it is. I'm at a loss and have spent way too many hours trying to fix something that I'm clearly not seeing properly. I have an index.htm page in my www directory, so if anyone wants to see the issue in action, it's happening at www.sensuoussoaps.com/index.php. Much appreciation for any suggestions or pointers in the right direction in advance.
    Lisa
    Last edited by Ajeh; 6 May 2010 at 03:15 PM. Reason: fix filename reference tpl_product_info_display.php

  8. #68
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Firefox SSL security warning

    Is it the All Products that is giving you trouble or when navigating the categories?

    If when navigating the categories, try changing the module products_listing.php instead ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  9. #69
    Join Date
    Jun 2008
    Location
    southwest Oklahoma
    Posts
    2
    Plugin Contributions
    0

    Default Re: Firefox SSL security warning

    That did it!

    Linda, thank you many times over! Since I've only got one category populated.....well, there's just no way I would have EVER thought to look to the file you pointed out --- and that was where I made the change that resolved my problem.

    Thanks again for your quick reply and assistance.

    Lisa

  10. #70
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Firefox SSL security warning

    You are most welcome ... glad that this was able to help ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

 

 
Page 7 of 10 FirstFirst ... 56789 ... LastLast

Similar Threads

  1. Suddenly getting SSL Security Warning
    By katco in forum General Questions
    Replies: 51
    Last Post: 11 Aug 2011, 04:32 PM
  2. SSL Security Warning IE8
    By feanix02 in forum General Questions
    Replies: 21
    Last Post: 16 Nov 2010, 02:22 AM
  3. SSL Security Warning
    By GTrotter in forum General Questions
    Replies: 11
    Last Post: 16 Jul 2009, 10:24 PM
  4. FireFox - Security Warning on Forms. HELP!
    By sartor in forum General Questions
    Replies: 8
    Last Post: 14 Feb 2009, 12:14 AM
  5. [NOT A BUG] Firefox SSL security warning
    By netbouy in forum Bug Reports
    Replies: 5
    Last Post: 28 Jan 2007, 05:19 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg