Search found 266 matches

by jasmines
Mon Jun 13, 2016 10:19 am
Forum: Installation and configuration
Topic: FATAL ERROR [PHP 5.5]
Replies: 5
Views: 10468

Re: FATAL ERROR [PHP 5.5]

I can't reproduce, please could you provide step by step procedure?
by jasmines
Tue Mar 15, 2016 9:28 pm
Forum: Plugins & patches
Topic: Integration with Wordpress
Replies: 1
Views: 5575

Re: Integration with Wordpress

Hi there, contact me in private and I will quote your request. I have a developed an integration module that works perfectly, with a plugin to buy courses via woocommerce.
by jasmines
Sun Jan 17, 2016 5:13 pm
Forum: Amministrazione
Topic: Bug trovato: codici ad utilizzo illimitato
Replies: 4
Views: 6993

Re: Bug trovato: codici ad utilizzo illimitato

Ha ragione, e non c'è bisogno di riprodurlo, basta leggere la query!
by jasmines
Sun Oct 18, 2015 5:45 pm
Forum: Amministrazione
Topic: Codici accesso corso, utilizzo limitato
Replies: 17
Views: 20049

Re: Codici accesso corso, utilizzo limitato

Problema 1 è al limite in function resetUserCode di /lib/lib.code.php
Problema 2 non sussiste, a me non succede, oppure non riesco a replicarlo.
by jasmines
Mon Aug 10, 2015 11:51 am
Forum: E-Learning Management & Frontend
Topic: Tiny MCE Editor in Test feedback management not saving
Replies: 3
Views: 4767

Re: Tiny MCE Editor in Test feedback management not saving

See in appLms/lib/lib.assessment_rule.php ,

Code: Select all

public function save () {
...
		$feedback_txt =Get::pReq('feedback_txt', DOTY_STRING, '');
Change to:

Code: Select all

		$feedback_txt =Get::pReq('feedback_txt', DOTY_MIXED, '');
by jasmines
Thu Jul 23, 2015 4:30 pm
Forum: Installation and configuration
Topic: File Upload Size
Replies: 1
Views: 4384

Re: File Upload Size

in /lib/lib.form.php change: $p_size = intval(ini_get('post_max_size')); $u_size = intval(ini_get('upload_max_filesize')); $max_kb = ( $p_size < $u_size ? $p_size : $u_size ); $other_after = ' (Max. '.$max_kb.' Mb) '.$other_after; with: $p_size = ini_get('post_max_size'); $u_size = ini_get('upload_m...
by jasmines
Fri Jul 17, 2015 11:52 am
Forum: Gestione Didattica e Frontend
Topic: Errore modulo Presence
Replies: 1
Views: 3806

Errore modulo Presence

Ciao, vi faccio notare che il modulo Presence (per gestire presenze degli utenti in un'aula, lato FRONT, quindi da parte di un docente) utilizza la funzione getUserPresenceForDate, definita in /appLms/lib/lib.date.php, in cui c'è il controllo seguente: if(Docebo::user()->getUserLevelId() != ADMIN_GR...
by jasmines
Thu Jun 18, 2015 9:33 am
Forum: Gestione Didattica e Frontend
Topic: Bug nell'export dei test in formato GIFT
Replies: 1
Views: 3478

Bug nell'export dei test in formato GIFT

Ciao, ho beccato un bug nell'export dei test in formato GIFT. In pratica, se si mette un punteggio negativo in caso di risposta errata, questo non viene codificato. Viceversa, se per esempio si mette un punteggio fuori standard (3 anziché il classico 1) per la risposta corretta, questo viene codific...