Hinweis: Sie sind auf den Seiten der Moodle 1.9 Dokumentation. Die Dokumentation der aktuellsten Moodle-Version finden Sie hier: PHP FAQ.

PHP FAQ: Unterschied zwischen den Versionen

Aus MoodleDocs
Wechseln zu:Navigation, Suche
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
 
Zeile 1: Zeile 1:
{{Zum Übersetzen}}
Siehe [[:en:PHP FAQ]]
== Was ist PHP? ==
== Was ist PHP? ==


Zeile 9: Zeile 7:
=== Online-Quellen ===
=== Online-Quellen ===


* [http://www.php.net official PHP Homepage] mit Dokumantation, Tutorials, FAQ, etc.
* [http://www.php.net official PHP Homepage] - Dokumentation, Tutorials, FAQ, etc.
* [http://www.w3schools.com/PHP/DEfaULT.asP W3Schools PHP Tutorial] - bietet eine tolle Möglichkeit, PHP anhand von Beispielen zu lernen
* [http://www.w3schools.com/PHP/DEfaULT.asP W3Schools PHP Tutorial] - bietet eine tolle Möglichkeit, PHP anhand von Beispielen zu lernen


Zeile 20: Zeile 18:
== Wie verwendet Moodle PHP? ==
== Wie verwendet Moodle PHP? ==


* [[Installing Moodle/Creating custom php.ini files]]
* [[PHP-Versionen für Moodle]]
* [[PHP settings by Moodle version]]
* [[PHP-Fehlermeldungen]]
* [[PHP error logs]]
* [http://moodle.org/mod/forum/search.php?notwords=Re:&id=5&subject=php.ini Diskussionsbeiträge] im Kurs ''Using Moodle'' auf moodle.org, die mit der PHP-Konfigurationsdatei ''php.ini'' zu tun haben
* [http://moodle.org/mod/forum/search.php?notwords=Re:&id=5&subject=php.ini php.ini related discussions] in the Moodle forums


== Which version of PHP is required by Moodle? ==
== Welche PHP-Version ist für Moodle erforderlich? ==


* See [[Installing_Moodle#Requirements]].
* Siehe [[PHP-Versionen für Moodle]]
* You can tell which version you are using by looking at [[PHP info]].
* In den [[PHP-Informationen]] können Sie nachlesen, welche PHP-Version auf Ihrem Server verwendet wird.


==Wie installiere ich PHP?==
==Wie installiere ich PHP?==


Usually PHP is installed alongside [[Apache]] and [[MySQL]] in a combination known as AMP, see [[Installing AMP]] for details. It is possible to build PHP from source - you might have to if you need a very new version for developing Moodle - however, it is quite challenging. PHP itself has many dependencies that you will need to obtain and build, some of which are also tricky to build from source (e.g. GD).
Normalerweise wird PHP zusammen mit [[Apache]] und [[MySQL]] - bekannt als AMP - installiert, siehe [[Installation von Apache, MySQL und PHP]]. Man kann PHP auch aus den Sourcen kompilieren - das kann notwendig sein, wenn Sie als Moodle-Entwickler eine ganz neue PHP-Version benötigen. PHP selbst benötigt viele abhängige Pakete, die Sie dann ebenfalls aus den Sourcen kompilieren müssen, was u.U. etwas kompliziert und trickreich sein kann (z.B. GD).


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

Aktuelle Version vom 17. September 2009, 10:15 Uhr

Was ist PHP?

PHP ist eine weit verbreitete, vielseitig verwendbare Skript-Sprache, die insbesondere für Web-Entwicklung geeignet ist und in HTML eingebettet werden kann.

Wo kann ich mehr über PHP lernen?

Online-Quellen

Bücher

(Rezensenz zum Buch von Slashdot)

Wie verwendet Moodle PHP?

Welche PHP-Version ist für Moodle erforderlich?

Wie installiere ich PHP?

Normalerweise wird PHP zusammen mit Apache und MySQL - bekannt als AMP - installiert, siehe Installation von Apache, MySQL und PHP. Man kann PHP auch aus den Sourcen kompilieren - das kann notwendig sein, wenn Sie als Moodle-Entwickler eine ganz neue PHP-Version benötigen. PHP selbst benötigt viele abhängige Pakete, die Sie dann ebenfalls aus den Sourcen kompilieren müssen, was u.U. etwas kompliziert und trickreich sein kann (z.B. GD).

Siehe auch