From ad700344003bea3c7e4b8cbafacbf15e5dabe73c Mon Sep 17 00:00:00 2001 From: koenr Date: Wed, 15 Oct 2003 20:20:46 +0000 Subject: [PATCH] Translated by Koen Roggemans --- lang/nl/docs/install.html | 134 ++++++++++++++++++-------------------- 1 file changed, 63 insertions(+), 71 deletions(-) diff --git a/lang/nl/docs/install.html b/lang/nl/docs/install.html index 105c22d2d0..2b6da54bd1 100644 --- a/lang/nl/docs/install.html +++ b/lang/nl/docs/install.html @@ -289,63 +289,57 @@ php_value post_max_size 2M -

(If for any reason your install is interrupted, or there is a system error - of some kind that prevents you from logging in using the admin account, you - can usually log in using the default username of "admin", - with password "admin".)

-

Once successful, you will be returned to home page of your site. Note the - administration links that appear down the left hand side of the page (these - items also appear on a separate Admin page) - these items are only visible - to you because you are logged in as the admin user. All your further administration - of Moodle can now be done using this menu, such as:

+

(Als je installatie om één of andere reden onderbroken wordt, of er is een systeemfout die verhindert dat + je aanmeldt met je admin-account, dan kun je gewoonlijk nog aanmelden met de standaard gebruikersnaam + "admin", + met wachtwoord "admin".)

+

Eens je met succes aangemeld bent, wordt je teruggebracht naar de startpagina van je site. Merk op dat er + onderaan links een aantal links voor beheer verschijnen (deze links kun je ook vinden op een aparte beheerpagina). + - Deze items kun jij alleen zien omdat je aangemeld bent als Beheerder. Alle beheerstaken van Moodle + kunnen vanuit deze pagina gedaan worden, zoals:

 

-

9. Set up cron

+

9. Cron installeren

-

Some of Moodle's modules require continual checks to perform tasks. For example, - Moodle needs to check the discussion forums so it can mail out copies of posts - to people who have subscribed.

-

The script that does all this is located in the admin directory, and is called - cron.php. However, it can not run itself, so you need to set up a mechanism - where this script is run regularly (eg every five or ten minutes). This provides - a "heartbeat" so that the script can perform functions at periods - defined by each module.

-

Note that the machine performing the cron does not need to be the same - machine that is running Moodle. For example, if you have a limited web - hosting service that does not have cron, then you can might choose to run - cron on another server or on your home computer. All that matters is that - the cron.php file is called regularly.

-

The load of this script is not very high, so 5 minutes is usually reasonable, - but if you're worried about it you can reduce the time period to something - like 15 minutes or even 30 minutes. It's best not to make the time period - too long, as delaying mail-outs can slow down activity within the course.

-

First, test that the script works by running it directly from your browser:

+

Sommige Moodlemodules hebben constante controle nodig om hun activiteiten te kunnen doen. + Zo moet Moodle bijvoorbeeld de discussieforums regelmatig controleren om kopies van de berichten + te sturen naar gebruikers die daarvoor ingeschreven hebben.

+

Het script dat al deze taken doet staat in de adminmapen heet cron.php. Alleen kan dit script niet + uit zichzelf lopen, dus moet je een mechanisme installeren dat dit script om de 5 á 10 minuten + start. Dit maakt een "hartslag", zodqt het script taken kan uitvoeren na periodes die vastgelegd zijn + in elke module.

+

Merk op dat de machine die cron.php laat lopenniet dezelfde machine moet zijn als degene waar Moodle + op loopt. Als je installatie bijvoorbeeld bij een beperkte webhost staat die geen cron aanbiedt, dan + kun je bijvoorbeeld opteren om cron te laten lopen op een andere server of op je eigen huiscomputer. Het enige + wat belang heeft is dat het bestand cron.php regelmatig opgevraagd wordt.

+

Het script veroorzaakt geen grote belasting, dus om de vijf minuten is redelijk, maar als je je daarover zorgen + maakt, dan kun je de periode verlengen tot 15 of zelfs 30 minuten. Je kunt de periode best niet te lang nemen, + omdat het vertragen van de e-mailverzendingen de activiteit in je vak kan vertragen.

+

Test het script eerst door het te laten lopen vanuit je browser.

http://example.com/moodle/admin/cron.php
-

Now, you need to set up some of way of running the script automatically and - regularly.

-

Running the script from a command line

-

You can call the page from the command line just as you did in the example - above. For example, you can use a Unix utility like 'wget':

+

Nu moet je iets installeren zodat het script automatisch en regelmatig opgevraagd wordt.

+

Het script starten vanaf de opdrachtregel

+

Je kunt vanuit de opdrachtregel de pagina opvragen, net zoals bij bovenstaand voorbeeld. + Je kunt bijvoorbeeld een Unixtool gebruiken zoals 'wget':

wget -q -O /dev/null http://example.com/moodle/admin/cron.php
-

Note in this example that the output is thrown away (to /dev/null).

-

The same thing using lynx:

+

Merk op dat in dit voorbeeld de output weggegooid wordt (naar /dev/null).

+

Hetzelfde kan met lynx:

lynx -dump http://example.com/moodle/admin/cron.php > /dev/null
-

Alternatively you could use a standalone version of PHP, compiled to be run - on the command line. The advantage with doing this is that your web server - logs aren't filled with constant requests to cron.php. The disadvantage is - that you need to have access to a command-line version of php.

+

Je zou ook een alleenstaande versie van PHP, gecompileerd om van de opdrachtregel te lopen, kunnen gebruiken. + Het voordeel hiervan is dat de logs van je webserver niet vol lopen met de continue vraag naar cron.php. Het + nadeel is dat je toegang moet hebben tot een opdrachtregel-versie van PHP.

/opt/bin/php /web/moodle/admin/cron.php
 
@@ -354,40 +348,38 @@ php_value post_max_size 2M
 
 
-

Automatically running the script every 5 minutes

-

On Unix systems: Use cron. Edit your cron settings from the commandline - using "crontab -e" and add a line like:

+

Het script automatisch laten lopetn om de 5 minuten

+

Op Unix systemen: Gebruik cron. Bewerk je croninstellingen door vanaf de opdrachtregel + gebruik te maken van "crontab -e" en voeg een lijn toe zoals:

*/5 * * * * wget -q -O /dev/null http://example.com/moodle/admin/cron.php
-

Usually, the "crontab" command will put you into the 'vi' editor. You enter - "insert mode" by pressing "i", then type in the line as above, then exit insert mode by - pressing ESC. You save and exit by typing ":wq", or quit with saving using ":q!" (without the quotes).

-

On Windows systems: The simplest way is to use this little package moodle-cron-for-windows.zip - which makes this whole thing very easy. You can also explore using the built-in - Windows feature for "Scheduled Tasks".

-

On web hosts: Your web-based control panel may have a web page that allows - you to set up this cron process. Ask your administrator for details on how - it works.

+

Gewoonlijk zal de "crontab" iodracht je in de 'vi' editor brengen. Je gaat in + "insert mode" door op "i"te drukken, dan kun je bovenstaande lijn inbrengen, dan ga je uit insert mode door op + ESC te drukken. Je bewaart en verlaat het programma door "wq" te typen of door ":q!" te typen + (zonder de aanhalingstekens).

+

Op Windows systemen: De gemakkelijkste manier is door dit kleine pakketje te gebruiken + moodle-cron-for-windows.zip + wat het hele ding erg gemakkelijk maakt. Je kunt eventueel ook gebruik maken van de ingebouwde Windowsfunctie + "Scheduled Tasks".

+

Bij web hosts: Je webgebaseerde controlepaneel kan een pagina hebben die bedoeld is om cron op te zetten. Vraag + je beheerder naar de details over hoe dit werkt.

-

10. Create a new course

+

10. Een nieuw vak maken

-

Now that Moodle is running properly, you can create a course.

-

Select "Create a new course" from the Admin page (or the admin - links on the home page).

-

Fill out the form, paying special attention to the course format. You don't - have to worry about the details too much at this stage, as everything can - be changed later by the teacher.

-

Press "Save changes", and you will be taken to a new form where - you can assign teachers to the course. You can only add existing user accounts - from this form - if you want to create a new teacher account then either ask - the teacher to create one for themselves (see the login page), or create one - for them using the "Add a new user" on the Admin page.

-

Once done, the course is ready to customise, and is accessible via the "Courses" - link on the home page.

-

See the "Teacher Manual" for more details - on course-building.

+

Nu Moodle goed loopt, kun je een vak aanmaken.

+

Kies "Voeg een nieuw vak toe" vanuit de beheerpagina (of vanuit de beheerlinks op de startpagina).

+

Vul het formulier in, met speciale aandacht voor de vakformat. Je moet je geen zorgen maken over de details, + omdat alles later door de leraar zelf kan veranderd worden door de leraar.

+

Druk op "Bewaar de wijzigingen", en je wordt naar een nieuw formulier gebracht waar je leraars aan het + vak kunt toewijzen. Je kunt alleen een bestaande gebruikersaccount aanwijzen vanuit dit formulier - als je een + nieuwe lerarenaccount wil maken, dan kun je ofwel de leraar vragen om zelf zijn eigen account te maken (zie loginpagina) + of maak er zelf een voor hen door gebruik te maken van de "Voeg een nieuwe gebruiker toe" + op de beheerpagina.

+

Als dit gedaan is, dan is het vak klaar om aangepast te worden en is het toegankelijk vanaf de "vakken" link op + de startpagina.

+

Zie ook de "Help..." voor meer details over het opbouwen van een vak.

 

Moodle Documentation

-- 2.39.5