Quote Originally Posted by mc12345678 View Post
I did try to search the thread for this, but couldn't find anything with my search but helped someone through the following issue and thought it would be helpful to others if they are able to find this post...

User on ZC 1.5.1.
SSL enabled.

Problem observed is/was that when accessing the contact us page (/index.php?main_page=contact_us) the file tpl_contact_us_default.php had to be modified to support sending the contact us page entered information. Otherwise when trying to submit the form the page would reload, all of the entered data would be dropped, and the visitor would be advised to fill in the information that was just entered... Also firefox upon submission would indicate that the submitted content was not encrypted and asked to continue moving forward.. The login page had no problem and remained secure upon submission as well as other tested https: pages.

The fix was to modify includes/templates/winchester_black/templates/tpl_contact_us_default.php line 18 from:

Code:
<?php echo zen_draw_form('contact_us', zen_href_link(FILENAME_CONTACT_US, 'action=send')); ?>
To:
Code:
<?php echo zen_draw_form('contact_us', zen_href_link(FILENAME_CONTACT_US, 'action=send', 'SSL')); ?>
Thank you for posting I'll add this update the the list.

Thanks,

Anne