Search found 7 matches

by myomoto
Sun Jul 02, 2023 5:34 pm
Forum: Installation and configuration
Topic: implementing a new question type
Replies: 11
Views: 2347

Re: implementing a new question type

Well, you're correct. Bad choice for a host provider. However, you were able to help solve the issue. My code was way messed up. I have a few other issues now, but I think with the help of debug I can get them sorted. I appreciate your help. thank you very much!
by myomoto
Sun Jul 02, 2023 6:21 am
Forum: Installation and configuration
Topic: implementing a new question type
Replies: 11
Views: 2347

Re: implementing a new question type

Thanks! I renamed it. I also reached out to my Hosting provider for logs. Hopefully they can get the logs. I'm not sure I have access to see them.
by myomoto
Sat Jul 01, 2023 5:38 pm
Forum: Installation and configuration
Topic: implementing a new question type
Replies: 11
Views: 2347

Re: implementing a new question type

attached here is the db I altered to add the table for class.dropdown entry.
by myomoto
Sat Jul 01, 2023 5:31 pm
Forum: Installation and configuration
Topic: implementing a new question type
Replies: 11
Views: 2347

Re: implementing a new question type

next, here is: class.question.php <?php defined("IN_FORMA") or die('Direct access is forbidden.'); /* ======================================================================== \ | FORMA - The E-Learning Suite | | | | Copyright (c) 2013 (Forma) | | http://www.formalms.org | | License http://...
by myomoto
Sat Jul 01, 2023 5:30 pm
Forum: Installation and configuration
Topic: implementing a new question type
Replies: 11
Views: 2347

Re: implementing a new question type

You're right. I was missing the database entry. I'll attach to this thread. First I'll add the class.dropdown.php ============================================================================= <?php defined("IN_FORMA") or die('Direct access is forbidden.'); /* ==============================...
by myomoto
Fri Jun 30, 2023 10:14 pm
Forum: Installation and configuration
Topic: implementing a new question type
Replies: 11
Views: 2347

Re: implementing a new question type

The version I am using is Forma LMS - 2.3.0.2. I wrote a custom class (class.dropdown.php) and placed it where I saw the other question types in /formalms/appLms/modules/question/. I mimicked the other question types to write the code. In the same directory, there was class.question.php which called...
by myomoto
Thu Jun 29, 2023 7:31 pm
Forum: Installation and configuration
Topic: implementing a new question type
Replies: 11
Views: 2347

implementing a new question type

Good day, I have just one function I am using the FORMA LMS for, and that is testing. I'd like to use it for setting up a practice test for myself, and from what I see, there is just a couple of question types I need to add to make it viable. I've got the code already written for one of the types, b...