Page 6 of 10 FirstFirst ... 45678 ... LastLast
Results 51 to 60 of 98
  1. #51
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Firefox SSL security warning

    Quote Originally Posted by need_help View Post
    Could you walk me through that and tell me what file to edit and what i should put in the file and replace ?

    Thanks.
    This is the change for the tpl_products_info_default.php ... you will need to take it from there or you can contact me privately for further di$cu$$ion$ on cu$tomizing your $ite ...
    Code:
    <?php echo zen_draw_form('cart_quantity', zen_href_link(zen_get_info_page($_GET['products_id']), zen_get_all_get_params(array('action')) . 'action=add_product', $request_type), 'post', 'enctype="multipart/form-data"') . "\n"; ?>
    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!

  2. #52
    Join Date
    Feb 2009
    Posts
    210
    Plugin Contributions
    0

    Default Re: Firefox SSL security warning

    Quote Originally Posted by Ajeh View Post
    This is the change for the tpl_product_info_display.php ... you will need to take it from there or you can contact me privately for further di$cu$$ion$ on cu$tomizing your $ite ...
    Code:
    <?php echo zen_draw_form('cart_quantity', zen_href_link(zen_get_info_page($_GET['products_id']), zen_get_all_get_params(array('action')) . 'action=add_product', $request_type), 'post', 'enctype="multipart/form-data"') . "\n"; ?>
    Yes that works just great with the add to cart button.

    Thanks ever so much for your time and patience with me.
    Last edited by Ajeh; 6 May 2010 at 03:13 PM. Reason: fix filename reference tpl_product_info_display.php

  3. #53
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Firefox SSL security warning

    Thanks for the update that this worked for you ...
    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!

  4. #54
    Join Date
    Apr 2009
    Posts
    2
    Plugin Contributions
    0

    customer issue Re: Firefox SSL security warning

    Hi Ajeh,

    I have same problem with FireFox SSL security. I cannot find the tpl_products_info_default.php to start using you advice and fix this problem.

    CyberPopLLC

  5. #55
    Join Date
    Jul 2009
    Posts
    3
    Plugin Contributions
    0

    Default Re: Firefox SSL security warning

    Hello
    A friend has a site running zencart and is having ssl issues. He is getting a security warning logging in now with IE 'this webpage contains content that will not be delivered using a secure HTTPS connection' .
    Previously he was getting invalid ssl bad cert error when logging in with Firefox. This was fixed by his IT guy. But now he is getting the IE error reported above. His IT guy proposed securing the whole site but have heard that could cause bandwidth problems. Is there an easier(and cheaper) way to solve this problem.
    Thanks

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

    Default Re: Firefox SSL security warning

    Have you an URL that we could perhaps peek at to see what is wrong with your site?

    Securing the whole site is usually the result of something not configured correct ...
    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!

  7. #57
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Firefox SSL security warning

    Both FireFox and IE has the error ... you have a hard coded image on the main page ...

    You need to use a relative address:
    /img138/3293/mainpageun6.jpg

    instead of the hard coded full non-secure address that you have ...

    Check for any others that you have but that is what I saw on initially checking your site ...
    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!

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

    Default Re: Firefox SSL security warning

    NOTE: any submits done on an SSL page that goes to a non-ssl, such as the search, will also show these errors ...

    You would need to customize the code to handle the changing back and forth between these ...

    Example, the tpl_search_header.php has coded:
    Code:
      $content .= zen_draw_form('quick_find_header', zen_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '', 'NONSSL', false), 'get');
    See if you can use:
    Code:
      $content .= zen_draw_form('quick_find_header', zen_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '', $request_type, false), 'get');
    to fix that ...

    There are others like this ... but that will then use the submit on SSL and things like that will remain on SSL until a non-ssl link is clicked ...
    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. #59
    Join Date
    Feb 2008
    Location
    Washington State
    Posts
    236
    Plugin Contributions
    0

    Default Re: Firefox SSL security warning

    Quote Originally Posted by Ajeh View Post
    This is the change for the tpl_product_info_display.php ... you will need to take it from there or you can contact me privately for further di$cu$$ion$ on cu$tomizing your $ite ...
    Code:
    <?php echo zen_draw_form('cart_quantity', zen_href_link(zen_get_info_page($_GET['products_id']), zen_get_all_get_params(array('action')) . 'action=add_product', $request_type), 'post', 'enctype="multipart/form-data"') . "\n"; ?>
    This worked for me as well. However, I had to update a different file: tpl_product_music_info_display.php (since all my products are music)
    Last edited by Ajeh; 6 May 2010 at 03:14 PM. Reason: fix filename reference tpl_product_info_display.php
    ~ jasmel : My Store Using Contributions: Wallet Theme | Simple Google | Quantity Discounts | Godaddy | FAQ's | Confirm Email Address Entry | Admin login as customer | Newsletter Subscribe | CampaingMonitor

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

    Default Re: Firefox SSL security warning

    The different Product Types are very similar ... glad that this is working for you now ...
    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 6 of 10 FirstFirst ... 45678 ... 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