Page 1 of 1
Maintainanc mode
Posted: Fri May 30, 2014 3:29 am
by sachintholia
I enabled maintainance mode from general > advance option but now not able to login with /index.php?passwd=password
Is there any alternative way to disable maintainance mode
Re: Maintainanc mode
Posted: Fri May 30, 2014 10:38 am
by max
Hi,
the syntax you quoted seems correct to me. Rather, are you sure that the password you used is "password"? By default, it is "maintenance".
So the url would normally be /index.php?passwd=maintenance
Re: Maintainanc mode
Posted: Fri May 30, 2014 11:33 am
by alberto
No, the default psw is "
manutenzione", so the url may be:
http://www.yourplatform.com/index.php?p ... nutenzione
If you changed and forgot it you can turn the maintenance off from the db, in the table core_setting change the value for field "maintenace" to off
Re: Maintainanc mode
Posted: Fri May 30, 2014 11:41 am
by canelli
To turn off "maintainance mode" out of FormaLms configuration panel , you must change the setting in the db.
With a db administration tool as phpmyadmin, you must apply this sql statement:
UPDATE `core_setting` SET `param_value` = 'off' WHERE `core_setting`.`param_name` = 'maintenance';
You can check the maintainance default password in the database with this query:
SELECT *FROM `core_setting` WHERE `param_name` LIKE 'maintenance%'