Insecure Form Call

I checked my site ssl with whynopadlock.com got a result saying “insecure Form Call on line 168” of my website homepage, I viewed the html source code and found line 168 - http:// mywebsite.com/listing.php How can I edit this line to https?

Hi HIGHPRIEST welcome to the forum.

OK, I must be missing something.

Can’t you simply edit the file to change the protocol by adding the “s”?

1 Like

I could do but how?

How did you create the HTML for that page to begin with?

I bought the software , I load the site homepage in Google Chrome and view the source code, I found the problem but don’t know how to edit the listings.php file

The easiest way to find the source of the problem would be to use you IDE / text editor to do a “find in files” / “search in files” for the string “thewebsite.com” and look at what that file does.
If the protocol is hard-coded simply add the “s”.

Otherwise not so easy. Start with the file you know is involved and look at any files that are "include"ed, or "require"ed.

If the links have ids / classes or are wrapped in tags that have ids / classes, searching files for those values could help locate the problem file too.

Thanks for your advice

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.