<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://docs.moodle.org/310/en/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Pavel-k</id>
	<title>MoodleDocs - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://docs.moodle.org/310/en/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Pavel-k"/>
	<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/Special:Contributions/Pavel-k"/>
	<updated>2026-05-15T16:12:40Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.5</generator>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=OPcache&amp;diff=110901</id>
		<title>OPcache</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=OPcache&amp;diff=110901"/>
		<updated>2014-03-07T15:38:51Z</updated>

		<summary type="html">&lt;p&gt;Pavel-k: /* Configuration */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Environment}}&lt;br /&gt;
{{New features}}&lt;br /&gt;
The standard OPcache extension is strongly recommended; since Moodle 2.6, it is the only solution officially supported by PHP developers. The benefits are increased performance and significantly lower memory usage.&lt;br /&gt;
&lt;br /&gt;
==Installation==&lt;br /&gt;
&lt;br /&gt;
The OPcache extension is distributed as part of PHP 5.5.0 and later. It is available also for older stable PHP releases from PECL under the original name ZendOPcache.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE: If you are running PHP 5.3 or 5.4 you can safely ignore the Environment Check message about OpCache. Nonetheless, [https://moodle.org/mod/forum/discuss.php?d=245885 it might be useful] to upgrade Operating System/PHP and get to 5.5 or newer; as there have been all sorts of problems described on PHP 5.2 and 5.3, and upgrading PHP turned out to be the easier solution. &#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Configuration==&lt;br /&gt;
&lt;br /&gt;
PHP.ini settings:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code ini&amp;gt;&lt;br /&gt;
[opcache]&lt;br /&gt;
opcache.enable = 1&lt;br /&gt;
opcache.memory_consumption = 128&lt;br /&gt;
opcache.max_accelerated_files = 4000&lt;br /&gt;
opcache.revalidate_freq = 60&lt;br /&gt;
&lt;br /&gt;
; Required for Moodle&lt;br /&gt;
opcache.use_cwd = 1&lt;br /&gt;
opcache.validate_timestamps = 1&lt;br /&gt;
opcache.save_comments = 1&lt;br /&gt;
opcache.enable_file_override = 0&lt;br /&gt;
&lt;br /&gt;
; If something does not work in Moodle&lt;br /&gt;
;opcache.revalidate_path = 1 ; May fix problems with include paths&lt;br /&gt;
;opcache.mmap_base = 0x20000000 ; (Windows only) fix OPcache crashes with event id 487&lt;br /&gt;
&lt;br /&gt;
; Experimental for Moodle 2.6 and later&lt;br /&gt;
;opcache.fast_shutdown = 1&lt;br /&gt;
;opcache.enable_cli = 1 ; Speeds up CLI cron&lt;br /&gt;
;opcache.load_comments = 0 ; May lower memory use, might not be compatible with add-ons and other apps.&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When using non-Windows platforms, you have to use the &#039;&#039;zend_extension&#039;&#039; configuration to load the OPcache extension into PHP by adding to php.ini.&lt;br /&gt;
&amp;lt;code ini&amp;gt;&lt;br /&gt;
zend_extension=/full/path/to/opcache.so &lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When using IIS you will need PHP 5.5 and you will need to add the extension for opcache under the &#039;&#039;ExtensionList&#039;&#039; section of the php.ini file. For PHP 5.3 and 5.4 you can download the binaries separately from [http://windows.php.net/downloads/pecl/releases/opcache] and you will also need to enter full absolute path to the module dll in php.ini.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code ini&amp;gt;&lt;br /&gt;
[ExtensionList]&lt;br /&gt;
...&lt;br /&gt;
zend_extension=php_opcache.dll&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [http://pecl.php.net/package/ZendOpcache PECL ZendOPcache]&lt;br /&gt;
* [http://windows.php.net/downloads/pecl/releases/opcache/ Windows builds for PHP 5.3-5.4]&lt;br /&gt;
&lt;br /&gt;
Forum discussions:&lt;br /&gt;
* [https://moodle.org/mod/forum/discuss.php?d=244133 OPcache: Memory Usage = 100% (is this good or bad?)]&lt;br /&gt;
* [https://moodle.org/mod/forum/discuss.php?d=245885 OPCode cache]&lt;br /&gt;
&lt;br /&gt;
[[Category:Environment]]&lt;br /&gt;
[[Category:Installation]]&lt;br /&gt;
[[Category:Performance]]&lt;br /&gt;
&lt;br /&gt;
[[es:OPcache]]&lt;/div&gt;</summary>
		<author><name>Pavel-k</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=OPcache&amp;diff=110900</id>
		<title>OPcache</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=OPcache&amp;diff=110900"/>
		<updated>2014-03-07T15:38:09Z</updated>

		<summary type="html">&lt;p&gt;Pavel-k: /* See also */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Environment}}&lt;br /&gt;
{{New features}}&lt;br /&gt;
The standard OPcache extension is strongly recommended; since Moodle 2.6, it is the only solution officially supported by PHP developers. The benefits are increased performance and significantly lower memory usage.&lt;br /&gt;
&lt;br /&gt;
==Installation==&lt;br /&gt;
&lt;br /&gt;
The OPcache extension is distributed as part of PHP 5.5.0 and later. It is available also for older stable PHP releases from PECL under the original name ZendOPcache.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE: If you are running PHP 5.3 or 5.4 you can safely ignore the Environment Check message about OpCache. Nonetheless, [https://moodle.org/mod/forum/discuss.php?d=245885 it might be useful] to upgrade Operating System/PHP and get to 5.5 or newer; as there have been all sorts of problems described on PHP 5.2 and 5.3, and upgrading PHP turned out to be the easier solution. &#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Configuration==&lt;br /&gt;
&lt;br /&gt;
PHP.ini settings:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code ini&amp;gt;&lt;br /&gt;
[opcache]&lt;br /&gt;
opcache.enable = 1&lt;br /&gt;
opcache.memory_consumption = 128&lt;br /&gt;
opcache.max_accelerated_files = 4000&lt;br /&gt;
opcache.revalidate_freq = 60&lt;br /&gt;
&lt;br /&gt;
; Required for Moodle&lt;br /&gt;
opcache.use_cwd = 1&lt;br /&gt;
opcache.validate_timestamps = 1&lt;br /&gt;
opcache.save_comments = 1&lt;br /&gt;
opcache.enable_file_override = 0&lt;br /&gt;
&lt;br /&gt;
; If something does not work in Moodle&lt;br /&gt;
;opcache.revalidate_path = 1 ; May fix problems with include paths&lt;br /&gt;
;opcache.mmap_base = 0x20000000 ; (Windows only) fix OPcache crashes with event id 487&lt;br /&gt;
&lt;br /&gt;
; Experimental for Moodle 2.6 and later&lt;br /&gt;
;opcache.fast_shutdown = 1&lt;br /&gt;
;opcache.enable_cli = 1 ; Speeds up CLI cron&lt;br /&gt;
;opcache.load_comments = 0 ; May lower memory use, might not be compatible with add-ons and other apps.&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When using non-Windows platforms, you have to use the &#039;&#039;zend_extension&#039;&#039; configuration to load the OPcache extension into PHP by adding to php.ini.&lt;br /&gt;
&amp;lt;code ini&amp;gt;&lt;br /&gt;
zend_extension=/full/path/to/opcache.so &lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When using IIS you will need PHP 5.5 and you will need to add the extension for opcache under the &#039;&#039;ExtensionList&#039;&#039; section of the php.ini file. For PHP 5.3 and 5.4 you can download the binaries separately from [http://windows.php.net/downloads/pecl/snaps/opcache] and you will also need to enter full absolute path to the module dll in php.ini.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code ini&amp;gt;&lt;br /&gt;
[ExtensionList]&lt;br /&gt;
...&lt;br /&gt;
zend_extension=php_opcache.dll&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [http://pecl.php.net/package/ZendOpcache PECL ZendOPcache]&lt;br /&gt;
* [http://windows.php.net/downloads/pecl/releases/opcache/ Windows builds for PHP 5.3-5.4]&lt;br /&gt;
&lt;br /&gt;
Forum discussions:&lt;br /&gt;
* [https://moodle.org/mod/forum/discuss.php?d=244133 OPcache: Memory Usage = 100% (is this good or bad?)]&lt;br /&gt;
* [https://moodle.org/mod/forum/discuss.php?d=245885 OPCode cache]&lt;br /&gt;
&lt;br /&gt;
[[Category:Environment]]&lt;br /&gt;
[[Category:Installation]]&lt;br /&gt;
[[Category:Performance]]&lt;br /&gt;
&lt;br /&gt;
[[es:OPcache]]&lt;/div&gt;</summary>
		<author><name>Pavel-k</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=OPcache&amp;diff=109099</id>
		<title>OPcache</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=OPcache&amp;diff=109099"/>
		<updated>2014-01-20T13:29:33Z</updated>

		<summary type="html">&lt;p&gt;Pavel-k: /* Configuration */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Environment}}&lt;br /&gt;
{{New features}}&lt;br /&gt;
The standard OPcache extension is strongly recommended; since Moodle 2.6, it is the only solution officially supported by PHP developers. The benefits are increased performance and significantly lower memory usage.&lt;br /&gt;
&lt;br /&gt;
==Installation==&lt;br /&gt;
&lt;br /&gt;
The OPcache extension is distributed as part of PHP 5.5.0 and later. It is available also for older stable PHP releases from PECL under the original name ZendOPcache.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE: If you are running PHP 5.3 or 5.4 you can safely ignore the Environment Check message about OpCache. Nonetheless, [https://moodle.org/mod/forum/discuss.php?d=245885 it might be useful] to upgrade Operating System/PHP and get to 5.5 or newer; as there have been all sorts of problems described on PHP 5.2 and 5.3, and upgrading PHP turned out to be the easier solution. &#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Configuration==&lt;br /&gt;
&lt;br /&gt;
PHP.ini settings:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code ini&amp;gt;&lt;br /&gt;
[opcache]&lt;br /&gt;
opcache.enable = 1&lt;br /&gt;
opcache.memory_consumption = 128&lt;br /&gt;
opcache.max_accelerated_files = 4000&lt;br /&gt;
opcache.revalidate_freq = 60&lt;br /&gt;
&lt;br /&gt;
; Required for Moodle&lt;br /&gt;
opcache.use_cwd = 1&lt;br /&gt;
opcache.validate_timestamps = 1&lt;br /&gt;
opcache.save_comments = 1&lt;br /&gt;
opcache.enable_file_override = 0&lt;br /&gt;
&lt;br /&gt;
; If something does not work in Moodle&lt;br /&gt;
;opcache.revalidate_path = 1 ; May fix problems with include paths&lt;br /&gt;
;opcache.mmap_base = 0x20000000 ; (Windows only) fix OPcache crashes with event id 487&lt;br /&gt;
&lt;br /&gt;
; Experimental for Moodle 2.6 and later&lt;br /&gt;
;opcache.fast_shutdown = 1&lt;br /&gt;
;opcache.enable_cli = 1 ; Speeds up CLI cron&lt;br /&gt;
;opcache.load_comments = 0 ; May lower memory use, might not be compatible with add-ons and other apps.&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When using IIS you will need PHP 5.5 and you will need to add the extension for opcache under the &#039;&#039;ExtensionList&#039;&#039; section of the php.ini file. For PHP 5.3 and 5.4 you can download the binaries separately from [http://windows.php.net/downloads/pecl/snaps/opcache] and you will also need to enter full absolute path to the module dll in php.ini.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code ini&amp;gt;&lt;br /&gt;
[ExtensionList]&lt;br /&gt;
...&lt;br /&gt;
zend_extension=php_opcache.dll&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [http://pecl.php.net/package/ZendOpcache PECL ZendOPcache]&lt;br /&gt;
* [http://windows.php.net/downloads/pecl/snaps/opcache Windows builds for PHP 5.3-5.4]&lt;br /&gt;
&lt;br /&gt;
Forum discussions:&lt;br /&gt;
* [https://moodle.org/mod/forum/discuss.php?d=244133 OPcache: Memory Usage = 100% (is this good or bad?)]&lt;br /&gt;
* [https://moodle.org/mod/forum/discuss.php?d=245885 OPCode cache]&lt;br /&gt;
&lt;br /&gt;
[[Category:Environment]]&lt;br /&gt;
[[Category:Installation]]&lt;br /&gt;
[[Category:Performance]]&lt;br /&gt;
&lt;br /&gt;
[[es:OPcache]]&lt;/div&gt;</summary>
		<author><name>Pavel-k</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=OPcache&amp;diff=108853</id>
		<title>OPcache</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=OPcache&amp;diff=108853"/>
		<updated>2014-01-13T15:03:08Z</updated>

		<summary type="html">&lt;p&gt;Pavel-k: /* Configuration */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Environment}}&lt;br /&gt;
{{New features}}&lt;br /&gt;
The standard OPcache extension is strongly recommended; since Moodle 2.6, it is the only solution officially supported by PHP developers. The benefits are increased performance and significantly lower memory usage.&lt;br /&gt;
&lt;br /&gt;
==Installation==&lt;br /&gt;
&lt;br /&gt;
The OPcache extension is distributed as part of PHP 5.5.0 and later. It is available also for older stable PHP releases from PECL under the original name ZendOPcache.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE: If you are running PHP 5.3 or 5.4 you can safely ignore the Environment Check message about OpCache&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Configuration==&lt;br /&gt;
&lt;br /&gt;
PHP.ini settings:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code ini&amp;gt;&lt;br /&gt;
[opcache]&lt;br /&gt;
opcache.enable = 1&lt;br /&gt;
opcache.memory_consumption = 128&lt;br /&gt;
opcache.max_accelerated_files = 4000&lt;br /&gt;
opcache.revalidate_freq = 60&lt;br /&gt;
&lt;br /&gt;
; Required for Moodle&lt;br /&gt;
opcache.use_cwd = 1&lt;br /&gt;
opcache.validate_timestamps = 1&lt;br /&gt;
opcache.save_comments = 1&lt;br /&gt;
opcache.enable_file_override = 0&lt;br /&gt;
&lt;br /&gt;
; If something does not work in Moodle&lt;br /&gt;
;opcache.revalidate_path = 1 ; May fix problems with include paths&lt;br /&gt;
&lt;br /&gt;
; Experimental for Moodle 2.6 and later&lt;br /&gt;
;opcache.fast_shutdown = 1&lt;br /&gt;
;opcache.enable_cli = 1 ; Speeds up CLI cron&lt;br /&gt;
;opcache.load_comments = 0 ; May lower memory use, might not be compatible with add-ons and other apps.&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When using IIS you will need PHP 5.5 and you will need to add the extension for opcache under the &#039;&#039;ExtensionList&#039;&#039; section of the php.ini file. For PHP 5.3 and 5.4 you can download the binaries separately from [http://windows.php.net/downloads/pecl/snaps/opcache] and you will also need to enter full absolute path to the module dll in php.ini.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code ini&amp;gt;&lt;br /&gt;
[ExtensionList]&lt;br /&gt;
...&lt;br /&gt;
zend_extension=php_opcache.dll&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [http://pecl.php.net/package/ZendOpcache PECL ZendOPcache]&lt;br /&gt;
* [http://windows.php.net/downloads/pecl/snaps/opcache Windows builds for PHP 5.3-5.4]&lt;br /&gt;
&lt;br /&gt;
Forum discussions:&lt;br /&gt;
* [https://moodle.org/mod/forum/discuss.php?d=244133 OPcache: Memory Usage = 100% (is this good or bad?)]&lt;br /&gt;
* [https://moodle.org/mod/forum/discuss.php?d=245885 OPCode cache]&lt;br /&gt;
&lt;br /&gt;
[[Category:Environment]]&lt;br /&gt;
[[Category:Installation]]&lt;br /&gt;
[[Category:Performance]]&lt;br /&gt;
&lt;br /&gt;
[[es:OPcache]]&lt;/div&gt;</summary>
		<author><name>Pavel-k</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=OPcache&amp;diff=108852</id>
		<title>OPcache</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=OPcache&amp;diff=108852"/>
		<updated>2014-01-13T14:59:15Z</updated>

		<summary type="html">&lt;p&gt;Pavel-k: /* See also */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Environment}}&lt;br /&gt;
{{New features}}&lt;br /&gt;
The standard OPcache extension is strongly recommended; since Moodle 2.6, it is the only solution officially supported by PHP developers. The benefits are increased performance and significantly lower memory usage.&lt;br /&gt;
&lt;br /&gt;
==Installation==&lt;br /&gt;
&lt;br /&gt;
The OPcache extension is distributed as part of PHP 5.5.0 and later. It is available also for older stable PHP releases from PECL under the original name ZendOPcache.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE: If you are running PHP 5.3 or 5.4 you can safely ignore the Environment Check message about OpCache&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Configuration==&lt;br /&gt;
&lt;br /&gt;
PHP.ini settings:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code ini&amp;gt;&lt;br /&gt;
[opcache]&lt;br /&gt;
opcache.enable = 1&lt;br /&gt;
opcache.memory_consumption = 128&lt;br /&gt;
opcache.max_accelerated_files = 4000&lt;br /&gt;
opcache.revalidate_freq = 60&lt;br /&gt;
&lt;br /&gt;
; Required for Moodle&lt;br /&gt;
opcache.use_cwd = 1&lt;br /&gt;
opcache.validate_timestamps = 1&lt;br /&gt;
opcache.save_comments = 1&lt;br /&gt;
opcache.enable_file_override = 0&lt;br /&gt;
&lt;br /&gt;
; If something does not work in Moodle&lt;br /&gt;
;opcache.revalidate_path = 1 ; May fix problems with include paths&lt;br /&gt;
&lt;br /&gt;
; Experimental for Moodle 2.6 and later&lt;br /&gt;
;opcache.fast_shutdown = 1&lt;br /&gt;
;opcache.enable_cli = 1 ; Speeds up CLI cron&lt;br /&gt;
;opcache.load_comments = 0 ; May lower memory use, might not be compatible with add-ons and other apps.&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When using IIS you will need PHP 5.5 and you will need to add the extension for opcache under the &#039;&#039;ExtensionList&#039;&#039; section of the php.ini file.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code ini&amp;gt;&lt;br /&gt;
[ExtensionList]&lt;br /&gt;
...&lt;br /&gt;
zend_extension=php_opcache.dll&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [http://pecl.php.net/package/ZendOpcache PECL ZendOPcache]&lt;br /&gt;
* [http://windows.php.net/downloads/pecl/snaps/opcache Windows builds for PHP 5.3-5.4]&lt;br /&gt;
&lt;br /&gt;
Forum discussions:&lt;br /&gt;
* [https://moodle.org/mod/forum/discuss.php?d=244133 OPcache: Memory Usage = 100% (is this good or bad?)]&lt;br /&gt;
* [https://moodle.org/mod/forum/discuss.php?d=245885 OPCode cache]&lt;br /&gt;
&lt;br /&gt;
[[Category:Environment]]&lt;br /&gt;
[[Category:Installation]]&lt;br /&gt;
[[Category:Performance]]&lt;br /&gt;
&lt;br /&gt;
[[es:OPcache]]&lt;/div&gt;</summary>
		<author><name>Pavel-k</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=Installations_1000_plus&amp;diff=82933</id>
		<title>Installations 1000 plus</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=Installations_1000_plus&amp;diff=82933"/>
		<updated>2011-04-23T09:59:25Z</updated>

		<summary type="html">&lt;p&gt;Pavel-k: /* Czech Republic */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page has descriptions and links by country to Moodle sites with between 1000 and 5000 users.&lt;br /&gt;
{{Template:Large Installations}}&lt;br /&gt;
&lt;br /&gt;
==Australia==&lt;br /&gt;
&lt;br /&gt;
*Monte Sant&#039; Angelo Mercy College - [http://montenet.monte.nsw.edu.au MonteNet] is used as our colleges student intranet and e-learning portal. Currently running 1.6dev with a few extra custom features thrown in.&lt;br /&gt;
&lt;br /&gt;
*Monte Sant&#039; Angelo Mercy College - [http://compass.monte.nsw.edu.au Compass] takes moodle and uses it for a purpose that is a little outside the square. Compass is used as the staff intranet. Each course is refered to as a &amp;quot;Space&amp;quot; and is used by each departmentr to store meating minutes, agendas and teaching documentation. Communications tools such as forums allow to facilitate better teacher communication and the events are used to keep the teachers events online and targeted (e.g. year 9 teachers all know when excursions are on, all english teachers know when reports are due, etc).&lt;br /&gt;
&lt;br /&gt;
*Vermont Secondary College - [http://moodle.vermontsc.vic.edu.au] is used as the college intranet, portal and eLearning since 2004. There are approximately 1500 users consisting of teachers and years 7-12 students. Although using Moodle is an option, over 180 courses have been created across all learning areas and staff administration. All events within the college are constantly being added to the calendar to inform the school community.&lt;br /&gt;
&lt;br /&gt;
*Saint Ignatius&#039; College, Riverview - [http://www.riverview.nsw.edu.au ] - Jesuit College in Sydney, Australia, with 1,600 students. Adopted Moodle in 2007.&lt;br /&gt;
&lt;br /&gt;
==Belgium==&lt;br /&gt;
&lt;br /&gt;
*[http://www.ritacollege.be Sint-Ritacollege] We are a school for 12-18 year old students.  Currently our database contains about 1600 active users and 130 courses. Always running latest Moodle code since version 1.0.8.&lt;br /&gt;
&lt;br /&gt;
==Catalonia==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*[http://www.iesterrassa.cat/ IES de TERRASSA ] - [http://moodle.iesterrassa.cat MOODLE de l&#039;IES de TERRASSA] - Institut d&#039;Enseyament Secundari de Terrassa. Tenim més de 1300 usuaris.&lt;br /&gt;
&lt;br /&gt;
==Czech Republic==&lt;br /&gt;
&lt;br /&gt;
*Faculty of Arts, Masaryk University, Brno - [http://www.phil.muni.cz/elf/ ELF], 16,000+ users total, 4,000+ active users in Spring Term 2006, 600+ courses; using Moodle from April 2003.&lt;br /&gt;
&lt;br /&gt;
*Faculty of Education, Masaryk University, Brno - [http://moodlinka.ped.muni.cz/ Mood-link-a], 23,000+ users total, 3,400+ active users in Spring Term 2011, 900+ total enrollable courses, 220 courses updated within last year; using Moodle from 2004, currently 1.8.x with Shibboleth SSO.&lt;br /&gt;
&lt;br /&gt;
==Finland==&lt;br /&gt;
&lt;br /&gt;
*Tampere Polytechnic or Tampereen ammattikorkeakoulu ([http://www.tamk.fi www.tamk.fi]), is a around 5000 student college or &amp;quot;a university of applied sciences&amp;quot; located at Tampere, Finland. Our moodle installation hosts around 2500 active students.&lt;br /&gt;
&lt;br /&gt;
==India==&lt;br /&gt;
* [http://www.doeaccmantra.com DOEACCMantra] is a website for [http://www.doeaccmantra.com DOEACC] students currently (as of July 2007) having 44 courses, 4928 users and 5965 posts.&lt;br /&gt;
&lt;br /&gt;
==Italy==&lt;br /&gt;
&lt;br /&gt;
* University of Rome &amp;quot;Roma Tre&amp;quot; - [http://ltaonline.learning.uniroma3.it/ Laboratorio di Tecnologie Audiovisive] hosts two faculties with more than 3700 students. (April, 9th 2009)&lt;br /&gt;
&lt;br /&gt;
==Japan==&lt;br /&gt;
&lt;br /&gt;
* Future University-Hakodate - [http://vle.c.fun.ac.jp/moodle/]&lt;br /&gt;
&lt;br /&gt;
* Kyoto Sangyo University - [http://www3.kyoto-su.ac.jp/index-e.html] First university in Japan to completely host all courses in Moodle.&lt;br /&gt;
&lt;br /&gt;
* Osaka International University - [http://moodle.oiu.ac.jp/] Over 3000 users.&lt;br /&gt;
&lt;br /&gt;
* Sapporo Gakuin University - [http://elearning.sgu.ac.jp] About 40 active courses using Moodle, plus 150 courses using it for attendance taking.  Over 3000 registered users.  Now using LDAP, so all 5000 students can login with their standard school ID and password.  1000 students take an English placement test using Moodle upon entrance to the school.&lt;br /&gt;
&lt;br /&gt;
==Netherlands==&lt;br /&gt;
&lt;br /&gt;
* We are a 5000 people school, one server, 9 locations and using Moodle for almost three years now: https://studiewijzerplus.nl Every schoolyear we start again with counting the number of users and the automatic counter (thanks Penny!) is now pointing at 3103&lt;br /&gt;
&lt;br /&gt;
==Norway==&lt;br /&gt;
&lt;br /&gt;
* ASP Hedmark - [http://pdl.asp-hedmark.no/ pdl.asp-hedmark.no] Region with 20 primary and lower-secondary schools have an installation with something above 2000 users. PDL=Platform for Digital Learning.&lt;br /&gt;
&lt;br /&gt;
==Philippines==&lt;br /&gt;
* [http://www.e-extension.gov.ph/elearning/ e-Learning for agriculture and fisheries] Currently over 3000 registered users. We offer certificate courses as well as free digital resources in various agriculture and fisheries topics. All our online courses are in rolling mode. The site is maintained by the [http://www.ati.da.gov.ph/ Agricultural Training Institute] of the country&#039;s Department of Agriculture.&lt;br /&gt;
&lt;br /&gt;
== Russia ==&lt;br /&gt;
*Moscow State Institute of International Relations (University) - distance education programme [http://www.globalcompetence.ru Management of Global Processes]&lt;br /&gt;
&lt;br /&gt;
==Spain==&lt;br /&gt;
*[http://www.cicei.com CICEI] - Center of Innovation for the Information Society. We have a production [http://cursos.cicei.com Moodle server] having currently 1,042 users in 72 courses covering a wide range of applications (as of February 6, 2006).&lt;br /&gt;
&lt;br /&gt;
==Switzerland==&lt;br /&gt;
&lt;br /&gt;
*[http://moodle.fri-tic.ch/ Centre fri-tic] - Center for ICT Integration of Canton de Fribourg. Currently running 1 moodle for teachers and students from k-12 to High school, with more than 2000 users and about 130 courses. The [http://www.fri-tic.ch/ Centre fri-tic] is also hosting 9 other moodle installations for specific schools.&lt;br /&gt;
&lt;br /&gt;
==United Kingdom==&lt;br /&gt;
&lt;br /&gt;
* [http://moodle.altoncollege.ac.uk/ Alton College] - a Beacon sixth form college with over 2,500 active users.&lt;br /&gt;
&lt;br /&gt;
* [http://egglescliffe.org.uk/ Egglescliffe School and Sixth Form] - a specialist arts school with over 2,000 active moodlers and 345 courses whose usage was the basis of this [http://education.guardian.co.uk/elearning/story/0,,1583832,00.html Guardian article]&lt;br /&gt;
&lt;br /&gt;
* [http://vle.gloscol.ac.uk/ Gloucestershire College] - a general FE college in the south west, with nearly five thousand users and nearly eight hundred users, we have presented at many Moodle events in the UK. &lt;br /&gt;
&lt;br /&gt;
* [http://learn.gold.ac.uk Goldsmiths College, London] - over 2,500 active users. See also this [http://www.alt.ac.uk/altc2004/timetable/abstract.php?abstract_id=270 presentation at a 2004 conference].&lt;br /&gt;
&lt;br /&gt;
*  [https://moodle.plumsteadmanor.com/ Plumstead Manor School] - A specialist Sports, Performing arts and Vocational secondary school in South East London. 1,700 active students.&lt;br /&gt;
&lt;br /&gt;
* [http://www.thanet.ac.uk/ Thanet College] - a &amp;quot;medium sized general FE college&amp;quot;, using Moodle as documented in [http://ferl.becta.org.uk/display.cfm?resID=13423 this Ferl case study]&lt;br /&gt;
&lt;br /&gt;
* [http://www.westnotts.ac.uk West Nottingahmshire College] - an FE college in the East Midlands.&lt;br /&gt;
&lt;br /&gt;
* [http://www.lifeintheuk.org Prepare: Life in the United Kingdom Test] - a free website dedicated to Life in the UK Test.&lt;br /&gt;
&lt;br /&gt;
==United States of America==&lt;br /&gt;
*[http://www.glyphdoctors.com Glyphdoctors] is a site with over 1200 registered users (as of Feb. 2006) on a shared server host, [http://www.opensourcehost.com Open Source Host]. It will offer online courses in Egyptology and Egyptian hieroglyphs to the general public. Currently, there is one free public course available and a course in Egyptian hieroglyphs under beta testing with a small number of students.&lt;br /&gt;
&lt;br /&gt;
*[http://moodle.mcm.edu/ McMurry University]has several Moodle instances, the first begun as a pilot project in June, 2005.  McMurry is a small (1400 FTE) undergraduate-only institution affiliated with the United Methodist church.  Currently the main instance supports 1700 users (650 active), some 60 instructors, and approximately 180 active courses.&lt;br /&gt;
&lt;br /&gt;
* [http://ahshornets.org Aiken High School]has over 2000 registered users in grades 9 - 12 (Feb. 2006).&lt;br /&gt;
&lt;br /&gt;
* [http://academies.culver.org/moodle The Culver Academies] has over 1000 registered users in grades 9 - 12. The school has been using Moodle in the classroom since the 2002-2003 school year. Administratively we have a Moodle &amp;quot;course&amp;quot; for faculty-only announcements and materials. &lt;br /&gt;
&lt;br /&gt;
* [http://online.warner.edu Warner Southern College] began using Moodle in early 2005 as an experiment to move from a simple webboard system into a full learning management system.  The experiment went extremely well and a full transition to Moodle was accomplished in the fall term of 2005.  Currently, Warner Southern College has one Moodle instance running with over 1200 registered users (500+ active students, 50+ instructors, 80+ courses and two system administrators) offering associate, bachelor and master of arts degree programs for both traditional site based and full online students. Warner Southern College is a small institution affiliated with the Church of God and accredited by the Southern Association of Colleges and Schools. &lt;br /&gt;
&lt;br /&gt;
* [http://moodle.westshore.edu West Shore Community College] currently has just under 2,000 registered users in its database and began as a potential alternative to our Blackboard system. Our site has been active for 3 years and we are now fully migrated to Moodle as our sole LMS. The transition was slow (and a bit painful at times), but now that we&#039;re here, things have gone quite well.&lt;br /&gt;
&lt;br /&gt;
* [http://www.evergreen.edu The Evergreen State College] has over 4,000 registered users. The school has been using Moodle in since the 2005-2006 school year.  We use CAS for authentication and get enrollment from Banner via a custom interface built on Banner and a customized version of the Moodle IMS plugin.    &lt;br /&gt;
&lt;br /&gt;
[[Category:Administrator]]&lt;br /&gt;
&lt;br /&gt;
[[ja:ユーザ数1000名以上]]&lt;br /&gt;
&lt;br /&gt;
{{Template:Large Installations}}&lt;/div&gt;</summary>
		<author><name>Pavel-k</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/310/en/index.php?title=AuthMoodle&amp;diff=15728</id>
		<title>AuthMoodle</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/310/en/index.php?title=AuthMoodle&amp;diff=15728"/>
		<updated>2006-09-11T19:58:08Z</updated>

		<summary type="html">&lt;p&gt;Pavel-k: Added some unofficial fixes for mediawiki 1.7&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=AuthMoodle.php=&lt;br /&gt;
&lt;br /&gt;
* an extension of mediawiki&#039;s AuthPlugin class so that moodle users can sign in to a mediawiki with the same login/pw&lt;br /&gt;
* used in this https://docs.moodle.org mediawiki production site&lt;br /&gt;
* download from http://moodle.org/file.php/5/moddata/forum/366/196104/AuthMoodle.php&lt;br /&gt;
* first posted by Martin Dougiamas in april 2006 in http://moodle.org/mod/forum/post.php?reply=196104 as an attachment&lt;br /&gt;
&lt;br /&gt;
quoting Martin&#039;s instructions based on the root folder of the wikimedia installation:&lt;br /&gt;
&lt;br /&gt;
 Save it in extensions/AuthMoodle.php.&lt;br /&gt;
 Then you just put this in LocalSettings.php:&lt;br /&gt;
&lt;br /&gt;
 require_once( &#039;extensions/AuthMoodle.php&#039; );&lt;br /&gt;
 $wgAuth = new AuthMoodle();&lt;br /&gt;
 $wgAuth-&amp;gt;setAuthMoodleTablePrefix();&lt;br /&gt;
 $wgAuth-&amp;gt;setAuthMoodleDBServer(&#039;yoursite.org&#039;);&lt;br /&gt;
 $wgAuth-&amp;gt;setAuthMoodleDBName(&#039;yourdb&#039;);&lt;br /&gt;
 $wgAuth-&amp;gt;setAuthMoodleUser(&#039;yourdbuser&#039;);&lt;br /&gt;
 $wgAuth-&amp;gt;setAuthMoodlePassword(&#039;yourdbpass&#039;);&lt;br /&gt;
&lt;br /&gt;
==Bugs with AuthMoodle in mediawiki 1.7==&lt;br /&gt;
* preferences are no longer sticky (they pretend to save but don&#039;t really save)&amp;lt;br&amp;gt;&#039;&#039;&#039;fix:&#039;&#039;&#039; disable this &#039;&#039;&#039;if&#039;&#039;&#039; in includes/SpecialPreferences.php around line 290:&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;&#039;/*&#039;&#039;&#039;&lt;br /&gt;
 if (!$wgAuth-&amp;gt;updateExternalDB($wgUser)) {&lt;br /&gt;
     $this-&amp;gt;mainPrefsForm( wfMsg( &#039;externaldberror&#039; ) );&lt;br /&gt;
     return;&lt;br /&gt;
 }&lt;br /&gt;
 &#039;&#039;&#039;*/&#039;&#039;&#039; &lt;br /&gt;
* if the moodle database prefix is different from the mediawiki database prefix must match (or be blank)&amp;lt;br&amp;gt;&#039;&#039;&#039;fix:&#039;&#039;&#039; edit the function tableName in includes/Database.php around line 1310 and 1313:&lt;br /&gt;
&lt;br /&gt;
 function tableName( $name ) {&lt;br /&gt;
    global $wgSharedDB&#039;&#039;&#039;, $wgAuth&#039;&#039;&#039;;&lt;br /&gt;
    # Skip quoted literals&lt;br /&gt;
    if ( $name{0} != &#039;`&#039; ) {&lt;br /&gt;
        if ( $this-&amp;gt;mTablePrefix !== &#039;&#039; &amp;amp;&amp;amp;  strpos( &#039;.&#039;, $name ) === false &lt;br /&gt;
             &#039;&#039;&#039;&amp;amp;&amp;amp; strpos ($name, $wgAuth-&amp;gt;mAuthMoodleTablePrefix) === false&#039;&#039;&#039; ) {&lt;br /&gt;
&lt;br /&gt;
* for mediawiki 1.7, I had to change line 33 to &#039;&#039;&#039;includes/&#039;&#039;&#039;AuthPlugin.php and comment out line 223-226 (refers to a non-existent function)&lt;br /&gt;
&lt;br /&gt;
==Useful Information==&lt;br /&gt;
* bugtracker conversation leading to creation of AuthMoodle http://moodle.org/bugs/bug.php?op=show&amp;amp;bugid=4666&lt;br /&gt;
* usage info: https://docs.moodle.org/en/MoodleDocs:Authentication&lt;br /&gt;
* based probably on http://svn.wikimedia.org/svnroot/mediawiki/trunk/extensions/auth/&lt;/div&gt;</summary>
		<author><name>Pavel-k</name></author>
	</entry>
</feed>