australopitecu Posted October 18, 2014 Share Posted October 18, 2014 (edited) Buenas tardes, Me aparece un error de seguridad SSL que no consigo resolver. Es el mismo error en todas las páginas que deben estar encriptadas. Este error provoca que aparezca el triángulo amarillo en lugar del candado verde. El caso es que la consola del depurador indica lo siguiente: The page at 'https://www.limpiarcoche.com/es/contactenos' was loaded over HTTPS, but is submitting data to an insecure location at 'http://www.limpiarcoche.com/es/buscar': this content should also be submitted over HTTPS. Ý ahí está la pega....el convertir el http en https... Si alguien me ayuda se lo agradecería. Web: www.limpiarcoche.com Saludos, Alejandro Edited October 19, 2014 by nadie Moderación del foro añade la palabra "Solucionado" al titulo del tema. (see edit history) Link to comment Share on other sites More sharing options...
australopitecu Posted October 18, 2014 Author Share Posted October 18, 2014 Resuelto... Pongo la solución por si a alguien le pasa algún día. Ir al modulo: /blocksearch Despues abrir /blocksearch-top.tpl Cambiar: ******************************** <!-- block seach mobile --> {if isset($hook_mobile)} <div class="input_search" data-role="fieldcontain"> <form method="get" action="{$link->getPageLink('search')}" id="searchbox"> <input type="hidden" name="controller" value="search" /> <input type="hidden" name="orderby" value="position" /> <input type="hidden" name="orderway" value="desc" /> <input class="search_query" type="search" id="search_query_top" name="search_query" placeholder="{l s='Search' mod='blocksearch'}" value="{if isset($smarty.get.search_query)}{$smarty.get.search_query|htmlentities:$ENT_QUOTES:'utf-8'|stripslashes}{/if}" /> </form> </div> {else} <!-- Block search module TOP --> <div id="search_block_top"> <form method="get" action="{$link->getPageLink('search')}" id="searchbox"> <p> <label for="search_query_top"><!-- image on background --></label> <input type="hidden" name="controller" value="search" /> <input type="hidden" name="orderby" value="position" /> <input type="hidden" name="orderway" value="desc" /> <input class="search_query" type="text" id="search_query_top" name="search_query" value="{if isset($smarty.get.search_query)}{$smarty.get.search_query|htmlentities:$ENT_QUOTES:'utf-8'|stripslashes}{/if}" /> <input type="submit" name="submit_search" value="" class="button" /> </p> </form> </div> **************************** Por esto otro: *************************** <!-- block seach mobile --> {if isset($hook_mobile)} <div class="input_search" data-role="fieldcontain"> <form method="get" action="{$link->getPageLink('/search', true)|addslashes}" id="searchbox"> <input type="hidden" name="controller" value="search" /> <input type="hidden" name="orderby" value="position" /> <input type="hidden" name="orderway" value="desc" /> <input class="search_query" type="search" id="search_query_top" name="search_query" placeholder="{l s='Search' mod='blocksearch'}" value="{if isset($smarty.get.search_query)}{$smarty.get.search_query|htmlentities:$ENT_QUOTES:'utf-8'|stripslashes}{/if}" /> </form> </div> {else} <!-- Block search module TOP --> <div id="search_block_top"> <form method="get" action="{$link->getPageLink('/search',true)}" id="searchbox"> <p> <label for="search_query_top"><!-- image on background --></label> <input type="hidden" name="controller" value="search" /> <input type="hidden" name="orderby" value="position" /> <input type="hidden" name="orderway" value="desc" /> <input class="search_query" type="text" id="search_query_top" name="search_query" value="{if isset($smarty.get.search_query)}{$smarty.get.search_query|htmlentities:$ENT_QUOTES:'utf-8'|stripslashes}{/if}" /> <input type="submit" name="submit_search" value="" class="button" /> </p> </form> </div> ********************+ Parece muy enbrollado pero solo se cambian 2 lineas (las he puesto en negrita) Este tema habla de lo mismo: http://www.prestashop.com/forums/topic/355246-solved-quick-search-block-module-provokes-unsecure-ssl/page-2?hl=%20ssl%20%20error%20%20search%20%20box Saludos a todos y gracias Link to comment Share on other sites More sharing options...
Recommended Posts