-6

I made a Customer relationship manager in php for one of my clients and I am facing issue of unsecurity in some of it pages due to which it broke the menu and it does not work properly. Using google sxtension when I allow it to proceed unsecure the menu start working properly. I used password hash for password protection. When I click the below in chrome extension it start working properly. enter image description here

Alexandre Tranchant
  • 4,426
  • 4
  • 43
  • 70

2 Answers2

1

Are you talking about the Secure Socket Layer (SSL)?

Make sure all your links are https://directory/folder/file.ext and not http://directory/folder/file.ext

If you want the links to work with both a secure and non-secure web site, you can start your links with just the slashes and no protocol name and colon. //directory/folder/file.ext

Edit: OPs problem had to do with The Protocol-relative URL Are protocol-relative URLs relative URLs?

More information: https://www.paulirish.com/2010/the-protocol-relative-url/

arobson13
  • 59
  • 5
0

You could just have the CDN package downloaded and stored locally in your website's folder, then include it locally.

zygsid
  • 31
  • 5