<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ca">
	<id>https://docs.moodle.org/2x/ca/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Stuartrmealor</id>
	<title>MoodleDocs - Contribucions de l&amp;#039;usuari [ca]</title>
	<link rel="self" type="application/atom+xml" href="https://docs.moodle.org/2x/ca/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Stuartrmealor"/>
	<link rel="alternate" type="text/html" href="https://docs.moodle.org/2x/ca/Especial:Contribucions/Stuartrmealor"/>
	<updated>2026-05-22T09:33:22Z</updated>
	<subtitle>Contribucions de l&amp;#039;usuari</subtitle>
	<generator>MediaWiki 1.43.5</generator>
	<entry>
		<id>https://docs.moodle.org/2x/ca/index.php?title=Git_for_Administrators&amp;diff=104625</id>
		<title>Git for Administrators</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/2x/ca/index.php?title=Git_for_Administrators&amp;diff=104625"/>
		<updated>2013-06-02T07:11:49Z</updated>

		<summary type="html">&lt;p&gt;Stuartrmealor: Fixed typo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Installing Moodle}}&lt;br /&gt;
This page describes how to maintain a copy of Moodle on your production server which can easily be upgraded using Git. If you have customisations of Moodle core code, you are advised to follow the instructions in the [[Development:Quick Git start guide for Moodle development|Quick Git start guide for Moodle development]].&lt;br /&gt;
&lt;br /&gt;
To get the most out of Git it is worth making the effort to understand its basic concepts - see the See also section below. It can be a bit of a learning curve, especially if you are used to CVS or Subversion. &lt;br /&gt;
&lt;br /&gt;
== Getting hold of Git (Windows, OSX, Linux and others) ==&lt;br /&gt;
&lt;br /&gt;
Support for Git was, up until recently, mostly confined to Linux but builds are now available for most popular operating systems:&lt;br /&gt;
&lt;br /&gt;
* List of downloads from Git site - http://git-scm.com/download&lt;br /&gt;
&lt;br /&gt;
Once you have downloaded and installed your OS relevant git installation, the git commands in this document should work with your operating system.&lt;br /&gt;
&lt;br /&gt;
== Obtaining the code from Git ==&lt;br /&gt;
&lt;br /&gt;
The command line version of Git is discussed here. Graphical clients are little more than wrappers around the command line version, so you should be able to deduce the correct parameters quite easily. &lt;br /&gt;
&lt;br /&gt;
You can find the official Moodle git repository at git://git.moodle.org/moodle.git (with an official clone at git://github.com/moodle/moodle.git). To initialize your local checkout, use&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ git clone git://git.moodle.org/moodle.git                       (1)&lt;br /&gt;
$ cd moodle&lt;br /&gt;
$ git branch -a                                                   (2)&lt;br /&gt;
$ git branch --track MOODLE_24_STABLE origin/MOODLE_24_STABLE      (3)&lt;br /&gt;
$ git checkout MOODLE_24_STABLE                                    (4)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
* The command (1) initializes the new local repository as a clone of the &#039;upstream&#039; (i.e. the remote server based) moodle.git repository. The upstream repository is called &#039;origin&#039; by default. It creates a new directory named &#039;&#039;moodle&#039;&#039;, where it downloads all the files. This operation can take a while as it is actually getting the entire history of all Moodle versions&lt;br /&gt;
* The command (2) lists all available branches.&lt;br /&gt;
* Use the command (3) to create a new local branch called MOODLE_24_STABLE and set it to track the remote branch MOODLE_24_STABLE from the upstream repository.&lt;br /&gt;
* The command (4) actually switches to the newly created local branch. &lt;br /&gt;
&lt;br /&gt;
Note that Git has a huge number of options for each command and it&#039;s actually possible to do the above process with a single command (left as an exercise!!).&lt;br /&gt;
&lt;br /&gt;
==Git from behind a firewall==&lt;br /&gt;
&lt;br /&gt;
Git uses a read-only protocol that may be blocked by your firewall (port 9418). If this is a problem, you can use Github&#039;s http version &amp;lt;nowiki&amp;gt;https://github.com/moodle/moodle.git&amp;lt;/nowiki&amp;gt;. It&#039;s a bit slower, so use the Git protocol if you can.&lt;br /&gt;
&lt;br /&gt;
== Updating your installation ==&lt;br /&gt;
&lt;br /&gt;
The Moodle development team performs integration and testing of fixed bugs every Monday and Tuesday. On Wednesday you can install all patches by updating your code. Check the [http://git.moodle.org/gw?p=moodle.git;a=summary shortlog] to see if the official repository has been already updated or not.&lt;br /&gt;
&lt;br /&gt;
To update your code to the latest version (on the MOODLE_24_STABLE branch) &#039;&#039;&#039;all&#039;&#039;&#039; you have to do is:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ cd /path/to/your/moodle/&lt;br /&gt;
$ git pull&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
If this is a production site you should still consider the [[Upgrade]] instructions (e.g. take backups).&lt;br /&gt;
&lt;br /&gt;
== Installing a contributed extension from its Git repository ==&lt;br /&gt;
&lt;br /&gt;
This is one way to handle adding plugins from other Git repositories into your Moodle repository. Another way is to use Git Submodules. However, at the time of writing, this is one of Git&#039;s rougher features and should be regarded as an advanced option. &lt;br /&gt;
&lt;br /&gt;
For example, let us say we want to install the [[Book module]] from its Git repository into our Moodle 2.4.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ cd /path/to/your/moodle/&lt;br /&gt;
$ cd mod                                                          (1)&lt;br /&gt;
$ git clone git://github.com/skodak/moodle-mod_book.git book      (2)&lt;br /&gt;
$ cd book&lt;br /&gt;
$ git checkout -b MOODLE_24_STABLE origin/MOODLE_24_STABLE        (3)&lt;br /&gt;
$ git branch -d master                                            (4)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
The command (1) changes the current directory into the &#039;&#039;mod&#039;&#039; folder of your local Moodle clone. The command (2) creates a new subdirectory &#039;&#039;book&#039;&#039; and makes a local clone of Petr Škoda&#039;s vanilla Book repository. The command (3) creates a new local branch that will track the remote branch with a Book version for Moodle 2.4. The command (4) deletes the &#039;&#039;master&#039;&#039; that was created automatically by git-clone in (2) as we do not want it in this production checkout.&lt;br /&gt;
&lt;br /&gt;
Now it is wise to put the new directory mod/book/ to the list of ignored files of the main Moodle clone, otherwise a status of the main clone will keep reminding you that the new code has not been checked in.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ cd /path/to/your/moodle/&lt;br /&gt;
$ echo /mod/book/ &amp;gt;&amp;gt; .git/info/exclude&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
To update your Moodle installation now, you must visit both Git repositories and pull changes from upstream.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ cd /path/to/your/moodle/&lt;br /&gt;
$ git pull&lt;br /&gt;
$ cd mod/book&lt;br /&gt;
$ git pull&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Writing a shell script with these lines in the root of Moodle installation is a very good idea. Otherwise it is easy to forget what Git repositories are there within the main Moodle repository.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
; Moodle Docs&lt;br /&gt;
* [[Git FAQ]]&lt;br /&gt;
* [[Windows installation using Git]]&lt;br /&gt;
* [[Moodle versions]]&lt;br /&gt;
* For some screenshots see [[User:Frank_Ralf/Git]] (still work in progress)&lt;br /&gt;
* For fixing a Tracker Issue (MDL) / Forking Moodle / CONTRIButing code ... [[User:Sam_Hemelryk/My_Moodle_Git_workflow]]&lt;br /&gt;
* [[Moodle_Production_Server_with_GIT|Case study Git + Moodle from Technical University Berlin]]&lt;br /&gt;
&lt;br /&gt;
; Moodle forum discussions&lt;br /&gt;
* [https://moodle.org/mod/forum/discuss.php?d=213695 Got GIT installed on my site- here&#039;s how!]&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=168094 GIT help needed]&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=165236 Best way to manage CONTRIB code with GIT]&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=167063 Handy Git tip for tracking 3rd-party modules and plugins]&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=167730 Moodle Git repositories]&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=183693 Git and CVS]&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=208904 GIT for dummies]&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=211930 Git and upgrading misunderstanding]&lt;br /&gt;
&lt;br /&gt;
; External resources &lt;br /&gt;
* [http://www.kernel.org/pub/software/scm/git/docs/everyday.html Everyday GIT With 20 Commands Or So]&lt;br /&gt;
* [http://gitref.org/ Git Reference]&lt;br /&gt;
* [http://progit.org/book/ Pro Git book]&lt;br /&gt;
* [http://eigenjoy.com/2008/05/15/git-from-the-bottom-up/ Git from the bottom up]&lt;br /&gt;
&lt;br /&gt;
[[ja:管理者用Git]]&lt;br /&gt;
[[fr:Git_pour_administrateurs]]&lt;/div&gt;</summary>
		<author><name>Stuartrmealor</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/2x/ca/index.php?title=Free_Moodle&amp;diff=94091</id>
		<title>Free Moodle</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/2x/ca/index.php?title=Free_Moodle&amp;diff=94091"/>
		<updated>2011-11-26T23:50:32Z</updated>

		<summary type="html">&lt;p&gt;Stuartrmealor: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Improve}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;Org&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;URL&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;Ads?&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;3rd party plug-ins&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;Mobile-Enabled&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;Support&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;Business &amp;lt;/strong&amp;gt;&amp;lt;strong&amp;gt;Plan&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;Limits&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;Comm-&amp;lt;/strong&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;unity&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;Basic Plan&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;FreeMoodle.org&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://www.freemoodle.org&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;No&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Certificate, 20+ extra Themes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Yes, with mobile Themes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Email, Forums, Active on-site Community&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Moodle Partner funded&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Courses must be &#039;free to others&#039;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;1,000+ including many PHM&#039;s&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Free course hosting for free Moodle courses&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;MoodleReader&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://moodlereader.org&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Graded reader module&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;email/forums&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;University/Gov&#039;t funded&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Legit edu orgs only&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;25+&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;1 course, full access to the module &amp;amp;amp; 900+ book resources&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;MDL2.com&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://mdl2.com&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;yes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;FAQs&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;ad supported&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;250 MB upload&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;full Moodle 2.0 site with Admin access&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Ninehub&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://ninehub.com&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;yes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Web development company&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Full admin rights; unrestricted &amp;amp;amp; unlimited disk space&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;iTeach.org&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://iteach.org&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;For teachers, by teachers&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;100MB&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Must be a current teacher in a US private/public school (verified by phone&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;FreeWebClass&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://www.FreeWebClass.com&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;yes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Freemium&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;35 user limit (for free version); 1 GB bandwidth; 10 GB storage&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;MoodleShare&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://courses.moodleshare.com&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;1 course&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;editing teacher rights&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Sqooltools&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://sqooltools.com&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;yes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;yes^&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;self serve is free, $10 per ticket for help desk&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Freemium model&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;yes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;k-12 only, 1 course, 30 students, 250MB&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gnomio&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://gnomio.com&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;yes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;yes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;mle&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Donations&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;1000+ sites&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Full admin rights; honor code (no large files)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;KeytoSchool²&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://keytoschool.com&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;yes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;coming&lt;br /&gt;
soon&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;forums&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Non-profit/Freemium&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;help site/FAQs&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Full admin rights; 500 users &amp;amp;amp; 1/2 GB storage&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;TuitionClass&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://tuitionclass.net&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Supported by service/hosting company&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;128 MB upload limit&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Editing teacher/course creation rights&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;e-Socrates²&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://e-socrates.org&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;yes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;forums (English and Italian)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;IT company, focused on open source software&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;courses must be open&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;1000+ courses&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;1 course&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Learning&lt;br /&gt;
Objectivity²&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://learningobjectivity.com&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;self serve, email&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Consultancy&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;67 courses&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;1 course&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;000webhost¹&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://www.000webhost.com/&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Freemium&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;1.5 GB storage; 100 GB bandwidth&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;full admin rights&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
^audio recording only, other 3rd party modules with paid contract.&lt;br /&gt;
&lt;br /&gt;
¹note that this enables site set up via cPanel&lt;br /&gt;
&lt;br /&gt;
²these hosting companies are currently not accepting new registrants.  In the case of K2S it&#039;s been said that they are waiting for the release of Moodle 2.0.&lt;br /&gt;
&lt;br /&gt;
Originally created and published at http://www.Moodlenews.com/hosting&lt;/div&gt;</summary>
		<author><name>Stuartrmealor</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/2x/ca/index.php?title=Mobile_web_services&amp;diff=89446</id>
		<title>Mobile web services</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/2x/ca/index.php?title=Mobile_web_services&amp;diff=89446"/>
		<updated>2011-09-11T00:38:52Z</updated>

		<summary type="html">&lt;p&gt;Stuartrmealor: Fixed typo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Moodle 2.1 comes with a built-in web service designed for mobile applications. It is required to run the official [https://docs.moodle.org/en/Development:Mobile_app Moodle app]. Enable it only if you want people to use the official app or if third party app explicitly requires it.&lt;br /&gt;
&lt;br /&gt;
== Enable the mobile web services ==&lt;br /&gt;
Go to &#039;&#039;Administration block &amp;gt; Plugins &amp;gt; Web services &amp;gt; External services.&#039;&#039;&lt;br /&gt;
Check &#039;&#039;Enable mobile web services&#039;&#039; and &#039;&#039;Save&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;That&#039;s it! No other steps required.&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
The rest of this document explains &amp;quot;behind the scenes&amp;quot; for any further mobile service customisation.&lt;br /&gt;
&lt;br /&gt;
Enabling the mobile web services will automatically:&lt;br /&gt;
* enable the web services system (&#039;&#039;Administration block &amp;gt; Advanced features&#039;&#039;)&lt;br /&gt;
* enable the built-in external service called &#039;Mobile web services&#039; - you should see this new mobile service listed as enabled.&lt;br /&gt;
* enable the xml-rpc protocol&lt;br /&gt;
* allow the &#039;webservice/xmlrpc:use&#039; capability for authenticated user role&lt;br /&gt;
&lt;br /&gt;
It is not possible to edit this mobile service.&lt;br /&gt;
&lt;br /&gt;
== Disable the mobile web services ==&lt;br /&gt;
When you uncheck &#039;Enable mobile web services&#039;, it will automatically:&lt;br /&gt;
* disable the external service called &#039;Mobile web services&#039;.&lt;br /&gt;
*if &#039;Mobile web services&#039; was the only external service enabled:&lt;br /&gt;
** disable the web services system&lt;br /&gt;
** disable the xml-rpc protocol&lt;br /&gt;
** disallow the &#039;webservice/xmlrpc:use&#039; capability for authenticated user role&lt;br /&gt;
&lt;br /&gt;
[[Category:Web Services]]&lt;/div&gt;</summary>
		<author><name>Stuartrmealor</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/2x/ca/index.php?title=Free_Moodle&amp;diff=88585</id>
		<title>Free Moodle</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/2x/ca/index.php?title=Free_Moodle&amp;diff=88585"/>
		<updated>2011-08-27T05:05:31Z</updated>

		<summary type="html">&lt;p&gt;Stuartrmealor: Updated FreeMoodle.org details&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Improve}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;Org&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;URL&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;Ads?&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;3rd party plug-ins&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;Mobile-Enabled&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;Support&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;Business &amp;lt;/strong&amp;gt;&amp;lt;strong&amp;gt;Plan&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;Limits&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;Comm-&amp;lt;/strong&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;unity&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;Basic Plan&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;FreeMoodle.org&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://www.freemoodle.org&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;No&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Certificate&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Yes, with mobile Themes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Email, Forums, Active on-site Community&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Moodle Partner funded&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Courses must be &#039;free to others&#039;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;1,000+ including many PHM&#039;s&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Free course hosting for free Moodle courses&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;MoodleReader&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://moodlereader.org&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Graded reader module&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;email/forums&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;University/Gov&#039;t funded&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Legit edu orgs only&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;25+&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;1 course, full access to the module &amp;amp;amp; 900+ book resources&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;MDL2.com&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://mdl2.com&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;yes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;FAQs&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;ad supported&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;250 MB upload&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;full Moodle 2.0 site with Admin access&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Ninehub&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://ninehub.com&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;yes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Web development company&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Full admin rights; unrestricted &amp;amp;amp; unlimited disk space&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;iTeach.org&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://iteach.org&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;For teachers, by teachers&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;100MB&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Must be a current teacher in a US private/public school (verified by phone&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;FreeWebClass&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://www.FreeWebClass.com&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;yes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Freemium&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;35 user limit (for free version); 1 GB bandwidth; 10 GB storage&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;MoodleShare&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://courses.moodleshare.com&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;1 course&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;editing teacher rights&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Sqooltools&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://sqooltools.com&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;yes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;yes^&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;self serve is free, $10 per ticket for help desk&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Freemium model&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;yes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;k-12 only, 1 course, 30 students, 250MB&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gnomio&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://gnomio.com&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;yes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;yes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;mle&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Donations&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;1000+ sites&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Full admin rights; honor code (no large files)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;KeytoSchool²&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://keytoschool.com&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;yes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;coming&lt;br /&gt;
soon&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;forums&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Non-profit/Freemium&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;help site/FAQs&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Full admin rights; 500 users &amp;amp;amp; 1/2 GB storage&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;TuitionClass&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://tuitionclass.net&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Supported by service/hosting company&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;128 MB upload limit&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Editing teacher/course creation rights&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;e-Socrates²&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://e-socrates.org&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;yes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;forums (English and Italian)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;IT company, focused on open source software&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;courses must be open&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;1000+ courses&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;1 course&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Learning&lt;br /&gt;
Objectivity²&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://learningobjectivity.com&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;self serve, email&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Consultancy&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;67 courses&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;1 course&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;000webhost¹&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://www.000webhost.com/&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Freemium&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;1.5 GB storage; 100 GB bandwidth&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;full admin rights&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
^audio recording only, other 3rd party modules with paid contract.&lt;br /&gt;
&lt;br /&gt;
¹note that this enables site set up via cPanel&lt;br /&gt;
&lt;br /&gt;
²these hosting companies are currently not accepting new registrants.  In the case of K2S it&#039;s been said that they are waiting for the release of Moodle 2.0.&lt;br /&gt;
&lt;br /&gt;
Originally created and published at http://www.Moodlenews.com/hosting&lt;/div&gt;</summary>
		<author><name>Stuartrmealor</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/2x/ca/index.php?title=Free_Moodle&amp;diff=88584</id>
		<title>Free Moodle</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/2x/ca/index.php?title=Free_Moodle&amp;diff=88584"/>
		<updated>2011-08-27T05:01:54Z</updated>

		<summary type="html">&lt;p&gt;Stuartrmealor: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Improve}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table width=&amp;quot;100%&amp;quot; border=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;Org&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;URL&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;Ads?&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;3rd party plug-ins&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;Mobile-Enabled&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;Support&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;Business &amp;lt;/strong&amp;gt;&amp;lt;strong&amp;gt;Plan&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;Limits&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;Comm-&amp;lt;/strong&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;unity&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;Basic Plan&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;FreeMoodle.org&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://www.freemoodle.org&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;No&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Certificate&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Yes, with mobile Themes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Email, Forums, Active on-site Community&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Moodle Partner funded&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Courses must be &#039;free to others&#039;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;N/A&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;1 course, full access to the module &amp;amp;amp; 900+ book resources&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;MoodleReader&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://moodlereader.org&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Graded reader module&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;email/forums&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;University/Gov&#039;t funded&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Legit edu orgs only&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;25+&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;1 course, full access to the module &amp;amp;amp; 900+ book resources&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;MDL2.com&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://mdl2.com&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;yes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;FAQs&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;ad supported&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;250 MB upload&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;full Moodle 2.0 site with Admin access&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Ninehub&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://ninehub.com&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;yes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Web development company&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Full admin rights; unrestricted &amp;amp;amp; unlimited disk space&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;iTeach.org&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://iteach.org&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;For teachers, by teachers&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;100MB&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Must be a current teacher in a US private/public school (verified by phone&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;FreeWebClass&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://www.FreeWebClass.com&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;yes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Freemium&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;35 user limit (for free version); 1 GB bandwidth; 10 GB storage&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;MoodleShare&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://courses.moodleshare.com&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;1 course&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;editing teacher rights&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Sqooltools&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://sqooltools.com&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;yes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;yes^&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;self serve is free, $10 per ticket for help desk&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Freemium model&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;yes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;k-12 only, 1 course, 30 students, 250MB&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gnomio&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://gnomio.com&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;yes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;yes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;mle&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Donations&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;1000+ sites&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Full admin rights; honor code (no large files)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;KeytoSchool²&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://keytoschool.com&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;yes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;coming&lt;br /&gt;
soon&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;forums&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Non-profit/Freemium&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;help site/FAQs&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Full admin rights; 500 users &amp;amp;amp; 1/2 GB storage&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;TuitionClass&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://tuitionclass.net&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Supported by service/hosting company&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;128 MB upload limit&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Editing teacher/course creation rights&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;e-Socrates²&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://e-socrates.org&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;yes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;forums (English and Italian)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;IT company, focused on open source software&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;courses must be open&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;1000+ courses&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;1 course&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Learning&lt;br /&gt;
Objectivity²&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://learningobjectivity.com&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;self serve, email&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Consultancy&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;67 courses&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;1 course&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;000webhost¹&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;http://www.000webhost.com/&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;no&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Freemium&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;1.5 GB storage; 100 GB bandwidth&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;NA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;full admin rights&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
^audio recording only, other 3rd party modules with paid contract.&lt;br /&gt;
&lt;br /&gt;
¹note that this enables site set up via cPanel&lt;br /&gt;
&lt;br /&gt;
²these hosting companies are currently not accepting new registrants.  In the case of K2S it&#039;s been said that they are waiting for the release of Moodle 2.0.&lt;br /&gt;
&lt;br /&gt;
Originally created and published at http://www.Moodlenews.com/hosting&lt;/div&gt;</summary>
		<author><name>Stuartrmealor</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/2x/ca/index.php?title=Manager_role&amp;diff=82020</id>
		<title>Manager role</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/2x/ca/index.php?title=Manager_role&amp;diff=82020"/>
		<updated>2011-03-17T10:45:11Z</updated>

		<summary type="html">&lt;p&gt;Stuartrmealor: Edited a useful description provided by Tim Hunt in a Moodle.org Forum&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{stub}}{{Moodle 2.0}}&lt;br /&gt;
&lt;br /&gt;
The default manager role, in Moodle 2.0 onwards, enables users assigned the role to access courses and modify them.&lt;br /&gt;
&lt;br /&gt;
The Manager role is a &#039;real role&#039;, &#039;&#039;similar&#039;&#039; to Administrator (but much safer to use).&lt;br /&gt;
&lt;br /&gt;
The way permission checks work in the Moodle code is that there is a function called has_capability.  For admins, has_capability will &#039;&#039;&#039;always&#039;&#039;&#039; return true, no matter how the roles are set up.&lt;br /&gt;
&lt;br /&gt;
However, the Manager role is a normal role, like Course Creator, or Teacher. By default the Manager role has almost every capability but, because it is a normal role, you can edit that role if you choose (there is no way to edit what permissions an Administrator has).&lt;br /&gt;
Best-practice might suggest that Admins should normally use a Manager role, and not use an Administrator account.&lt;br /&gt;
&lt;br /&gt;
This is similar to the way you are recommended not to log into Linux as root.&lt;br /&gt;
&lt;br /&gt;
The Manager role therefore allows a site Administrator to give very powerful roles to others who are assigned a Manager role, but without having to give them a full Administrator role.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
* [[Site administrators]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Roles]]&lt;/div&gt;</summary>
		<author><name>Stuartrmealor</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/2x/ca/index.php?title=Custom_SQL_queries_report&amp;diff=70881</id>
		<title>Custom SQL queries report</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/2x/ca/index.php?title=Custom_SQL_queries_report&amp;diff=70881"/>
		<updated>2010-04-09T22:07:01Z</updated>

		<summary type="html">&lt;p&gt;Stuartrmealor: /* Monthly Usage by Role */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by The Open University&lt;br /&gt;
&lt;br /&gt;
This admin report plugin allows Administrators to set up arbitrary database queries to act as ad-hoc reports. Reports can be of two types: either run on demand, or scheduled to run automatically. Other users with the right capability can go in and see a list of queries that they have access to. Results can be viewed on-screen or downloaded as CSV.&lt;br /&gt;
&lt;br /&gt;
==Installing this report==&lt;br /&gt;
&lt;br /&gt;
Follow the generic [[Installing contributed modules or plugins]] documentation.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Screen shots==&lt;br /&gt;
&lt;br /&gt;
Here are two example screen shots, showing the two main screens.&lt;br /&gt;
&lt;br /&gt;
[[Image:Custom_report_list.png|thumb|none|600px|The list of available reports]]&lt;br /&gt;
[[Image:Custom_report.png|thumb|none|600px|The results of running one of the reports]]&lt;br /&gt;
&lt;br /&gt;
(Note, these screen shots are in the OU theme, not the standard Moodle theme, and iCMA is OU-jargon for quiz.)&lt;br /&gt;
&lt;br /&gt;
==Interface for normal users==&lt;br /&gt;
&lt;br /&gt;
===List of available queries===&lt;br /&gt;
&lt;br /&gt;
Users with the report/customsql:view capability can access the list of reports in the admin block. Each query is accessible only to a certain people. There are three levels of access:&lt;br /&gt;
* Available to any one who can access the report at all (those with report/customsql:view).&lt;br /&gt;
* Available to people who are able to see other system reports (those with moodle/site:viewreports)&lt;br /&gt;
* Available to administrators only (those with moodle/site:config)&lt;br /&gt;
&lt;br /&gt;
When you go to the list, it will only show the queries you have access to. There is a note beside each query saying when it was last run, and how long it took to generate.&lt;br /&gt;
&lt;br /&gt;
The list shows on-demand and scheduled queries separately.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Running an on-demand query===&lt;br /&gt;
&lt;br /&gt;
To run an on-demand query, click on its name in the list of queries.&lt;br /&gt;
&lt;br /&gt;
The query will be run, and the results will be displayed as a table. Any URLs in the table will automatically be made into hyperlinks.&lt;br /&gt;
&lt;br /&gt;
A description of the query may appear above the table.&lt;br /&gt;
&lt;br /&gt;
The summary of when the query was run and how long it took is shown at the bottom, along with a link to download the CSV file (for example to get the data into Excel) and a link back to the list of all available queries.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Viewing the results of scheduled queries===&lt;br /&gt;
&lt;br /&gt;
Scheduled queries can work in one of two ways. Either each run of the report generates and entire table of reasults, or each run just creates one line of results, and the report builds up a row at a time.&lt;br /&gt;
&lt;br /&gt;
When you click the name in the list of queries, you get taken to a display of the latest results, just like in the on-demand case.&lt;br /&gt;
&lt;br /&gt;
However, if each scheduled run generates a complete report, then at the bottom of a page there will be a list of all the previous runs of the report, so that you can go and see how the report changed over time.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Interface for administrators==&lt;br /&gt;
&lt;br /&gt;
Administrators (that is, users with report/customsql:definequeries) see everything that other users see, but with some additions.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Additional controls in the staff interface===&lt;br /&gt;
&lt;br /&gt;
Administrators get shown who each report in the list is available to.&lt;br /&gt;
&lt;br /&gt;
They also get an edit and a delete icon next to each query.&lt;br /&gt;
&lt;br /&gt;
There is an &#039;&#039;&#039;Add new query button&#039;&#039;&#039; at the end of the list of queries.&lt;br /&gt;
&lt;br /&gt;
When viewing a particular query, Administrators get an edit and a delete link underneath the table of results.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Adding or editing a query===&lt;br /&gt;
&lt;br /&gt;
When you click the &#039;&#039;&#039;Add new query button&#039;&#039;&#039;, you get taken to an editing form that lets you define the query.&lt;br /&gt;
&lt;br /&gt;
You must give the query a name.&lt;br /&gt;
&lt;br /&gt;
You can optionally enter a description that is displayed above the results table. You should use this to explain what the results of the query mean.&lt;br /&gt;
&lt;br /&gt;
You must enter the SQL to generate the results you want displayed. This must be an SQL select statement. You must use the prefix prefix_ for table names. It should not be possible to enter any SQL that would alter the contents of the database.&lt;br /&gt;
&lt;br /&gt;
You choose who you want the query to be accessible to.&lt;br /&gt;
&lt;br /&gt;
You choose whether the query should be run on-demand or scheduled weekly or monthly. If the report is scheduled, you can say whether the each run returns one row to be added to a single table, or whether each run generates a separate table.&lt;br /&gt;
&lt;br /&gt;
When you save the new query, the SQL is checked to make sure that it will execute without errors. If you have said that the report will only return a single row, this is also checked.&lt;br /&gt;
After saving the query, if this was a manual query, you are taken to the query results page, so you can see what the results look like. If it was an automatic query or if you cancel the form, you are taken to the list of available queries.&lt;br /&gt;
&lt;br /&gt;
Editing an existing query uses the same form as for adding a new query, but to change the properties of an existing query.&lt;br /&gt;
&lt;br /&gt;
Note that at the OU, weeks start on Saturday. If you don&#039;t like that, there is a fairly obvious constant to hack at the top of locallib.php.&lt;br /&gt;
&lt;br /&gt;
===Deleting a query===&lt;br /&gt;
&lt;br /&gt;
When you click the delete icon or link for a query, you are taken to a confirmation page that shows you SQL of the query you are about to delete. The query is only deleted if you click Yes on the confirmation page.&lt;br /&gt;
&lt;br /&gt;
After deleting a query, you are taken back to the list of queries.&lt;br /&gt;
&lt;br /&gt;
==Share your interesting queries here==&lt;br /&gt;
&lt;br /&gt;
If you come up with any interesting SQL to custom reports, you can share it here.&lt;br /&gt;
&lt;br /&gt;
===Quiz attempts in the last week/month===&lt;br /&gt;
&lt;br /&gt;
Set this up as a scheduled report:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code sql&amp;gt;&lt;br /&gt;
SELECT COUNT(*)&lt;br /&gt;
FROM prefix_quiz_attempts&lt;br /&gt;
WHERE timefinish &amp;gt; %%STARTTIME%%&lt;br /&gt;
    AND timefinish &amp;lt;= %%ENDTIME%%&lt;br /&gt;
    AND preview = 0&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This &#039;&#039;&#039;must&#039;&#039;&#039; be set up as a &#039;&#039;&#039;Scheduled, on the first day of each week&#039;&#039;&#039; or &#039;&#039;&#039;Scheduled, on the first day of each month&#039;&#039;&#039; report, or it will not work.&lt;br /&gt;
&lt;br /&gt;
===Usage summary===&lt;br /&gt;
&lt;br /&gt;
This report shows roughly the same usage statistics that are sent to moodle.org when you register your site. The ones that are aggregated at http://moodle.org/stats/. (The only difference is that the registration form does not do AND confirmed = 1 for some reason.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code sql&amp;gt;&lt;br /&gt;
SELECT&lt;br /&gt;
(SELECT COUNT(id) FROM prefix_course) - 1 AS courses,&lt;br /&gt;
(SELECT COUNT(id) FROM prefix_user WHERE deleted = 0 AND confirmed = 1) AS users,&lt;br /&gt;
(SELECT COUNT(DISTINCT ra.userid)&lt;br /&gt;
 FROM prefix_role_capabilities rc&lt;br /&gt;
 JOIN prefix_role_assignments ra ON ra.roleid = rc.roleid&lt;br /&gt;
 WHERE rc.capability IN (&#039;moodle/course:upd&#039; || &#039;ate&#039;, &#039;moodle/site:doanything&#039;)) AS teachers,&lt;br /&gt;
(SELECT COUNT(id) FROM prefix_role_assignments) AS enrolments,&lt;br /&gt;
(SELECT COUNT(id) FROM prefix_forum_posts) AS forum_posts,&lt;br /&gt;
(SELECT COUNT(id) FROM prefix_resource) AS resources,&lt;br /&gt;
(SELECT COUNT(id) FROM prefix_question) AS questions&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
There are two interesting queries in this blog post [http://tjhunt.blogspot.com/2010/03/when-do-students-submit-their-online.html When do students submit their online tests?].&lt;br /&gt;
&lt;br /&gt;
===Monthly Usage by Role===&lt;br /&gt;
&lt;br /&gt;
This report shows a distinct count of users by their role, accessing your site.  Each instance of user and role is counted once per month, no matter how many courses they access.  We use this to show the total number of students and teachers accessing our site.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code sql&amp;gt;&lt;br /&gt;
SELECT &lt;br /&gt;
month(from_unixtime(`prefix_stats_user_monthly`.`timeend`)) AS calendar_month,&lt;br /&gt;
year(from_unixtime(`prefix_stats_user_monthly`.`timeend`)) AS calendar_year,&lt;br /&gt;
prefix_role.name as user_role,&lt;br /&gt;
COUNT(DISTINCT prefix_stats_user_monthly.userid) AS total_users&lt;br /&gt;
FROM&lt;br /&gt;
prefix_stats_user_monthly&lt;br /&gt;
Inner Join prefix_role_assignments ON prefix_stats_user_monthly.userid = prefix_role_assignments.userid&lt;br /&gt;
Inner Join prefix_context ON prefix_role_assignments.contextid = prefix_context.id&lt;br /&gt;
Inner Join prefix_role ON prefix_role_assignments.roleid = prefix_role.id&lt;br /&gt;
WHERE prefix_context.contextlevel = 50&lt;br /&gt;
AND `prefix_stats_user_monthly`.`stattype` = &#039;activity&#039;&lt;br /&gt;
AND prefix_stats_user_monthly.courseid &amp;lt;&amp;gt;1&lt;br /&gt;
GROUP BY month(from_unixtime(`prefix_stats_user_monthly`.`timeend`)),&lt;br /&gt;
year(from_unixtime(`prefix_stats_user_monthly`.`timeend`)),&lt;br /&gt;
prefix_stats_user_monthly.stattype,&lt;br /&gt;
prefix_role.name&lt;br /&gt;
ORDER BY &lt;br /&gt;
year(from_unixtime(`prefix_stats_user_monthly`.`timeend`)), month(from_unixtime(`prefix_stats_user_monthly`.`timeend`)),&lt;br /&gt;
prefix_role.name&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You must have Statistics turned on to be able to generate any data with this report.&lt;br /&gt;
&lt;br /&gt;
===Show all Quiz results across a site===&lt;br /&gt;
I&#039;m sure someone will be able to improve upon this, but this is a query that will show Quiz results across a site. --[[User:Stuart Mealor|Stuart Mealor]] 22:07, 9 April 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code sql&amp;gt;&lt;br /&gt;
SELECT &lt;br /&gt;
     prefix_grade_items.itemname,&lt;br /&gt;
     prefix_grade_items.grademax,&lt;br /&gt;
     ROUND(prefix_grade_grades.finalgrade, 0) AS finalgrade,&lt;br /&gt;
     prefix_user.firstname,&lt;br /&gt;
     prefix_user.lastname,&lt;br /&gt;
     prefix_user.username&lt;br /&gt;
FROM&lt;br /&gt;
     prefix_grade_grades&lt;br /&gt;
     INNER JOIN prefix_user ON prefix_grade_grades.userid = prefix_user.id&lt;br /&gt;
     INNER JOIN prefix_grade_items ON prefix_grade_grades.itemid = prefix_grade_items.id&lt;br /&gt;
WHERE (prefix_grade_items.itemname IS NOT NULL)&lt;br /&gt;
AND (prefix_grade_items.itemtype = &#039;mod&#039; OR prefix_grade_items.itemtype = &#039;manual&#039;)&lt;br /&gt;
AND (prefix_grade_items.itemmodule = &#039;quiz&#039; OR prefix_grade_items.itemmodule IS NULL)&lt;br /&gt;
AND (prefix_grade_grades.timemodified IS NOT NULL)&lt;br /&gt;
AND (prefix_grade_grades.finalgrade &amp;gt; 0)&lt;br /&gt;
AND (prefix_user.deleted = 0)&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
* [[Reports_(administrator)]] for other admin reports&lt;br /&gt;
* [[Installing contributed modules or plugins]]&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=136484 Custom SQL queries report] forum announcement&lt;br /&gt;
&lt;br /&gt;
[[Category: Administrator]]&lt;br /&gt;
[[Category:Report]]&lt;br /&gt;
[[Category:Contributed_code]]&lt;/div&gt;</summary>
		<author><name>Stuartrmealor</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/2x/ca/index.php?title=Blog_settings&amp;diff=62882</id>
		<title>Blog settings</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/2x/ca/index.php?title=Blog_settings&amp;diff=62882"/>
		<updated>2009-09-10T21:06:08Z</updated>

		<summary type="html">&lt;p&gt;Stuartrmealor: Added Permalink&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Blogs}}&lt;br /&gt;
[[Image:Blog_newentry.gif|thumb|Add a new blog entry in Moodle 1.6]]&lt;br /&gt;
==Adding a blog entry==&lt;br /&gt;
&lt;br /&gt;
#Click on the Blog tab in your profile page.&lt;br /&gt;
#Click on the &amp;quot;Add a new entry&amp;quot; link.&lt;br /&gt;
#Write your entry and give it a title.&lt;br /&gt;
#If you want to attach a file (in Moodle 1.8 onwards), click the Browse button, find the file on your computer, and click Open. Be sure your document is smaller than the maximum attachment size.&lt;br /&gt;
#Choose who you wish to publish the entry to i.e. who may see the entry. There are three options:&lt;br /&gt;
#*Yourself i.e. your blog entry is a draft&lt;br /&gt;
#*Anyone on your site&lt;br /&gt;
#*Anyone in the world&lt;br /&gt;
#Select appropriate official tags for your entry and/or add one or more user defined tags. If you add more then one, they should be comma separated.&lt;br /&gt;
#Click on the &amp;quot;Save changes&amp;quot; button.&lt;br /&gt;
==Editing a blog entry==&lt;br /&gt;
You may edit your blog entry at any time, perhaps changing the publish option from yourself to anyone on your site, via the edit link at the bottom of the entry. You may also delete the blog entry if you wish.&lt;br /&gt;
==Permalink==&lt;br /&gt;
Clicking Permalink on a blog entry gives you a direct link to that particular blog posting (in the address bar).  This is so you can send a link to this &#039;&#039;specific&#039;&#039; post to someone else.&lt;br /&gt;
[[eu:Sarrera_gehitu_blogean]]&lt;br /&gt;
[[de:Blog-Eintrag anlegen]]&lt;/div&gt;</summary>
		<author><name>Stuartrmealor</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/2x/ca/index.php?title=Usuari:Stuart_Mealor&amp;diff=62153</id>
		<title>Usuari:Stuart Mealor</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/2x/ca/index.php?title=Usuari:Stuart_Mealor&amp;diff=62153"/>
		<updated>2009-08-27T05:23:32Z</updated>

		<summary type="html">&lt;p&gt;Stuartrmealor: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi :-)&lt;br /&gt;
* I&#039;m Managing Director of &#039;&#039;[http://www.hrdnz.com HRDNZ]&#039;&#039;, Moodle Partner in New Zealand.&lt;br /&gt;
We run the &#039;&#039;[http://www.moodlemoot.co.nz Moodle Moot]&#039;&#039; in NZ each year &lt;br /&gt;
* I&#039;m Moodle Certification Manager - which is currently the Moodle Course Creator Certificate (MCCC) &#039;&#039;[http://moodle.org/course/view.php?id=48 Moodle Certification]&#039;&#039;.&lt;br /&gt;
* I&#039;m also joint facilitator of the &#039;&#039;[http://moodle.org/course/view.php?id=32 Moodle Business Uses]&#039;&#039; area (Also run the &#039;&#039;[http://www.linkedin.com/groups?gid=128299 Linkedin MoodleUsers Group]&#039;&#039;&lt;br /&gt;
* I&#039;ve presented at Moodle Moots meeting fantastic people along the way(!) in:&lt;br /&gt;
** Australia (Sydney and Brisbane)&lt;br /&gt;
** Muscat (Oman)&lt;br /&gt;
** Rome (Italy)&lt;br /&gt;
** Barcelona (Spain)&lt;br /&gt;
** San Francisco twice and Oklahoma (USA)&lt;br /&gt;
** 5(!) Moots in New Zealand.&lt;br /&gt;
** Also you might have met me at LearnX, E-Fest, ULearn, or Ascilite conferences.&lt;br /&gt;
&lt;br /&gt;
Please say hello on my [[User talk:Stuart Mealor|talk page]] :-)&lt;/div&gt;</summary>
		<author><name>Stuartrmealor</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/2x/ca/index.php?title=Usuari:Stuart_Mealor&amp;diff=62152</id>
		<title>Usuari:Stuart Mealor</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/2x/ca/index.php?title=Usuari:Stuart_Mealor&amp;diff=62152"/>
		<updated>2009-08-27T05:19:37Z</updated>

		<summary type="html">&lt;p&gt;Stuartrmealor: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi :-)&lt;br /&gt;
* I&#039;m Managing Director of &#039;&#039;[http://www.hrdnz.com HRDNZ]&#039;&#039;, Moodle Partner in New Zealand.&lt;br /&gt;
We run the &#039;&#039;[http://www.moodlemoot.co.nz Moodle Moot]&#039;&#039; in NZ each year &lt;br /&gt;
* I&#039;m Moodle Certification Manager - which is currently the Moodle Course Creator Certificate (MCCC) &#039;&#039;[http://moodle.org/course/view.php?id=48 Moodle Certification]&#039;&#039;.&lt;br /&gt;
* I&#039;m also joint facilitator of the &#039;&#039;[http://moodle.org/course/view.php?id=32 Moodle Business Uses]&#039;&#039; area &lt;br /&gt;
* I&#039;ve presented at Moodle Moots meeting fantastic people along the way(!) in:&lt;br /&gt;
** Australia (Sydney and Brisbane)&lt;br /&gt;
** Muscat (Oman)&lt;br /&gt;
** Rome (Italy)&lt;br /&gt;
** Barcelona (Spain)&lt;br /&gt;
** San Francisco twice and Oklahoma (USA)&lt;br /&gt;
** 5(!) Moots in New Zealand.&lt;br /&gt;
** Also you might have met me at LearnX, E-Fest, ULearn, or Ascilite conferences.&lt;br /&gt;
&lt;br /&gt;
Please say hello on my [[User talk:Stuart Mealor|talk page]] :-)&lt;/div&gt;</summary>
		<author><name>Stuartrmealor</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/2x/ca/index.php?title=Usuari:Stuart_Mealor&amp;diff=62151</id>
		<title>Usuari:Stuart Mealor</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/2x/ca/index.php?title=Usuari:Stuart_Mealor&amp;diff=62151"/>
		<updated>2009-08-27T05:09:18Z</updated>

		<summary type="html">&lt;p&gt;Stuartrmealor: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi :-)&lt;br /&gt;
* I&#039;m Managing Director of HRDNZ, Moodle Partner in New Zealand.&lt;br /&gt;
We run the &#039;&#039;[http://www.moodlemoot.co.nz Moodle Moot]&#039;&#039; in NZ each year &lt;br /&gt;
* I&#039;m Moodle Certification Manager - which is currently the Moodle Course Creator Certificate (MCCC) &#039;&#039;[http://moodle.org/course/view.php?id=48 Moodle Certification]&#039;&#039;.&lt;br /&gt;
* I&#039;m also joint facilitator of the &#039;&#039;[http://moodle.org/course/view.php?id=32 Moodle Business Uses]&#039;&#039; area &lt;br /&gt;
* I&#039;ve presented at Moodle Moots in:&lt;br /&gt;
** Australia (Sydney and Brisbane)&lt;br /&gt;
** Muscat (Oman)&lt;br /&gt;
** Rome (Italy)&lt;br /&gt;
** Barcelona (Spain)&lt;br /&gt;
** San Francisco x2 and Oklahoma (USA)&lt;br /&gt;
** 5(!) Moots in New Zealand.&lt;br /&gt;
** Also you might have met me at LearnX, E-Fest, ULearn, or Ascilite conferences.&lt;br /&gt;
&lt;br /&gt;
Please say hello on my [[User talk:Stuart Mealor|talk page]] :-)&lt;/div&gt;</summary>
		<author><name>Stuartrmealor</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/2x/ca/index.php?title=Usuari:Stuart_Mealor&amp;diff=62150</id>
		<title>Usuari:Stuart Mealor</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/2x/ca/index.php?title=Usuari:Stuart_Mealor&amp;diff=62150"/>
		<updated>2009-08-27T05:07:41Z</updated>

		<summary type="html">&lt;p&gt;Stuartrmealor: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi :-)&lt;br /&gt;
* I&#039;m Managing Director of HRDNZ, Moodle Partner in New Zealand.&lt;br /&gt;
We run the &#039;&#039;[http://www.moodlemoot.co.nz Moodle Moot]&#039;&#039; in NZ each year &lt;br /&gt;
* I&#039;m Moodle Certification Manager - which is currently the Moodle Course Creator Certificate (MCCC) &#039;&#039;[http://moodle.org/course/view.php?id=48 Moodle Certification]&#039;&#039;.&lt;br /&gt;
* I&#039;m also joint facilitator of the Moodle Business Uses area &#039;&#039;[http://moodle.org/course/view.php?id=32 Moodle Business Uses]&#039;&#039;&lt;br /&gt;
* I&#039;ve presented at Moodle Moots in&lt;br /&gt;
** Australia (Sydney and Brisbane)&lt;br /&gt;
** Muscat (Oman)&lt;br /&gt;
** Rome (Italy)&lt;br /&gt;
** Barcelona (Spain)&lt;br /&gt;
** San Francisco x2 and Oklahoma (USA)&lt;br /&gt;
** 5 Moots in New Zealand.&lt;br /&gt;
** Also you might have met me at LearnX, E-Fest, ULearn, or Ascilite conferences.&lt;br /&gt;
&lt;br /&gt;
Please say hello on my [[User talk:Stuart Mealor|talk page]] :-)&lt;/div&gt;</summary>
		<author><name>Stuartrmealor</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/2x/ca/index.php?title=Usuari:Stuart_Mealor&amp;diff=62149</id>
		<title>Usuari:Stuart Mealor</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/2x/ca/index.php?title=Usuari:Stuart_Mealor&amp;diff=62149"/>
		<updated>2009-08-27T04:55:30Z</updated>

		<summary type="html">&lt;p&gt;Stuartrmealor: New page: Hi :-) * I&amp;#039;m Managing Director of HRDNZ, Moodle Partner in New Zealand. We run the &amp;#039;&amp;#039;[http://moodle.org/course/view.php?id=32 Moodle Moot]&amp;#039;&amp;#039; in NZ each year  * I&amp;#039;m Moodle Certification Man...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi :-)&lt;br /&gt;
* I&#039;m Managing Director of HRDNZ, Moodle Partner in New Zealand.&lt;br /&gt;
We run the &#039;&#039;[http://moodle.org/course/view.php?id=32 Moodle Moot]&#039;&#039; in NZ each year &lt;br /&gt;
* I&#039;m Moodle Certification Manager - which is currently the Moodle Course Creator Certificate (MCCC) &#039;&#039;[http://moodle.org/course/view.php?id=48 Moodle Certification]&#039;&#039;.&lt;br /&gt;
* I&#039;m also joint facilitator of the Moodle Business Uses area &#039;&#039;[http://moodle.org/course/view.php?id=32 Moodle Business Uses]&#039;&#039;&lt;br /&gt;
* I&#039;ve presented at Moodle Moots in Australia (Sydney and Brisbane), Muscat (Oman), Rome (Italy), Barcelona (Spain), San Francisco x2 and Oklahoma (USA), as well as 5 Moots in New Zealand.  Also you might have met me at LearnX, E-Fest, ULearn, or Ascilite conferences.&lt;br /&gt;
&lt;br /&gt;
Please say hello on my [[User talk:Stuart Mealor|talk page]] :-)&lt;/div&gt;</summary>
		<author><name>Stuartrmealor</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/2x/ca/index.php?title=report/security/report_security_check_displayerrors&amp;diff=62148</id>
		<title>report/security/report security check displayerrors</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/2x/ca/index.php?title=report/security/report_security_check_displayerrors&amp;diff=62148"/>
		<updated>2009-08-27T04:42:45Z</updated>

		<summary type="html">&lt;p&gt;Stuartrmealor: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If PHP is set to display errors, then anyone can enter a faulty URL causing PHP to give up valuable information about directory structures and so on. &lt;br /&gt;
&lt;br /&gt;
(Can someone add instructions on where to turn this off please).&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
* Using Moodle [http://moodle.org/mod/forum/view.php?id=7301 Security and Privacy forum]&lt;br /&gt;
* Using [http://moodle.org/mod/forum/discuss.php?d=101761 upgrade to 1.9.2 has PHP setting display_errors message] Moodle forum discussion&lt;br /&gt;
&lt;br /&gt;
[[Category:Security]]&lt;br /&gt;
&lt;br /&gt;
[[eu:report/security/report_security_check_displayerrors]]&lt;/div&gt;</summary>
		<author><name>Stuartrmealor</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/2x/ca/index.php?title=Standard_Moodle_tags&amp;diff=62100</id>
		<title>Standard Moodle tags</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/2x/ca/index.php?title=Standard_Moodle_tags&amp;diff=62100"/>
		<updated>2009-08-26T08:55:25Z</updated>

		<summary type="html">&lt;p&gt;Stuartrmealor: /* Tags in use */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Tags are useful for connecting different bits of information together.&lt;br /&gt;
&lt;br /&gt;
Obviously it&#039;s important to use the same tags everywhere.&lt;br /&gt;
&lt;br /&gt;
This page describes standard Moodle tags that you should use when describing Moodle events on the internet (Flickr, Twitter, Facebook, del.icio.us etc)&lt;br /&gt;
&lt;br /&gt;
==General Moodle stuff==&lt;br /&gt;
&lt;br /&gt;
For general discussion of Moodle, use the tag &amp;quot;moodle&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Twitter example:&lt;br /&gt;
 I just installed #moodle on a computer I bought ten years ago!&lt;br /&gt;
&lt;br /&gt;
==Moodle Moots==&lt;br /&gt;
&lt;br /&gt;
For Moodle conferences (Moots) use mootCCYY where:&lt;br /&gt;
* CC is a country ISO code or state abbreviation, and&lt;br /&gt;
* YY is a year.&lt;br /&gt;
&lt;br /&gt;
 mootAU09&lt;br /&gt;
&lt;br /&gt;
Capitalisation doesn&#039;t matter and just helps readability.&lt;br /&gt;
&lt;br /&gt;
The two letter code would usually be a country, but for somewhere like the US where there are different moots they might choose to use &amp;quot;us&amp;quot; or a state like &amp;quot;sf&amp;quot; or &amp;quot;ok&amp;quot;. It really doesn&#039;t matter if two moots both used mootus09 for example, because they would be separated in time.&lt;br /&gt;
&lt;br /&gt;
==Tags in use==&lt;br /&gt;
&lt;br /&gt;
* #mooteu09 MoodleMoot Euskadi&lt;br /&gt;
* #mootNL09 Amsterdam Moodlemoot&lt;br /&gt;
* #mootUS09ok Moodlemoot Oklahoma  (or #mootok09)&lt;br /&gt;
* #mootUS09SF Moodlemoot San Francisco  (or #mootsf09)&lt;br /&gt;
* #mootin09 Goshen Midwest MoodleMoot&lt;br /&gt;
* #mootus09ny MoodleMoot Delhi (or #mootny09) &lt;br /&gt;
* #mootar09 MoodleMoot Argentina&lt;br /&gt;
* #mootat09 MoodleMoot Austria &lt;br /&gt;
* #mootDE09 Moodlemoot Germany 2009 in Elmshorn 18. September 2009&lt;br /&gt;
* #moodle #OE09 Moodle at Online Educa 2009 in Berlin (December)&lt;br /&gt;
* #mootDE10b Moodlemoot Germany 2010 in Berlin March&lt;br /&gt;
* #mootDE10e Moodlemoot Germany 2010 in Essen September&lt;br /&gt;
* #mootJP10hk Moodlemoot Japan in Hakodate, February 2010&lt;br /&gt;
* #mootNZ10 Moodle Moot New Zealand (Christchurch), 13th-15th April 2010&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
* Lounge discussion [http://moodle.org/mod/forum/discuss.php?d=121619 A standard naming scheme for Moodle hashtags]&lt;/div&gt;</summary>
		<author><name>Stuartrmealor</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/2x/ca/index.php?title=Moodle_Course_Creator_Certificate&amp;diff=50034</id>
		<title>Moodle Course Creator Certificate</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/2x/ca/index.php?title=Moodle_Course_Creator_Certificate&amp;diff=50034"/>
		<updated>2009-02-03T21:07:25Z</updated>

		<summary type="html">&lt;p&gt;Stuartrmealor: /* What is the Moodle Course Creator Certificate? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==What is the Moodle Course Creator Certificate?==&lt;br /&gt;
&lt;br /&gt;
The Moodle Course Creator Certificate, or MCCC, is a way for you to demonstrate your skills in using Moodle as a teacher.&lt;br /&gt;
&lt;br /&gt;
The assessment contains a &#039;&#039;course project&#039;&#039;, a short &#039;&#039;narrative&#039;&#039; document, and an &#039;&#039;online exam&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
You will be assigned an MCCC-certified mentor-assessor to help guide you through this process.&lt;br /&gt;
&lt;br /&gt;
When you pass the certification you are given a code that lets you (or anyone else you give it to) download your personalised certificate as a PDF from the http://certificates.moodle.com site.&lt;br /&gt;
&lt;br /&gt;
The MCCC is &#039;&#039;&#039;not&#039;&#039;&#039; a training course, it assumes that already know what you need to know and want to be assessed and certified.  However, some Moodle Partners provide a training course that when successfully completed equates to the &#039;&#039;course project&#039;&#039; element.&lt;br /&gt;
&lt;br /&gt;
==Who provides the certification?==&lt;br /&gt;
&lt;br /&gt;
The content of the certification is designed by the Moodle community at moodle.org where you can find discussions, documentation and preparation guides.&lt;br /&gt;
&lt;br /&gt;
If you are considering MCCC, please join the area on moodle.org: [http://moodle.org/course/view.php?id=48 Certification area on moodle.org]&lt;br /&gt;
&lt;br /&gt;
The certification process is administered world-wide by [[Moodle Partner|Moodle Partners]].  The fee is set locally, so you should check this with your [[Moodle Partner|Moodle Partners]].&lt;br /&gt;
&lt;br /&gt;
In countries with no [[Moodle Partner|Moodle Partners]] you can register with Certification Central Administration - support in English only. (Details are provided at [http://moodle.org/course/view.php?id=48 Certification area on moodle.org].&lt;br /&gt;
&lt;br /&gt;
==How can I get a Moodle Course Creator Certificate?==&lt;br /&gt;
&lt;br /&gt;
If you can review the checklist below and honestly say &amp;quot;Yes&amp;quot; to each then you are probably ready to register and start:&lt;br /&gt;
&lt;br /&gt;
* I have created at least one Moodle course previously and used it with learners&lt;br /&gt;
* I am familiar with the Moodle Docs area, and can find my way around&lt;br /&gt;
* I have read all the documentation in the Moodle Certification area&lt;br /&gt;
* I can set aside 5-10 hours a week to work on my MCCC (this may vary depending on your previous experience)&lt;br /&gt;
* I want to improve my understanding and use of Moodle!&lt;br /&gt;
&lt;br /&gt;
--[[User:Stuart Mealor|Stuart Mealor]] 21:14, 9 January 2007 (CST)&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* The [http://moodle.org/course/view.php?id=48 Moodle Course Creator Certificate (MCCC)] area on moodle.org&lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;/div&gt;</summary>
		<author><name>Stuartrmealor</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/2x/ca/index.php?title=Moodle_Course_Creator_Certificate&amp;diff=50033</id>
		<title>Moodle Course Creator Certificate</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/2x/ca/index.php?title=Moodle_Course_Creator_Certificate&amp;diff=50033"/>
		<updated>2009-02-03T21:06:33Z</updated>

		<summary type="html">&lt;p&gt;Stuartrmealor: Typo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==What is the Moodle Course Creator Certificate?==&lt;br /&gt;
&lt;br /&gt;
The Moodle Course Creator Certificate, or MCCC, is a way for you to demonstrate your skills in using Moodle as a teacher.&lt;br /&gt;
&lt;br /&gt;
The assessment contains a &#039;&#039;course project&#039;&#039;, a short &#039;&#039;narrative&#039;&#039; document, and an &#039;&#039;online exam&#039;&#039;.  Some Moodle Partners provide a training course that if successfully completed equates to the &#039;&#039;course project&#039;&#039; element.&lt;br /&gt;
&lt;br /&gt;
You will be assigned an MCCC-certified mentor-assessor to help guide you through this process.&lt;br /&gt;
&lt;br /&gt;
When you pass the certification you are given a code that lets you (or anyone else you give it to) download your personalised certificate as a PDF from the http://certificates.moodle.com site.&lt;br /&gt;
&lt;br /&gt;
The MCCC is &#039;&#039;&#039;not&#039;&#039;&#039; a training course, it assumes that already know what you need to know and want to be assessed and certified.&lt;br /&gt;
&lt;br /&gt;
==Who provides the certification?==&lt;br /&gt;
&lt;br /&gt;
The content of the certification is designed by the Moodle community at moodle.org where you can find discussions, documentation and preparation guides.&lt;br /&gt;
&lt;br /&gt;
If you are considering MCCC, please join the area on moodle.org: [http://moodle.org/course/view.php?id=48 Certification area on moodle.org]&lt;br /&gt;
&lt;br /&gt;
The certification process is administered world-wide by [[Moodle Partner|Moodle Partners]].  The fee is set locally, so you should check this with your [[Moodle Partner|Moodle Partners]].&lt;br /&gt;
&lt;br /&gt;
In countries with no [[Moodle Partner|Moodle Partners]] you can register with Certification Central Administration - support in English only. (Details are provided at [http://moodle.org/course/view.php?id=48 Certification area on moodle.org].&lt;br /&gt;
&lt;br /&gt;
==How can I get a Moodle Course Creator Certificate?==&lt;br /&gt;
&lt;br /&gt;
If you can review the checklist below and honestly say &amp;quot;Yes&amp;quot; to each then you are probably ready to register and start:&lt;br /&gt;
&lt;br /&gt;
* I have created at least one Moodle course previously and used it with learners&lt;br /&gt;
* I am familiar with the Moodle Docs area, and can find my way around&lt;br /&gt;
* I have read all the documentation in the Moodle Certification area&lt;br /&gt;
* I can set aside 5-10 hours a week to work on my MCCC (this may vary depending on your previous experience)&lt;br /&gt;
* I want to improve my understanding and use of Moodle!&lt;br /&gt;
&lt;br /&gt;
--[[User:Stuart Mealor|Stuart Mealor]] 21:14, 9 January 2007 (CST)&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* The [http://moodle.org/course/view.php?id=48 Moodle Course Creator Certificate (MCCC)] area on moodle.org&lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;/div&gt;</summary>
		<author><name>Stuartrmealor</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/2x/ca/index.php?title=Moodle_Course_Creator_Certificate&amp;diff=50032</id>
		<title>Moodle Course Creator Certificate</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/2x/ca/index.php?title=Moodle_Course_Creator_Certificate&amp;diff=50032"/>
		<updated>2009-02-03T21:06:06Z</updated>

		<summary type="html">&lt;p&gt;Stuartrmealor: Changed pricing information&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==What is the Moodle Course Creator Certificate?==&lt;br /&gt;
&lt;br /&gt;
The Moodle Course Creator Certificate, or MCCC, is a way for you to demonstrate your skills in using Moodle as a teacher.&lt;br /&gt;
&lt;br /&gt;
The assessment contains a &#039;&#039;course project&#039;&#039;, a short &#039;&#039;narrative&#039;&#039; document, and an &#039;&#039;online exam&#039;&#039;.  Some Moodle Partners provide a training course that if successfully completed equates to the &#039;&#039;course project&#039;&#039; element.&lt;br /&gt;
&lt;br /&gt;
You will be assigned an MCCC-certified mentor-assessor to help guide you through this process.&lt;br /&gt;
&lt;br /&gt;
When you pass the certification you are given a code that lets you (or anyone else you give it to) download your personalised certificate as a PDF from the http://certificates.moodle.com site.&lt;br /&gt;
&lt;br /&gt;
The MCCC is &#039;&#039;&#039;not&#039;&#039;&#039; a training course, it assumes that already know what you need to know and want to be assessed and certified.&lt;br /&gt;
&lt;br /&gt;
==Who provides the certification?==&lt;br /&gt;
&lt;br /&gt;
The content of the certification is designed by the Moodle community at moodle.org where you can find discussions, documentation and preparation guides.&lt;br /&gt;
&lt;br /&gt;
If you are considering MCCC, please join the area on moodle.org: [http://moodle.org/course/view.php?id=48 Certification area on moodle.org]&lt;br /&gt;
&lt;br /&gt;
The certification process is administered world-wide by [[Moodle Partner|Moodle Partners]].  The fee set locally, so you should check this with your [[Moodle Partner|Moodle Partners]].&lt;br /&gt;
&lt;br /&gt;
In countries with no [[Moodle Partner|Moodle Partners]] you can register with Certification Central Administration - support in English only. (Details are provided at [http://moodle.org/course/view.php?id=48 Certification area on moodle.org].&lt;br /&gt;
&lt;br /&gt;
==How can I get a Moodle Course Creator Certificate?==&lt;br /&gt;
&lt;br /&gt;
If you can review the checklist below and honestly say &amp;quot;Yes&amp;quot; to each then you are probably ready to register and start:&lt;br /&gt;
&lt;br /&gt;
* I have created at least one Moodle course previously and used it with learners&lt;br /&gt;
* I am familiar with the Moodle Docs area, and can find my way around&lt;br /&gt;
* I have read all the documentation in the Moodle Certification area&lt;br /&gt;
* I can set aside 5-10 hours a week to work on my MCCC (this may vary depending on your previous experience)&lt;br /&gt;
* I want to improve my understanding and use of Moodle!&lt;br /&gt;
&lt;br /&gt;
--[[User:Stuart Mealor|Stuart Mealor]] 21:14, 9 January 2007 (CST)&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* The [http://moodle.org/course/view.php?id=48 Moodle Course Creator Certificate (MCCC)] area on moodle.org&lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;/div&gt;</summary>
		<author><name>Stuartrmealor</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/2x/ca/index.php?title=Moodle_Course_Creator_Certificate&amp;diff=50031</id>
		<title>Moodle Course Creator Certificate</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/2x/ca/index.php?title=Moodle_Course_Creator_Certificate&amp;diff=50031"/>
		<updated>2009-02-03T21:03:29Z</updated>

		<summary type="html">&lt;p&gt;Stuartrmealor: Added details about Moodle Partner MCCC courses&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==What is the Moodle Course Creator Certificate?==&lt;br /&gt;
&lt;br /&gt;
The Moodle Course Creator Certificate, or MCCC, is a way for you to demonstrate your skills in using Moodle as a teacher.&lt;br /&gt;
&lt;br /&gt;
The assessment contains a &#039;&#039;course project&#039;&#039;, a short &#039;&#039;narrative&#039;&#039; document, and an &#039;&#039;online exam&#039;&#039;.  Some Moodle Partners provide a training course that if successfully completed equates to the &#039;&#039;course project&#039;&#039; element.&lt;br /&gt;
&lt;br /&gt;
You will be assigned an MCCC-certified mentor-assessor to help guide you through this process.&lt;br /&gt;
&lt;br /&gt;
When you pass the certification you are given a code that lets you (or anyone else you give it to) download your personalised certificate as a PDF from the http://certificates.moodle.com site.&lt;br /&gt;
&lt;br /&gt;
The MCCC is &#039;&#039;&#039;not&#039;&#039;&#039; a training course, it assumes that already know what you need to know and want to be assessed and certified.&lt;br /&gt;
&lt;br /&gt;
==Who provides the certification?==&lt;br /&gt;
&lt;br /&gt;
The content of the certification is designed by the Moodle community at moodle.org where you can find discussions, documentation and preparation guides.&lt;br /&gt;
&lt;br /&gt;
If you are considering MCCC, please join the area on moodle.org: [http://moodle.org/course/view.php?id=48 Certification area on moodle.org]&lt;br /&gt;
&lt;br /&gt;
The certification process is administered world-wide by [[Moodle Partner|Moodle Partners]].  The fee is AU$400 (25% of this goes &#039;&#039;directly&#039;&#039; towards Moodle development).&lt;br /&gt;
&lt;br /&gt;
==How can I get a Moodle Course Creator Certificate?==&lt;br /&gt;
&lt;br /&gt;
If you can review the checklist below and honestly say &amp;quot;Yes&amp;quot; to each then you are probably ready to register and start:&lt;br /&gt;
&lt;br /&gt;
* I have created at least one Moodle course previously and used it with learners&lt;br /&gt;
* I am familiar with the Moodle Docs area, and can find my way around&lt;br /&gt;
* I have read all the documentation in the Moodle Certification area&lt;br /&gt;
* I can set aside 5-10 hours a week to work on my MCCC (this may vary depending on your previous experience)&lt;br /&gt;
* I want to improve my understanding and use of Moodle!&lt;br /&gt;
&lt;br /&gt;
--[[User:Stuart Mealor|Stuart Mealor]] 21:14, 9 January 2007 (CST)&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* The [http://moodle.org/course/view.php?id=48 Moodle Course Creator Certificate (MCCC)] area on moodle.org&lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;/div&gt;</summary>
		<author><name>Stuartrmealor</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/2x/ca/index.php?title=Moodle_manuals&amp;diff=42393</id>
		<title>Moodle manuals</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/2x/ca/index.php?title=Moodle_manuals&amp;diff=42393"/>
		<updated>2008-08-20T23:00:46Z</updated>

		<summary type="html">&lt;p&gt;Stuartrmealor: /* English */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
This page contains some links to manuals, tutorials and other multimedia documentation produced by moodlers all over the world. Please feel free to submit your contribution by adding a link to this page or sending the file to [mailto:docs@moodle.org docs@moodle.org].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Teacher manuals==&lt;br /&gt;
&lt;br /&gt;
===English===&lt;br /&gt;
*[http://download.moodle.org/download.php/docs/en/moodle_1.4.3_for_teachers_and_trainers.pdf Moodle 1.4.3 For Teachers and Trainers] - by &#039;&#039;&#039;Bryan Williams&#039;&#039;&#039; (PDF, 2.4MB)&lt;br /&gt;
*[http://download.moodle.org/download.php/docs/en/using-your-moodle.pdf Using Your Moodle (1.4.3)] by [[User:Darren_Smith Darren Smith]] (PDF, 2MB, Published Jan 2005)&lt;br /&gt;
*[http://download.moodle.org/download.php/docs/en/teacher-manual.pdf Moodle 1.4 Teacher Manual] - by &#039;&#039;&#039;Matt Riordan&#039;&#039;&#039; (PDF, 3.5MB)&lt;br /&gt;
*[http://www.staff.sbc.edu/tmarcais/classfiles/moodle/Moodle1.5.3.pdf Moodle 1.5.3 Teacher Manual] - Original Documentation by &#039;&#039;&#039;Matt Riordan&#039;&#039;&#039;, updated to version 1.5.3 by &#039;&#039;&#039;Tom Marcais&#039;&#039;&#039; (PDF, 9.1MB)&lt;br /&gt;
*[http://www.packtpub.com/moodle/book Moodle E-Learning Course Development] - by William Rice, [http://www.packtpub.com/ Packt Publishing], May 2006, 250 pages, €33.29/$35.99&lt;br /&gt;
*[http://moodle.fct.unl.pt/mod/resource/view.php?id=24107 A Visual Introduction to Moodle - for teachers and page creators] - by &#039;&#039;&#039;João Fernandes&#039;&#039;&#039; (PDF, 4MB), 43 pages, [http://creativecommons.org/licenses/by-nc-sa/2.5/ Creative Commons Non-Comercial Share Alike 2.5 License]&lt;br /&gt;
*[http://moodle.tokem.fi/mod/book/index.php?id=1 Illustrated on-line Beginner, Student and Teacher manuals for Moodle 1.5.4, 1.6.4 and 1.8.3] (including some third-party tools and Flash demos as well as a concise Hot Potatoes manual) by &#039;&#039;&#039;Paul Nijbakker&#039;&#039;&#039;, eLearning Centre of Kemi-Tornio University of Applied Sciences.&lt;br /&gt;
*[http://moodle.sbc.edu/mod/resource/view.php?id=8088 Moodle Upgrading from 1.5.3 to 1.8, Changes for Teachers] - by &#039;&#039;&#039;Tom Marcais&#039;&#039;&#039; (PDF, 3.5MB)&lt;br /&gt;
*[http://moodle.sbc.edu/mod/resource/view.php?id=8087 Moodle 1.8 Teacher Manual] - by &#039;&#039;&#039;Tom Marcais&#039;&#039;&#039; (based in part on documentation by &#039;&#039;&#039;Matt Riordan&#039;&#039;&#039;) (PDF, 10.6MB)&lt;br /&gt;
*[http://moodle.de/mod/resource/view.php?id=2092 Moodle Teacher Handbook (Moodle 1.9)] - by &#039;&#039;&#039;Renate Jirmann and Ralf Hilgenstock&#039;&#039;&#039;, 163 pages, 30,- € plus mailing expenses, customized versions and online licence available&lt;br /&gt;
*[http://www.oreilly.com/catalog/9780596529185/ Using Moodle, Second Edition] - by &#039;&#039;&#039;Jason Cole&#039;&#039;&#039; and &#039;&#039;&#039;Helen Foster&#039;&#039;&#039;, 282 pages, $27,99 for the PDF version, each chapter available as a PDF for $3,99 a piece&lt;br /&gt;
*[http://www.schoolanywhere.co.uk/moodle_book.php Teacher&#039;s Beginners Guide to Using Moodle] - by &#039;&#039;&#039;SchoolAnywhere&#039;&#039;&#039; , 24 pages, FREE for the PDF version&lt;br /&gt;
*[http://www.howtomoodle.com/index.php/moodle-manuals Course Creator Reference Manual 1.8] - by &#039;&#039;&#039;Ray Lawrence&#039;&#039;&#039; Print 191 pages £15&lt;br /&gt;
*[http://www.howtomoodle.com/index.php/moodle-manuals Administrator Reference Manual 1.8] - by &#039;&#039;&#039;Ray Lawrence&#039;&#039;&#039; Print 69 pages £12&lt;br /&gt;
*[http://www.elearning.org.nz MoodleBites online training] - by &#039;&#039;&#039;HRDNZ&#039;&#039;&#039; 8 week teachers course NZ$199 (free introduction to Moodle available)&lt;br /&gt;
&lt;br /&gt;
===Other Languages===&lt;br /&gt;
*[http://www.lakapps.lk/websvn/filedetails.php?repname=Lakapps&amp;amp;path=%2FMoodle%2FTamil%2FMoodle_Teacher_Manual_TA.pdf Moodle 1.8+ Teacher Manual (Tamil - Sri Lanka)] - by &#039;&#039;&#039;Kengatharaiyer Sarveswaran&#039;&#039;&#039; ,LAKapps project, University of Moratuwa, Sri Lanka. (PDF, 1.54MB)&lt;br /&gt;
*[http://www.lakapps.lk/websvn/filedetails.php?repname=Lakapps&amp;amp;path=%2FMoodle%2FSinhala%2FMoodle_Teacher_Manual_SI.pdf Moodle 1.8+ Teacher Manual (Sinhala)] - by &#039;&#039;&#039;Sulochana Sooriyaarachchi&#039;&#039;&#039; ,LAKapps project, University of Moratuwa, Sri Lanka. (PDF, 2.79MB)&lt;br /&gt;
*[http://download.moodle.org/download.php/docs/nl/teacher-manual-1.5-nl.pdf Moodle 1.5 Teacher Manual (Dutch)] - (PDF, 3MB)&lt;br /&gt;
*[http://download.moodle.org/download.php/docs/it/teacher-manual-it.pdf Moodle 1.3 Teacher Manual (Italian)] - (PDF, 3.1MB)&lt;br /&gt;
*[http://download.moodle.org/download.php/docs/fr/teacher-manual-fr.pdf Moodle 1.3 Teacher Manual (French)] - (PDF, 5MB)&lt;br /&gt;
*[http://download.moodle.org/download.php/docs/es/teacher-manual-es.pdf Moodle Teacher Manual (Spanish)] - by &#039;&#039;&#039;Enrique Castro Lopez&#039;&#039;&#039; (PDF, 5.4MB)&lt;br /&gt;
*[http://www.lasalle.es/descargas/ManualMoodle2006.zip Moodle 1.5 Teacher Manual (Spanish)] - by &#039;&#039;&#039;Jesús Martín&#039;&#039;&#039; (PDF, 5.2MB)&lt;br /&gt;
*[http://moodle.de/file.php/1/Moodle_Trainer_18_public.pdf Moodle 1.8 Trainerhandbuch (German) Inhaltsverzeichnis/Content] - von Renate Jirmann und Ralf Hilgenstock 30,- € (gedruckt 155 Seiten)&lt;br /&gt;
*[http://moodle.de//mod/resource/view.php?id=1294 moodle @ work (German) Praxisberichte /Use Cases Inhaltsverzeichnis/Content] 12,50 €(gedruckt 150 Seiten)&lt;br /&gt;
*[http://moodle.de/mod/resource/view.php?id=1645 moodle- Praxisbuch (German) Info] - von Fredi Gertsch, Addison&amp;amp;Wesley 540 pages, 44,95 €&lt;br /&gt;
*[http://file024r.mylivepage.com/chunk24/390895/255/Arb_MOODLE.pdf Moodle Teacher Manual (Arabic)] - by &#039;&#039;&#039;Jamil Itmazi&#039;&#039;&#039; (PDF, 6.4MB)  استعمال موودل للمعلمين باللغة العربية من إعداد: د.جميل إطميزي&lt;br /&gt;
*[http://moodle.fct.unl.pt/mod/resource/view.php?id=24107 Uma introdução visual ao Moodle - pa] - by &#039;&#039;&#039;João Fernandes&#039;&#039;&#039; ra professores e criadores de páginas (PDF, 4MB), 43 pages, [http://creativecommons.org/licenses/by-nc-sa/2.5/ Creative Commons Non-Comercial Share Alike 2.5 License]&lt;br /&gt;
*[http://www.open.hr/request.php?5 Moodle 1.6 Teacher Manual (Croatian)] - by &#039;&#039;&#039;Ivana Bosnić&#039;&#039;&#039; (PDF, 3MB)&lt;br /&gt;
*[http://www.moodle.si/moodle/mod/wiki/view.php?id=22 Moodle 1.6 Teacher Manual (Slovenian)] - by &#039;&#039;&#039;Alja Sulčič&#039;&#039;&#039; and &#039;&#039;&#039;Viktorija Sulčič&#039;&#039;&#039;, Center for e-learning, Faculty of management Koper, Slovenia (Wiki version, requires free site registration)&lt;br /&gt;
*[http://195.148.254.152/moodle/mod/book/index.php?id=1 Moodle opiskelijan ja opettajan opas 1.5.4 ja 1.6.4] &#039;&#039;&#039;Sanna Saukkoriipi&#039;&#039;&#039;, Kemi-Tornion ammattikorkeakoulun eOppimiskeskus.&lt;br /&gt;
*[http://moodle.de German DVD] 8 Stunden Anleitungsvideos- von &#039;&#039;&#039;Ralf Hilgenstock&#039;&#039;&#039;&lt;br /&gt;
*[http://aulavirtual2.educa.madrid.org/mod/resource/view.php?inpopup=true&amp;amp;id=5659 Moodle versión 1.8 Manual de consulta para el profesorado (Spanish)] - &#039;&#039;&#039;Jesús Baños Sancho&#039;&#039;&#039; (16.5MB)&lt;br /&gt;
&lt;br /&gt;
==Administration manuals==&lt;br /&gt;
*[http://www.howtomoodle.com/index.php/moodle-manuals Administrator Reference Manual 1.8] - by &#039;&#039;&#039;Ray Lawrence&#039;&#039;&#039; Print 69 pages £12&lt;br /&gt;
*[http://moodle.de//mod/resource/view.php?id=1191 Handbuch Installation und Administration (German) Inhaltsverzeichnis/Content] - von André Krüger, Urs Hunkler, Ralf Hilgenstock 30,- € (gedruckt 110 Seiten)&lt;br /&gt;
*[http://moodle.org/file.php/16/moddata/forum/160/234243/Install_Moodle.pdf Moodle Administrator Manual (Arabic)] - by &#039;&#039;&#039;Jamil Itmazi&#039;&#039;&#039; (PDF, 0.3MB)  تنزيل موودل باللغة العربية من إعداد: د.جميل إطميزي&lt;br /&gt;
&lt;br /&gt;
==Student manuals==&lt;br /&gt;
*[http://www.lakapps.lk/websvn/filedetails.php?repname=Lakapps&amp;amp;path=%2FMoodle%2FTamil%2FMoodle_Student_Manual_TA.pdf Moodle 1.8+ Student Manual (Tamil - Sri Lanka)] - by &#039;&#039;&#039;Kengatharaiyer Sarveswaran ,LAKapps project, University of Moratuwa, Sri Lanka.&#039;&#039;&#039; (PDF, 700KB)&lt;br /&gt;
*[http://www.lakapps.lk/websvn/filedetails.php?repname=Lakapps&amp;amp;path=%2FMoodle%2FSinhala%2FMoodle_Student_Manual_SI.pdf Moodle  1.8+ Student Manual (Sinhala)] - by &#039;&#039;&#039;Sulochana Sooriyaarachchi ,LAKapps project, University of Moratuwa, Sri Lanka.&#039;&#039;&#039; (PDF, 2 MB)&lt;br /&gt;
*[http://download.moodle.org/download.php/docs/es/user_manual_es.pdf Moodle User Manual (Spanish)] - by &#039;&#039;&#039;Enrique Castro&#039;&#039;&#039; (PDF, 3.1MB)&lt;br /&gt;
*[http://moodle.de//file.php?file=/1/Bestellblatt.pdf Teilnehmerhandbuch (German) Info und Bestellformular] - von Ralf Hilgenstock und Renate Jirmann (gedruckt  63 Seiten)&lt;br /&gt;
*[http://jamildepalestina.mylivepage.com/file/?fileid=882 Moodle Student Manual (Arabic)] - by &#039;&#039;&#039;Jamil Itmazi&#039;&#039;&#039; (PDF, 3 MB)   استعمال موودل للطلاب باللغة العربية من إعداد: د.جميل إطميزي&lt;br /&gt;
*[http://moodle.tokem.fi/mod/book/index.php?id=1 Illustrated on-line Beginner, Student and Teacher manuals for Moodle 1.5.4, 1.6.4 and 1.8.2] (including descriptions of some contrib tools) in English and Finnish by &#039;&#039;&#039;Paul Nijbakker&#039;&#039;&#039; and &#039;&#039;&#039;Sanna Saukkoriipi&#039;&#039;&#039;, eLearning Centre of Kemi-Tornio University of Applied Sciences.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[Moodle presentations]]&lt;br /&gt;
[[Category:Teacher]]&lt;br /&gt;
&lt;br /&gt;
[[es:Manuales de Moodle]]&lt;/div&gt;</summary>
		<author><name>Stuartrmealor</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/2x/ca/index.php?title=Moodle_Course_Creator_Certificate&amp;diff=19239</id>
		<title>Moodle Course Creator Certificate</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/2x/ca/index.php?title=Moodle_Course_Creator_Certificate&amp;diff=19239"/>
		<updated>2007-01-10T03:14:08Z</updated>

		<summary type="html">&lt;p&gt;Stuartrmealor: /* See also */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Moodle Teacher Certificate (MTC) allows you to demonstrate your knowledge and skills using Moodle, and is supported globally by the network of Moodle Partners.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* The [http://moodle.org/course/view.php?id=48 Moodle Teacher Certificate (MTC)] area on Moodle.org&lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;br /&gt;
&lt;br /&gt;
==What is the Moodle Teacher Certificate?==&lt;br /&gt;
&lt;br /&gt;
The Moodle Teacher Certificate, or MTC, is a way for you to demonstrate your skills in using Moodle as a teacher.&lt;br /&gt;
&lt;br /&gt;
The assessment contains a &#039;&#039;course project&#039;&#039;, a short &#039;&#039;narrative&#039;&#039; document, and an &#039;&#039;online exam&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
You will be assigned an MTC-certified mentor-assessor to help guide you through this process.&lt;br /&gt;
&lt;br /&gt;
When you pass the certification you are given a code that lets you (or anyone else you give it to) download your personalised certificate as a PDF from the http://certificates.moodle.com site.&lt;br /&gt;
&lt;br /&gt;
The MTC is a &#039;&#039;&#039;not&#039;&#039;&#039; a training course, it assumes that already know what you need to know and want to be assessed and certified.&lt;br /&gt;
&lt;br /&gt;
===Who provides the certification?===&lt;br /&gt;
&lt;br /&gt;
The content of the certification is designed by the Moodle community at moodle.org where you can find discussions, documentation and preparation guides.&lt;br /&gt;
&lt;br /&gt;
If you are considering MTC, please join the area on moodle.org: [http://moodle.org/course/view.php?id=48 Certification area on moodle.org]&lt;br /&gt;
&lt;br /&gt;
The certification process is administered world-wide by Moodle Partners.&lt;br /&gt;
The fee is AU$400 (25% of this goes &#039;&#039;directly&#039;&#039; towards Moodle development).&lt;br /&gt;
&lt;br /&gt;
===How can I get a Moodle Teacher Certificate?===&lt;br /&gt;
&lt;br /&gt;
If you can review the checklist below and honestly say &amp;quot;Yes&amp;quot; to each then you are probably ready to register and start:&lt;br /&gt;
&lt;br /&gt;
    * I have created at least one Moodle course previously and used it with learners&lt;br /&gt;
    * I am familiar with the Moodle Docs area, and can find my way around&lt;br /&gt;
    * I have read all the documentation in the Moodle Certification area&lt;br /&gt;
    * I can set aside 5-10 hours a week to work on my MTC (this may vary depending on your previous experience)&lt;br /&gt;
    * I want to improve my understanding and use of Moodle!&lt;br /&gt;
&lt;br /&gt;
--[[User:Stuart Mealor|Stuart Mealor]] 21:14, 9 January 2007 (CST)&lt;/div&gt;</summary>
		<author><name>Stuartrmealor</name></author>
	</entry>
</feed>