CommunityModding Posted November 4, 2015 Share Posted November 4, 2015 Hi there, I've been trying to get my SSL to work for the past few days to not much luck. The certificate works and the https works, it's just there's no green padlock. I went onto www.whynopadlock.com and it said: Insecure <form> call. Found on line # 349 in file: communitymodding.com/index.html I am using IPS 4 My website is https://communitymodding.com/ Any help is GREATLY appreciated! Thanks, - Matt Sorry, accidentally posted twice Quote Link to comment Share on other sites More sharing options...
katos Posted November 5, 2015 Share Posted November 5, 2015 I had this once.open your HTML file and replace http with https for any external calls. :) 1 Quote Link to comment Share on other sites More sharing options...
Phun Posted November 5, 2015 Share Posted November 5, 2015 (edited) <form accept-charset='utf-8' action='http://communitymodding.com/index.php?/search/' method='post'> <meta itemprop="target" content="http://communitymodding.com/index.php?/search/&q={q}"> <a href='#' id='elSearchFilter' data-ipsMenu data-ipsMenu-selectable='radio' data-ipsMenu-appendTo='#elSearch' class="ipsHide"> <span data-role='searchingIn'> All Content </span> <i class='fa fa-caret-down'></i> </a> <ul id='elSearchFilter_menu' class='ipsMenu ipsMenu_selectable ipsMenu_narrow ipsHide'> <li class='ipsMenu_item ipsMenu_itemChecked' data-ipsMenuValue='all'> <a href='http://communitymodding.com/?app=core&module=search&controller=search&csrfKey=2fc04711a3c2ad61a1e63c0bae5c3f5b' title='All Content'>All Content</a> </li> <li class='ipsMenu_sep'><hr></li> <li data-role='globalSearchMenuOptions'></li> <li class='ipsMenu_item ipsMenu_itemNonSelect'> <a href='http://communitymodding.com/index.php?/search/' accesskey='4'><i class='fa fa-cog'></i> Advanced Search</a> </li> </ul> <input type='search' id='elSearchField' placeholder='Search...' name='q' itemprop="query-input"> <button type='submit'><i class='fa fa-search'></i></button> </form>Your search form action starts with http, not https. Change the stuffs.Depending on which IPS version you're using this may or may not have been fixed already. Edited November 5, 2015 by Phun 1 Quote Link to comment Share on other sites More sharing options...
CommunityModding Posted November 6, 2015 Author Share Posted November 6, 2015 Cheers guys! I'll try this and get back to you with the results! :) <form accept-charset='utf-8' action='http://communitymodding.com/index.php?/search/' method='post'> <meta itemprop="target" content="http://communitymodding.com/index.php?/search/&q={q}"> <a href='#' id='elSearchFilter' data-ipsMenu data-ipsMenu-selectable='radio' data-ipsMenu-appendTo='#elSearch' class="ipsHide"> <span data-role='searchingIn'> All Content </span> <i class='fa fa-caret-down'></i> </a> <ul id='elSearchFilter_menu' class='ipsMenu ipsMenu_selectable ipsMenu_narrow ipsHide'> <li class='ipsMenu_item ipsMenu_itemChecked' data-ipsMenuValue='all'> <a href='http://communitymodding.com/?app=core&module=search&controller=search&csrfKey=2fc04711a3c2ad61a1e63c0bae5c3f5b' title='All Content'>All Content</a> </li> <li class='ipsMenu_sep'><hr></li> <li data-role='globalSearchMenuOptions'></li> <li class='ipsMenu_item ipsMenu_itemNonSelect'> <a href='http://communitymodding.com/index.php?/search/' accesskey='4'><i class='fa fa-cog'></i> Advanced Search</a> </li> </ul> <input type='search' id='elSearchField' placeholder='Search...' name='q' itemprop="query-input"> <button type='submit'><i class='fa fa-search'></i></button> </form>Your search form action starts with http, not https. Change the stuffs.Depending on which IPS version you're using this may or may not have been fixed already.I had this once.open your HTML file and replace http with https for any external calls. :)How do I directly edit the HTML files? Quote Link to comment Share on other sites More sharing options...
Phun Posted November 10, 2015 Share Posted November 10, 2015 What version of IPS4 are you using? Quote Link to comment Share on other sites More sharing options...
titcrunch Posted November 10, 2015 Share Posted November 10, 2015 (edited) phun with htacces for redirect all link in http to https is more simple i think no ? and no prob with the next update or versionRewriteEngine On RewriteCond %{HTTPS} !=on RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R,L]you make same with portRewriteCond %{SERVER_PORT} ^80$ RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L] Edited November 10, 2015 by titcrunch Quote Best Regards Titcrunch French webdesigner in camel Design, Support, help and tutorials in : Forum Camel Design. Link to comment Share on other sites More sharing options...
CommunityModding Posted November 11, 2015 Author Share Posted November 11, 2015 phun with htacces for redirect all link in http to https is more simple i think no ? and no prob with the next update or versionRewriteEngine On RewriteCond %{HTTPS} !=on RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R,L]you make same with portRewriteCond %{SERVER_PORT} ^80$ RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L] I have already done that. The issue is that there is no green padlock because the search html is 'insecure'. Quote Link to comment Share on other sites More sharing options...
titcrunch Posted November 11, 2015 Share Posted November 11, 2015 is strange how the search can't be insecure ? your htaccess normaly change already directly all http to https ... your form is external ? Quote Best Regards Titcrunch French webdesigner in camel Design, Support, help and tutorials in : Forum Camel Design. Link to comment Share on other sites More sharing options...
CommunityModding Posted November 12, 2015 Author Share Posted November 12, 2015 is strange how the search can't be insecure ? your htaccess normaly change already directly all http to https ... your form is external ?No, I believe it's because the search has **http**://communitymodding.com/?app=core&module=search&controller=search&csrfKey=2fc04711a3c2ad61a1e63c0bae5c3f5bWhen it should be**https**://communitymodding.com/?app=core&module=search&controller=search&csrfKey=2fc04711a3c2ad61a1e63c0bae5c3f5b Quote Link to comment Share on other sites More sharing options...
DarKMaSk Posted March 24, 2016 Share Posted March 24, 2016 (edited) I have the same problem and when I checked with whynopadlock.com, it showed" "Insecure <form> call. Found on line # 652 in file: exben.net/index.html Insecure <form> call. Found on line # 694 in file: exben.net/index.html (Note: Chrome will show a security error for any secure page with an insecure <form> call on the page)" I have converted the result page in pdf: http://www.mediafire.com/download/r7ixz0n7m7ujru4/Why_No_Padlock__-_Why_is_my_SSL_web_page_insecure__Find_the_culprit%21.pdf. Please help. Edited March 24, 2016 by DarKMaSk Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.