Note: You are currently viewing documentation for Moodle 3.7. Up-to-date documentation for the latest stable version of Moodle may be available here: Installing AMP.

Installing AMP: Difference between revisions

From MoodleDocs
Line 31: Line 31:


Alternatively, use a package like EasyPHP that bundles all the software you need into a single Windows application.  Note that EasyPHP uses PHP 1.4 and many menus are still in French.  Here are the steps from start to finish for this approach: [[Windows installation]].
Alternatively, use a package like EasyPHP that bundles all the software you need into a single Windows application.  Note that EasyPHP uses PHP 1.4 and many menus are still in French.  Here are the steps from start to finish for this approach: [[Windows installation]].
==Testing PHP==
Once you have installed your web server and PHP you should be able to create a file (for example phpinfo.php) with the following in it:
  <?phpinfo()?>
You should be able to open this file in a web browser as see a web page that has PHP status information in it such as [[phpinfo|this]].


==See also==
==See also==

Revision as of 22:17, 25 January 2006

Moodle is written in a scripting language called PHP and stores most of its data in a database. The recommendrd database is MySQL. Before installing Moodle you must have a working PHP installation and a working database to turn your computer into a functional web server platform. These packages can be tricky to set up for average computer users, so this page has been written to try to make this process as simple as possible for different platforms:

Hosting Service

Unfortunately hosting services vary quite a lot in the way they work. Some will even install Moodle for you.

Most will offer a web-based control panel to control your site, create databases and set up cron. Some may also offer terminal access via ssh, so that you can use the command shell to do things.

You should work your way through the Installation guide and take each step at a time. Ask your hosting provider if you get stuck.

Mac OS X

The easiest way to do this is use the Apache server that Apple provides, and add PHP and MySQL using Marc Liyanage's packages. Both of the pages below come with good instructions that we won't duplicate here:

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

Red Hat 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: Red Hat Linux installation

Windows

The easiest way to do this is use one of the complete intall packages available from the Downloads page at Moodle.org. [1]

Alternatively, use a package like EasyPHP that bundles all the software you need into a single Windows application. Note that EasyPHP uses PHP 1.4 and many menus are still in French. Here are the steps from start to finish for this approach: Windows installation.

Testing PHP

Once you have installed your web server and PHP you should be able to create a file (for example phpinfo.php) with the following in it:

  <?phpinfo()?>

You should be able to open this file in a web browser as see a web page that has PHP status information in it such as this.

See also