Jump to content
WebFlake

SSL Help! "Insecure <form> call


CommunityModding

Recommended Posts

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 :facepalm:

Link to comment
Share on other sites

				<form accept-charset='utf-8' action='http://communitymodding.com/index.php?/search/' method='post'>
					<meta itemprop="target" content="http://communitymodding.com/index.php?/search/&amp;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&amp;module=search&amp;controller=search&amp;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 by Phun
  • Upvote 1
Link to comment
Share on other sites

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/&amp;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&amp;module=search&amp;controller=search&amp;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?

Link to comment
Share on other sites

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 version

RewriteEngine On
 RewriteCond %{HTTPS} !=on
 RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R,L]

you make same with port

RewriteCond %{SERVER_PORT} ^80$
 RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]

 

Edited by titcrunch

Best Regards
Titcrunch

French webdesigner in camel Design, Support, help and tutorials in : Forum Camel Design.

Link to comment
Share on other sites

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 version

RewriteEngine On
 RewriteCond %{HTTPS} !=on
 RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R,L]

you make same with port

RewriteCond %{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'.

Link to comment
Share on other sites

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&amp;module=search&amp;controller=search&amp;csrfKey=2fc04711a3c2ad61a1e63c0bae5c3f5b

When it should be

**https**://communitymodding.com/?app=core&amp;module=search&amp;controller=search&amp;csrfKey=2fc04711a3c2ad61a1e63c0bae5c3f5b
Link to comment
Share on other sites

  • 4 months later...

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 by DarKMaSk
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...