HTTPS Login

HTTPS Login

av Glen MacPherson -
Antall svar: 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
Gjennomsnittlig vurdering: -
Som svar til Glen MacPherson

Re: HTTPS Login

av 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.
Som svar til Jonathan Sanders

Re: HTTPS Login

av Glen MacPherson -
Hi.

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

Cheers

Glen
Som svar til Glen MacPherson

Re: HTTPS Login

av Anthony Borrow -
Bilde av Core developers Bilde av Plugin developers Bilde av 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).