Quick Sign In:  

Forum: General Discussion

Topic: Insecure logins on virtualdj.com

This topic is old and might contain outdated or incorrect information.

I have been accessing the virtualdj.com website from home and work and my phone and can't get a secure login. Is anyone else having the same problem?
 

Posted Tue 14 Mar 17 @ 3:13 pm
OK turns out google has your correct website URL = https://www.virtualdj.com yet if someone types in virtualdj.com in the address bar it goes to the insecure site (bad) so the web developers @virtualdj need to modify the .htaccess file or modify your server code to automatically redirect insecure http to https.

For example in php using redirection something like this:

if($_SERVER["HTTPS"] != "on")
{
header("Location: https://" . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]);
exit();
}
 

Posted Sat 18 Mar 17 @ 5:39 pm


(Old topics and forums are automatically closed)