From: martignoni Date: Thu, 16 Oct 2003 17:36:08 +0000 (+0000) Subject: First bit of translation X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=e08a9cd97e26df711f5612d1d05ef38ac78d6619;p=moodle.git First bit of translation --- diff --git a/lang/fr/docs/installamp.html b/lang/fr/docs/installamp.html new file mode 100755 index 0000000000..769cf81729 --- /dev/null +++ b/lang/fr/docs/installamp.html @@ -0,0 +1,163 @@ + + + Documentation Moodle : Installation de PHP et de MySQL + + + + + +

Installation d'Apache, de MySQL et de PHP

+ +
+

Moodle est Ècrit dans un langage de scripts appelÈ PHP, et conserve la plupart + des donnÈes qu'il utilise dans une base de donnÈes. Le gestionnaire de base de + donnÈes que nous recommandons est MySQL. Avant d'installer Moodle, vous devez + disposer d'une installation de PHP et d'un gestionnaire de base de donnÈes qui + fonctionnent, de faÁon que votre ordinateur soit une plateforme web fonctionnelle. + L'installation de tels logiciels peut Ítre complexe. Cette page a ÈtÈ Ècrite pour + essayer de rendre ce processus aussi simple que possible pour diffÈrentes + plateformes :

+ + +

HÙtes web

+
+

Le fonctionnement des nombreux hÙtes web diffËre malheureusement considÈrablement. + Certains d'entre eux seront d'accord d'installer Moodle pour vous.

+

La plupart d'entre eux vous offre une interface web (tableau de bord) vous permettant + de contrÙler votre site web, de crÈer des bases de donnÈes et de mettre en place des + crons. Certains vous donnent accËs ý une interface terminal par ssh, de sorte que vous + pouvez utiliser la ligne de commande pour effectuer des opÈrations.

+

Il vous faut parcourir le Guide d'installation + et effectuer les Ètapes dÈcrites l'une aprËs l'autre. Si vous Ítes coincÈ, demandez de l'aide ý + votre fournisseur web.

+

 

+
+

Mac OS X

+
+

La maniËre la plus simple d'y arriver est l'utilisation du serveur Apache fourni + par Apple, et d'y ajouter PHP et MySQL avec les paquets de Marc Liyanage. Les deux pages + ci-dessous contiennent d'excellentes instructions pour l'installation, que nous n'allons + pas recopier ici :

+
+

PHP : tÈlÈchargement ici http://www.entropy.ch/software/macosx/php/

+

MySQL : tÈlÈchargement ici http://www.entropy.ch/software/macosx/mysql/

+
+

DËs que ces logiciels sont installÈ, le Guide + d'installation standard pourra Ítre facilement suivi.

+

Une marche ý suivre plus dÈtaillÈe est disponible ici : http://moodle.org/wiki/index.php/InstallingMoodle

+

 

+
+

Redhat Linux

+ +
+

You should install all available RPM packages for Apache, PHP and MySQL. + One package that people frequently forget is the php-mysql package which is + necessary for PHP to talk to MySQL.

+

Once these are installed the standard Installation + guide should be fairly straightforward.

+

A more detailed walkthrough is here: http://moodle.org/wiki/index.php/InstallingMoodle

+
+

 

+

Windows

+
+

The easiest way to do this is use EasyPHP, + a package that bundles all the software you need into a single Windows application. + Here are the steps from start to finish:

+
    +
  1. Firstly, if you have ever installed MySQL before (even as part of another + package), uninstall it all, delete all the MySQL files and make sure you + delete c:\my.cnf and c:\windows\my.ini.You + might want to do a search and delete ANY file called my.cnf + or my.ini.
  2. +
  3. If you've ever installed PHP before delete any files called php4ts.dll + from around your Windows directory, as well as any files called php.ini.
  4. +
  5. Download EasyPHP from here: http://www.easyphp.org/telechargements/dn.php?F=easyphp1-6.php3 + (approx 10 Mb)
  6. +
  7. Run the downloaded file: easyphp1-6_setup.exe. The installation + process is in French but is otherwise much like installing any other Windows + program - I advise accepting the defaults and letting it all install. Note + that "Suivant" means Next.and "Oui" means Yes.
  8. +
  9. At the end of the install leave the checkbox selected to "Lancer + EasyPHP" (Start EasyPHP) and hit the 'Terminer" button.You might + be taken to a information web page which you can safely ignore.
  10. +
  11. If all went well - congratulations! Apache, PHP and MySQL are all installed + and running! You should see a black E in your toolbar tray. You can right + click on it to get a menu which will let you control the running programs, + but you won't be needing that for now.
  12. +
  13. The next thing you need to do is to set up a database for Moodle to use. + Using a browser, go to http://localhost/mysql/ + (note the final slash).
  14. +
  15. If asked for a username, use "root" with a blank password. You + should see a phpMyAdmin web interface that allows you to create a new databases + and user accounts.
  16. +
  17. Create a new database by typing "moodle" into the field and + hitting the "Create" button. That was easy!
  18. +
  19. You can also create a new user to access your database if you want. This + can be a bit tricky for a first-time user, so you might just want to use + the existing user "root" with no password in your Moodle config + for now, and fix this later.
  20. +
  21. You're ready to install Moodle! Download the latest release of Moodle + from http://moodle.org/download, + then unzip the archive.
  22. +
  23. Copy your moodle files into C:\Program Files\EasyPHP\www. You + can either copy the entire moodle directory (ie C:\Program Files\EasyPHP\www\moodle) + or copy all the contents of the moodle directory. If you choose + this second option then you will be able to access your Moodle home page + using http://localhost/ instead of http://localhost/moodle/.
  24. +
  25. Make a new empty folder somewhere else for Moodle to store uploaded files + in, eg: C:\moodledata
  26. +
  27. Go into your Moodle folder. Make a copy of config-dist.php, and call + it config.php
  28. +
  29. Edit config.php using a text editor (Notepad will do, just be careful + that it doesn't add unwanted spaces at the end).
  30. +
  31. Put in all your new database info:
    + $CFG->dbtype = 'mysql';
    + $CFG->dbhost = 'localhost';
    + $CFG->dbname = 'moodle';
    + $CFG->dbuser = 'root';
    + $CFG->dbpass = '';
    + $CFG->dbpersist = true;
    + $CFG->prefix = 'mdl_';
  32. +
  33. And put in all your file paths:
    + $CFG->wwwroot = 'http://localhost/moodle'; // Use an external address + if you know it.
    + $CFG->dirroot = 'C:\Program Files\EasyPHP\www\moodle';
    + $CFG->dataroot = 'C:\moodledata';
  34. +
  35. Save config.php - you can ignore the other settings if there are any.
  36. +
  37. You're nearly there now! The rest of the setup is all web-based. Visit + http://localhost/moodle/admin/ + with your browser to continue the setup via your browser.
  38. +
  39. To use zip files with Moodle (for example the backups use zip) you might + need to enable "zlib". You can do this by going to your EasyPHP + directory (C:\Program Files\EasyPHP), and running the program + phpini.exe in there. Put a mark in the checkbox next to "zlib.dll". + Close that window, then go to the black E in your toolbar and right-click + it to get a menu - select "Restart" from this menu.
  40. +
  41. Lastly, you need to set up some sort of cron. See the Installation + guide for more details on this.
  42. +
+

If you don't or can't use EasyPHP, here are some a few tips to make sure + your PHP is set up correctly and avoid common problems:

+
    +
  • Make sure you enable the GD module so Moodle can process images - you + may have to edit php.ini and remove the comment (;) from this line: 'extension=php_gd2.dll'. +
  • +
  • Make sure you enable the Zlib module so that you can create and unpack + zip files from within Moodle.
  • +
  • Make sure sessions is turned on - you may have to edit php.ini and fix + the directory for session.save_path - instead of the default + "/tmp" use a Windows directory like "c:/temp".
  • +
+

 

+
+
+

Documentation Moodle

+

Version: $Id$

+ + + \ No newline at end of file