generalexperts Posted October 17, 2014 Share Posted October 17, 2014 (edited) I edited my frontcontroller.php by changing publick $ssl; --> public $ssl =true; this made my entire site Secure. 3 forms initally showed up that were http and not https <form id="productsSortForm" action="http://www.domain.com/18-big-boat-blocks"> <form action="http://www.domain.com/18-big-boat-blocks" method="get" class="nbrItemPage pagination"> <form action="http://www.domain.com/18-big-boat-blocks" method="get" class="pagination"> The top one was corrected by changing it to <form id="productsSortForm" action="{$link->getPageLink('search',true)|escape:'html':'UTF-8'}"> However I am still unable to change the last two: <form action="{if !is_array($requestNb)}{$requestNb}{else}{$requestNb.requestUrl}{/if}" method="get" class="nbrItemPage pagination"> <form action="{if !is_array($requestNb)}{$requestNb}{else}{$requestNb.requestUrl}{/if}" method="get" class="pagination"> Does anyone know how to make these form actions produce https? This would make my entire site show the green padlock instead of yellow for category and product pages. Thank you! Edited November 11, 2014 by generalexperts (see edit history) Link to comment Share on other sites More sharing options...
Dh42 Posted October 17, 2014 Share Posted October 17, 2014 I haven't tested this, but it should work. <form action="{if !is_array($requestNb)}{$requestNb|replace:'http':'https'}{else}{$requestNb.requestUrl|replace:'http':'https'}{/if}" method="get" class="nbrItemPage pagination"> <form action="{if !is_array($requestNb)}{$requestNb|replace:'http':'https'}{else}{$requestNb.requestUrl|replace:'http':'https'}{/if}" method="get" class="pagination"> Link to comment Share on other sites More sharing options...
generalexperts Posted October 18, 2014 Author Share Posted October 18, 2014 I gave this a try and it didn't solve the problem. Any ideas? Thanks! Link to comment Share on other sites More sharing options...
generalexperts Posted October 20, 2014 Author Share Posted October 20, 2014 Still looking for help. Anyone? Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now