Page 3 of 5
Re: Help Please - White Screen only
Posted: Fri Sep 01, 2017 12:42 pm
by Stewart
Just says param_Value there in nothing under it.
Re: Help Please - White Screen only
Posted: Fri Sep 01, 2017 12:50 pm
by Stewart
I have navigated to the core_Setting table and am looking at the defaultTemplate (Param_Name) and in the table the param_value field is empty - What would you expect to see in that field?
Re: Help Please - White Screen only
Posted: Fri Sep 01, 2017 1:03 pm
by CisterNino
my previous query:
update core_setting set param_value = 'standard' where param_name = 'defaultTemplate'
should have inserted the value 'standard' in the param_value field. Indeed it looks it is still missing. That's why you are running in problem
You must fill that value absolutely.
Run the update query once again and check it runs without error.
Do you have write permission on the database ?
Re: Help Please - White Screen only
Posted: Fri Sep 01, 2017 1:38 pm
by Stewart
OK - I have manually entered Standard into the Table and can se the login page but when Trying to login is just says Session Expired??
Re: Help Please - White Screen only
Posted: Fri Sep 01, 2017 1:45 pm
by Stewart
Ran the query again and get this:
localhost/id2127680_vle/core_setting/
https://databases-auth.000webhost.com/d ... 3f96662d2c
Showing rows 0 - 0 (1 total, Query took 0.0009 seconds.)
Switch to
SELECT * FROM core_setting WHERE param_name = 'defaultTemplate';
defaultTemplate Standard template 255 0 1 4 1 0
Re: Help Please - White Screen only
Posted: Fri Sep 01, 2017 2:26 pm
by CisterNino
Stewart,
the problem, now, is the uppercase "Standard"
Run again the query
update core_setting set param_value = 'standard' where param_name = 'defaultTemplate'
and make sure you have the correct 'standard' value. 'Standard' it is wrong
Re: Help Please - White Screen only
Posted: Fri Sep 01, 2017 2:31 pm
by Stewart
Though this too but changed it already but still the same session expired - would this have something to do with the session timeout setting?
You have been fantastic with your help so far if there are any other suggestions I would be very grateful - These things happen at the worst time I have a course due to start on Monday!!
Re: Help Please - White Screen only
Posted: Fri Sep 01, 2017 2:45 pm
by CisterNino
Stewart,
in config.php check this setting
$cfg['session_lenght'] (just after $cfg['do_debug'] setting )
this should be this way:
$cfg['session_lenght'] = (120 * 60);
then clear your browser cache and log into forma.lms.
Let me know
Re: Help Please - White Screen only
Posted: Fri Sep 01, 2017 2:55 pm
by Stewart
This shows
$cfg['session_lenght'] = (120 * 60);
Not that then!
Re: Help Please - White Screen only
Posted: Fri Sep 01, 2017 2:59 pm
by CisterNino
go in debug mode and print here what you get after logging in