HTTPS Login

HTTPS Login

by Glen MacPherson -
Number of replies: 3
I selected the option for secure login, but I've sinced discovered that my remotely hosted server cannot/will not serve secure pages.

I am locked out of my site now!

Have I lost all the work I've done?

Thanks and Cheers

Glen
Average of ratings: -
In reply to Glen MacPherson

Re: HTTPS Login

by Jonathan Sanders -
If you are brave and you have access to the database; you can go into the config table and find the record with name = " loginhttps". Set the value = "0" instead of "1". Fixed.
In reply to Jonathan Sanders

Re: HTTPS Login

by Glen MacPherson -
Hi.

Thanks, but there is no record with the name "loginhttps" in my Moodle table "mdle1".

Cheers

Glen
In reply to Glen MacPherson

Re: HTTPS Login

by Anthony Borrow -
Picture of Core developers Picture of Plugin developers Picture of Testers
Typically the table name is mdl_config. If you have access to phpmyadmin you can use the gui interface to change the value. Otherwise you may wish to try the following sql command (if you can get to a mysql prompt).

UPDATE mdl_config SET value=0 where name='loginhttps';

Best of luck getting back into your site.

p.s. - I learned this from experience (i.e. I did the same thing and locked myself out).