Moodle-Netzwerk FAQ: Unterschied zwischen den Versionen

Aus MoodleDocs
Wechseln zu:Navigation, Suche
(Die Seite wurde neu angelegt: „{{Authentifizierung}} {{Zum Übersetzen}} ==What is MNet?== MNet is the mechanism in Moodle for connecting to other Moodle (or Mahara) sites. It's short for "Mo…“)
 
Keine Bearbeitungszusammenfassung
 
(3 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
{{Authentifizierung}}
{{Authentifizierung}}


{{Zum Übersetzen}}
==Was ist ein Moodle-Netzwerk (MNet)?==
Ein Moodle-Netzwerk besteht aus mehreren Moodle-Installationen, die miteinander verbunden sind. Der entsprechende Mechanismus heißt MNet. Über MNet können Moodle-Installationen auch mit Mahara-Installationen verbunden werden. Detaillierte Informationen finden Sie im Artikel [[Moodle-Netzwerk]].


==What is MNet?==
Siehe auch [http://moodle.org/mod/forum/discuss.php?d=175158 this forum discussion on MNet] - Diskussionsbeitrag im Kurs ''Using Moodle'' auf moodle.org.
MNet is the mechanism in Moodle for connecting to other Moodle (or Mahara) sites. It's short for "Moodle networking". See [[MNet]] for more information. At some point in the future, support for MNet will end. See [http://moodle.org/mod/forum/discuss.php?d=175158 this forum discussion on MNet.]




==It doesn't work. What do I do now?==
==Es funktioniert nicht! Was kann ich tun?==
* make sure that you have the latest version of Moodle installed.
* Stellen Sie sicher, dass Sie die aktuellste Moodle-Version installiert haben.
* make sure xmlrpc is installed. Please go to your phpinfo page and search for --with-xmlrpc. If your php has not been compiled with xmlrpc then you need to address that! At present it appears that PEAR xmlrpc will not work.
* Stellen Sie sicher, dass auf Ihrem Moodle-Server die PHP-Erweiterung '''xmlrpc''' installiert ist (suchen Sie auf der Seite ''[[Einstellungen-Block|Einstellungen]] > Website-Administration > Server > Serverinformationen'' nach '''xmlrpc''').
* make sure that openssl is installed. Please go to your phpinfo page and search for openssl. If your php has not been compiled with openssl then you need to address that.
* Stellen Sie sicher, dass auf Ihrem Moodle-Server die PHP-Erweiterung '''openssl''' installiert ist.
* make sure you have debugging turned on (Site Administration > Server > Debugging). This will greatly increase the chance of the underlying problem being reported.
* Schalten Sie den Debugging-Modus auf der Seite ''[[Einstellungen-Block|Einstellungen]] > Website-Administration > Entwicklung > Debugging'' ein, um evtl. Fehlermeldungen zu sehen.
* Note that MNET does not currently work on lighttpd. (MDL-14638) This should be fixed in lighttpd 1.5 when it is released.
* MNet funktioniert erst ab lighttpd 1.5, siehe (MDL-14638).


==I've set up the keys and configured Moodle Networking, but when I try to SSO into Mahara, it doesn't work==
==Ich habe das Moodle-Netzwerk konfiguriert, aber ich kann mich nicht per Single Sign On mit Mahara verbinden!==
This problem could be due to a PHP bug in libxml2 2.7.1 (the same bug reported with version 2.7.2 and 2.7.3). check the server > PHP info page to see what version of libxml is installed - if you have one of versions mentioned - check out the FAQ here for details on how to fix it: [https://docs.moodle.org/en/Backup_FAQ#Restoring_a_course_results_in_broken_HTML_tags._What_can_I_do.3F Backup_FAQ#Restoring_a_course_results_in_broken_HTML_tags._What_can_I_do.3F]
Evtl. liegt das an einem PHP Bug in '''libxml2''' 2.7.1, 2.7.2 und 2.7.3. Prüfen Sie auf der Seite ''[[Einstellungen-Block|Einstellungen]] > Website-Administration > Server > PHP-Informationen'', welche Version von '''libxml2''' bei Ihnen installiert ist.


==Moodle doesn't generate any keys on the networking pages==
==Moodle generiert keine Schlüssel!==
This could be because PHP cannot find the openssl.cnf file on your server - this is a very common issue on windows servers. To address this you must set the path to this file in your config.php file - first find the openssl.cnf file on your server then add it's location into your config.php file like this:
Das kann daran liegen, dass PHP die OpenSSL-Konfigurationsdatei ''openssl.cnf'' auf Ihrem Moodle-Server nicht finden kann. Das tritt besonders häufig bei Windows Servern auf. Sie müssen den Pfad zu dieser Datei in der [[Moodle-Konfigurationsdatei]] ''config.php'' eintragen:
     $CFG->opensslcnf = 'C:/apache2/bin/openssl.cnf';
     $CFG->opensslcnf = 'C:/apache2/bin/openssl.cnf';
Note: this file could potentially be located anywhere on your server, just make sure the full path and name of the file is correct.


Note: this could also affect Mahara. On Mahara you can also added this to the config table in the database.
'''Achtung''':
 
*Die OpenSSL-Konfigurationsdatei kann irgendwo auf Ihrem Moodle-Server liegen. Geben Sie in der Moodle-Konfigurationsdatei den vollständigen Pfad an.
Note: this also happens on RHEL5 and RHEL5 based operating systems. The path the file is "/etc/pki/tls/openssl.cnf". RHEL is RedHat Enterprise Linux.
*Das kann auch Mahara betreffen. Tragen Sie den Pfad also auch in der Konfigurationstabelle der Mahara-Datenbank ein.
*Das kann auch bei RedHat Ebnterprise Linux Installationen passieren. Auf diesen Systemen liegt die OpenSSL-Konfigurationsdatei unter ''/etc/pki/tls/openssl.cnf''.


==Siehe auch==
==Siehe auch==

Aktuelle Version vom 21. März 2012, 13:41 Uhr


Was ist ein Moodle-Netzwerk (MNet)?

Ein Moodle-Netzwerk besteht aus mehreren Moodle-Installationen, die miteinander verbunden sind. Der entsprechende Mechanismus heißt MNet. Über MNet können Moodle-Installationen auch mit Mahara-Installationen verbunden werden. Detaillierte Informationen finden Sie im Artikel Moodle-Netzwerk.

Siehe auch this forum discussion on MNet - Diskussionsbeitrag im Kurs Using Moodle auf moodle.org.


Es funktioniert nicht! Was kann ich tun?

  • Stellen Sie sicher, dass Sie die aktuellste Moodle-Version installiert haben.
  • Stellen Sie sicher, dass auf Ihrem Moodle-Server die PHP-Erweiterung xmlrpc installiert ist (suchen Sie auf der Seite Einstellungen > Website-Administration > Server > Serverinformationen nach xmlrpc).
  • Stellen Sie sicher, dass auf Ihrem Moodle-Server die PHP-Erweiterung openssl installiert ist.
  • Schalten Sie den Debugging-Modus auf der Seite Einstellungen > Website-Administration > Entwicklung > Debugging ein, um evtl. Fehlermeldungen zu sehen.
  • MNet funktioniert erst ab lighttpd 1.5, siehe (MDL-14638).

Ich habe das Moodle-Netzwerk konfiguriert, aber ich kann mich nicht per Single Sign On mit Mahara verbinden!

Evtl. liegt das an einem PHP Bug in libxml2 2.7.1, 2.7.2 und 2.7.3. Prüfen Sie auf der Seite Einstellungen > Website-Administration > Server > PHP-Informationen, welche Version von libxml2 bei Ihnen installiert ist.

Moodle generiert keine Schlüssel!

Das kann daran liegen, dass PHP die OpenSSL-Konfigurationsdatei openssl.cnf auf Ihrem Moodle-Server nicht finden kann. Das tritt besonders häufig bei Windows Servern auf. Sie müssen den Pfad zu dieser Datei in der Moodle-Konfigurationsdatei config.php eintragen:

   $CFG->opensslcnf = 'C:/apache2/bin/openssl.cnf';

Achtung:

  • Die OpenSSL-Konfigurationsdatei kann irgendwo auf Ihrem Moodle-Server liegen. Geben Sie in der Moodle-Konfigurationsdatei den vollständigen Pfad an.
  • Das kann auch Mahara betreffen. Tragen Sie den Pfad also auch in der Konfigurationstabelle der Mahara-Datenbank ein.
  • Das kann auch bei RedHat Ebnterprise Linux Installationen passieren. Auf diesen Systemen liegt die OpenSSL-Konfigurationsdatei unter /etc/pki/tls/openssl.cnf.

Siehe auch

Diskussionsbeiträge im Kurs Using Moodle auf moodle.org: