Quantcast
Channel: DOCU - Foren
Viewing all 6544 articles
Browse latest View live

Administration - Installation - Core: Re: PHP7.3 and installation document for session.hash_function.

$
0
0
Thank you for the hint! Does the setting lead to errors with PHP>=7.1 or is it simply ignored? If the later is the case, I would argue that it should remain there, since we are still supporting PHP 7.0 with ILIAS 5.4. With the release of ILIAS 6 it should be removed, however.

Administration - Installation - Core: Re(2): PHP7.3 and installation document for session.hash_function.

$
0
0

I am not sure this causes any difficulty.


However, I am really facing problem with PHP7.3.14 that always failed large( > 3M) size of file to upload.


I have no changed php.ini in few years long however, it happened after updated PHP 7.3.14 in last month.


So, try to change memory_limit, upload_max_filesize, post_max_size on php.ini.


It does not take effect.


Please advise if someone knows solution.

Administration - Installation - Core: Re(2): PHP7.3 and installation document for session.hash_function.

$
0
0
To restart PHP-FPM solved php.ini problem.
However, uploding large size file (about 20M mp4) failed.

Jobs and User Communities: Handwerkskammer Konstanz sucht MitarbeiterIn im Bildungsmanagement - Schwerpunkt eLearning

$
0
0

Hallo!

Für unser kleines "ILIAS-Support-Team" suchen wir eine/n Mitarbeiter/in:



Die Handwerkskammer Konstanz ist eine Körperschaft des öffentlichen Rechts und vertritt die Interessen von über 12.000 Betrieben.


Wir suchen für den Fachbereich Bildungsmanagement zum nächstmöglichen Zeitpunkt einen


Mitarbeiter Bildungsmanagement Schwerpunkt eLearning (m/w/d)

Ihre Aufgaben

  • Konzipieren und Erstellen von eLearning-Inhalten zu unterschiedlichen Themengebieten, in der Hauptsache digitale Lernfortschrittskontrollen, interaktive Lernvideos und SCORM Lernmodule mittels Autorentool

  • Unterstützen von Werkstattmeistern und Dozenten bei der Erstellung von eLearning Komponenten

  • Konzipieren und Durchführen von Weiterbildungen zur Vermittlung von eLearning Kompetenzen

  • Management und Durchführung von Webinaren

  • Unterstützen der Fachbereichsleitung in inhaltlichen und strategischen Fragestellungen

  • Administrieren unseres ILIAS Lernmanagement Systems


Ihr Profil

  • Abgeschlossenes Studium im Bereich eLearning und Medienbildung, Medien- und Kommunikationswissenschaften, Medienpädagogik, Technische Redaktion oder eine vergleichbare Qualifikation, idealerweise inkl. Berufserfahrung

  • Erfahrung in der Anwendung eines Lernmanagement Systems (vorzugsweise ILIAS), eines Autorentools (vorzugsweise iSpring) und in der Erstellung von eLearning-Inhalten

  • Vorzugsweise erste Erfahrung mit der Anwendung von Videobearbeitungssoftware, Videoaufnahmetools (vorzugsweise Camtasia) und Freude an der Vertonung von Lernvideos

  • Ausgeprägte didaktische Fähigkeiten und das Talent, Fachinformationen zielgruppenspezifisch aufzubereiten

  • Hohe IT-Affinität und eine schnelle Auffassungsgabe

  • Engagierte, selbständige und lösungsorientierte Arbeitsweise


Es erwartet Sie eine Stelle mit breitem Spektrum und Gestaltungsmöglichkeiten in einem kleinen aktiven Team. Sie sind flexibel, zielorientiert und bringen Ihre Ideen für ein modernes Bildungsmanagement im gewerblich-technischen Bereich ein. Wir bieten Ihnen neben einer Vergütung nach dem Tarifvertrag des öffentlichen Dienstes (TV-L) die dort üblichen Sozialleistungen. Die Stelle ist zunächst auf ein Jahr befristet.



Kontakt über: https://www.hwk-konstanz.de/artikel/mitarbeiter-bildungsmanagement-schwerpunkt-elearning-m-w-d-64,664,1927.html


Administration - Installation - Core: Request body (Content-Length) is larger than the configured limit

$
0
0

In https operation, failed try to uploading over 13M file shows following error message very often:
The upload failed as this is a folder, the file size is 0 bytes or exceeded the max. upload size or the file was renamed meanwhile.

Changing configuration of php.ini does not help at all.
/etc/php.ini
    memory_limit 512M
    upload_max_filesize 400M
    post_max_size 400M
In rare case, to restart php-fpm is required as well as restarting httpd.service.

This is caused by "SecRequestBodyLimit 13107200" on  "/etc/httpd/conf.d/mod_security.conf".
It must be changed to specifed size.


And to restart httpd.service will work properly.

Administration - Installation - Core: Re: Request body (Content-Length) is larger than the configured limit

$
0
0
As with any web application firewall (WAF), there is some potential for unwanted interference with the application it tries to protect. This is also the case with mod_security. You should expect to do some fine tuning of any ready-made configuration you'll find in the internet.

We don't use mod_security, but maybe there is some other member of the community who could provide you with a starting configuration?

Administration - Installation - Core: ilias & fortiweb

$
0
0
Hi all,
does anyone have any experience with fortiweb (waf) and ilias?
regards, Daniel

Administration - Installation - Core: ILIAS 5.4.8 Cronjob issue (PHP)

$
0
0
Hello,

since we upgrade ILIAS to Version 5.4.8 our Cronjob in ILIAS isn´t working anymore.
Env:
Ilias: 5.4.8
PHP: 7.3.11
Crontab:  /bin/php /volume1/web/ilias/cron/cron.php [user] [password] [clientid]

Starting the cronjob is successfully. User, Password and clientid get forwarded to the cron.php and the cron.php start running. 

After a short time i get the following error:

PHP Parse error: syntax error, unexpected ':', expecting ';' or '{' in /volume1/web/ilias/Services/Utilities/classes/class.ilUtil.php on line 2576


Parse error: syntax error, unexpected ':', expecting ';' or '{' in /volume1/web/ilias/Services/Utilities/classes/class.ilUtil.php on line 2576



In the php File ilUtil.php on the line 2576 i have the following code

public static function getClientIdByString(string $clientId) : \ILIAS\Data\ClientId
{
$df = new \ILIAS\Data\Factory;


return $df->clientId($clientId);
}

Can anyone help me with fixing the error, please?

Thanks and best regards,
Stefan


Administration - Installation - Core: Re: ILIAS 5.4.8 Cronjob issue (PHP)

$
0
0
Are you sure the cron job uses PHP 7.3? The error message suggests that PHP <7.0 is being used, where type hinting is not supported. What is the output of "/bin/php --version"?

Administration - Installation - Core: Re (2): ILIAS 5.4.8 Cronjob issue (PHP)

$
0
0
Thanks for the tipp!

The Cronjob used php 5.6 and not php 7.3
I changed the Script and now its working

/usr/local/bin/php73 /volume1/web/ilias/cron/cron.php [user] [password] [clientid]

Thanks alot.

Administration - Installation - Core: LDAP-Anbindung

$
0
0
Guten Tag

Unsere unverschlüsselte LDAP-Anbindung funktioniert problemlos. Beim Wechsel auf LDAPS haben wir noch ein Problem.

In welches Verzeichnis gehört das Zertifikat unserer Root-CA hingespeichert?

Server mit Iliasinstallation: CentOS Linux 7.7
Ilias-Version: 5.2.25

Wenn wir nur den LDAP-Server in den Ilias-Einstellungen eintragen (ldaps://xxxxxx:636) erscheint die Meldung:

[207bc] [2020-02-26 08:24:53] xx_auth.ERROR: ilAuthProviderLDAP::doAuthentication:182 Cannot bind to LDAP server... LDAP: Cannot bind as CN=xxLdapReader,OU=Administrativ,OU=Benutzer,OU=xx,OU=yy,DC=zz,DC=ch with message: Can't contact LDAP server Trying fallback...  
[207bc] [2020-02-26 08:24:53] xx_auth.NOTICE: ilAuthFrontend::handleAuthenticationFail:201 Increased login attempts for user: xy 

Freundliche Grüsse

Jürg

Administration - Installation - Core: Als Kursadministrator Modulzertifikate von Kursmitgliedern einsehen

$
0
0
Hallo,

ich habe folgendes Problem. Ich kann ja Zertifikate für Kurse generieren lassen und dann als Kursadmin diese Zertifikate der einzelnen Kursmitglieder im Reiter Mitglieder auch herunterladen.

Nun will ich aber für Module (Scorm1.2 HTML5) in Kursen Zertifikate vergeben. Das Einrichten der Zertifikate funktioniert einwandfrei und das Kursmitglied bekommt diese Zertifikate nach Bestehen des Lernmoduls auch.

Was leider nicht geht, ist das ich als Kursadmin nun nicht diese Modulzertifikate der Lerner, wie die Kurszertifikate einsehen kann. Da es keinen Reiter Mitglieder für Module gibt. Habe ich nur irgend etwas vergessen beim Einstellen oder existiert dies Funktion leider noch nicht?

Ich nutze die aktuelle Iliasversion 5.4.9

Grüße
Sandro

Plugins and Add-ons: Plugin Development

$
0
0
I want to start the developement of plugins and I am wondering if there is a guide in documentation. I have found only info for the different types of slots ( https://docu.ilias.de/ilias.php?ref_id=42&obj_id=27029&cmd=layout&cmdClass=illmpresentationgui&cmdNode=2h&baseClass=ilLMPresentationGUI ), but there are no info about the development procedure of a plugin. Has anyone idea?

Plugins and Add-ons: Interactive Video: Playback stops after a couple of seconds? (Urgent)

$
0
0
Hi all,

We running the Interactive Video Plugin version 2.0.25 on ILIAS 5.4.5 with PHP 7.2.
A lecturer has just informed me about the problem (see his mail below): After clicking on the Play-button the video plays for a couple of seconds (about 2-10) and then the video stopps. It looks like ILIAS can't load any more of the video - see screenshot below.
I can reproduce the error.
Is there a solution to this problem? Any recomended steps to solve it?

Help is very appreciated,

Kind regards,
Frank


ivplaybackbrichtab.jpg

Mail from the Lecturer:


Zitat



Zitat


  Ich möchte auf Ilias "interaktive Videos" anlegen. Die Originalvideos 
   haben eine Größe von 200-300MB.

   Nach erfolgtem Upload gibt es jedoch erhebliche Probleme bei der 
   Wiedergabe. In der Regel werden nur 2-5 sek. abgespielt, dann endet die 
   Wiedergabe.


   Da ich annahm, dass die Videodateien zu groß sind, habe ich diese 
   versuchsweise in andere Formate (.webm / .mp4) konvertiert, die Bitrate 
   und die Video-Auflösung reduziert.

   Die konvertierten Videos haben noch eine Größe von 50-70MB. Leider 
   klappt die Wiedergabe immer noch nicht.

   Zuletzt versuchte ich die Videos mittels der Option "Direkte URL zu 
   Mediendatei im Web" von meiner Cloud einzubinden - auch dies ohne Erfolg.

   Nun bin ich mit meinem Latein am Ende und ersuche um Unterstützung durch 
   die FH.

   Ich lasse in meinem Account zwei Videos stehen, damit Sie sich einen 
   Eindruck verschaffen können.

   mit freundlichen Grüßen










Plugins and Add-ons: Interactive Video: Playback stops after a couple of seconds? (Urgent)


Plugins and Add-ons: Plugin Development

Plugins and Add-ons: Interactive Video: Playback stops after a couple of seconds? (Urgent)

$
0
0
Hallo Guido,

Zuerst vielen vielen herzlichen Dank für den Tipp! Das Abspielen klappt nun!

Der Server-Admin hat mir noch die Frage gestellt, ob der Patch irgendwann Teil des ILIAS-Cores wird, oder ob er jeweils nach einem ILIAS-Update nachgezogen werden muss?

Nachdem wir in der nächsten Zeit mit einer verstärkten Nutzung des Plugins rechnen, selber aber noch keine Doku haben wollte ich noch fragen, ob es im Netz irgendwo eine Doku bzw. Tutorials zum Interactive Video-Plugin gibt?

Nochmals vielen Dank,
Frank

Plugins and Add-ons: Interactive Video: Playback stops after a couple of seconds? (Urgent)

$
0
0
Hi Frank,
ist erstmal nicht geplant, sprich der Patch muss jeweils nachgezogene werden, es gibt zwar Pläne das ganze Plugin in den Kern zu überführen, allerdings würde das eine längere Diskussion werden, von daher würde ich da nicht mit einer zeitnahen Lösung rechnen.

Nein eine ausführlichere Dokumentation gibt es leider auch noch nicht. Es gäbe allerdings noch die SIG Video und ILIAS wo du speziellere Fragen stellen könntest.

Grüße,
Guido

Plugins and Add-ons: Interactive Video: Playback stops after a couple of seconds? (Urgent)

$
0
0
Hallo Guido,
Danke für die Info.
Vielleicht schaff ich es ja, eine Doku zu erstellen. Die würde ich dann zur Verfügung stellen.

Viele Grüße,
Frank

Plugins and Add-ons: Interactive Video: Playback stops after a couple of seconds? (Urgent)

$
0
0
Hi Frank,

das wäre natürlich super, wenn ihr da was erstellt und das zu Verfügung stellen würdet.

Grüße,
Guido
Viewing all 6544 articles
Browse latest View live