Search found 69 matches

by CisterNino
Fri Sep 01, 2017 2:59 pm
Forum: Installation and configuration
Topic: Help Please - White Screen only
Replies: 41
Views: 49357

Re: Help Please - White Screen only

go in debug mode and print here what you get after logging in
by CisterNino
Fri Sep 01, 2017 2:45 pm
Forum: Installation and configuration
Topic: Help Please - White Screen only
Replies: 41
Views: 49357

Re: Help Please - White Screen only

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
by CisterNino
Fri Sep 01, 2017 2:26 pm
Forum: Installation and configuration
Topic: Help Please - White Screen only
Replies: 41
Views: 49357

Re: Help Please - White Screen only

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
by CisterNino
Fri Sep 01, 2017 1:03 pm
Forum: Installation and configuration
Topic: Help Please - White Screen only
Replies: 41
Views: 49357

Re: Help Please - White Screen only

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 ...
by CisterNino
Fri Sep 01, 2017 12:35 pm
Forum: Installation and configuration
Topic: Help Please - White Screen only
Replies: 41
Views: 49357

Re: Help Please - White Screen only

ok. you have problems in copying and paste operation. You should have a grid with a "param_value" header. Just sent what is under the "param_value" column
by CisterNino
Fri Sep 01, 2017 12:23 pm
Forum: Installation and configuration
Topic: Help Please - White Screen only
Replies: 41
Views: 49357

Re: Help Please - White Screen only

Please run this query:
SELECT param_value FROM core_setting WHERE param_name = 'defaultTemplate'
by CisterNino
Fri Sep 01, 2017 12:01 pm
Forum: Installation and configuration
Topic: Help Please - White Screen only
Replies: 41
Views: 49357

Re: Help Please - White Screen only

go in "debug" mode, as Jasmines suggested, and print here the error messages.
by CisterNino
Fri Sep 01, 2017 11:28 am
Forum: Installation and configuration
Topic: Help Please - White Screen only
Replies: 41
Views: 49357

Re: Help Please - White Screen only

ok. Stewart, so the problem is that. You lost the defaultTemplate. You have to configure the default template. Run this query to fix: update core_setting set param_value = 'standard' where param_name = 'defaultTemplate' This will restore the "standard" template as default. In case you used ...
by CisterNino
Fri Sep 01, 2017 10:51 am
Forum: Installation and configuration
Topic: Help Please - White Screen only
Replies: 41
Views: 49357

Re: Help Please - White Screen only

Hi Stewart
this should work:
SELECT * FROM core_setting WHERE param_name = 'defaultTemplate';
by CisterNino
Fri Sep 01, 2017 10:02 am
Forum: Installation and configuration
Topic: Help Please - White Screen only
Replies: 41
Views: 49357

Re: Help Please - White Screen only

Hi Stewart.
Try this:
go on your forma database and run this query
SELECT * FROM 'core_setting' WHERE `param_name` = 'defaultTemplate';
then tell me the result.