<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://docs.moodle.org/34/en/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Rexlorenzo</id>
	<title>MoodleDocs - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://docs.moodle.org/34/en/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Rexlorenzo"/>
	<link rel="alternate" type="text/html" href="https://docs.moodle.org/34/en/Special:Contributions/Rexlorenzo"/>
	<updated>2026-04-18T04:50:44Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.5</generator>
	<entry>
		<id>https://docs.moodle.org/34/en/index.php?title=Google_Drive_converter&amp;diff=131116</id>
		<title>Google Drive converter</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/34/en/index.php?title=Google_Drive_converter&amp;diff=131116"/>
		<updated>2018-10-24T19:20:54Z</updated>

		<summary type="html">&lt;p&gt;Rexlorenzo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Document converters}}&lt;br /&gt;
Files submitted by students in assignments may be converted to PDF files with the Google Drive converter. Teachers can then annotate directly on the submissions. This option provides a useful alternative for those organisations who are unable to install [[Universal Office Converter (unoconv) |Unconv]] for document conversion.&lt;br /&gt;
&lt;br /&gt;
==Using the Google Drive converter==&lt;br /&gt;
&lt;br /&gt;
To enabling the Google Drive converter, an admin must&lt;br /&gt;
&lt;br /&gt;
# Set up and configure the [[OAuth 2 Google service]].&lt;br /&gt;
# Connect the Google service to a system account.&lt;br /&gt;
## Go to Site administration &amp;gt; Server &amp;gt; OAuth 2 services&lt;br /&gt;
## Click on the icon under &amp;quot;System account connected&amp;quot; column if there is a red X for Google.&lt;br /&gt;
# Go to &#039;Document converters&#039; in the Site administration and enable the Google Drive converter.&lt;br /&gt;
# In the settings, select Google as the OAuth 2 service, then save changes.&lt;br /&gt;
&lt;br /&gt;
A link is available to test the document conversion is working correctly. If you obtain a message saying that the system account is not linked, go to the OAuth 2 Google service settings and re-connect the Google service to the system account.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
* [https://moodle.org/mod/forum/discuss.php?d=361138 Privacy concerns using the Google Document Converter] forum discussion&lt;br /&gt;
&lt;br /&gt;
[[Category: OAuth 2]]&lt;br /&gt;
&lt;br /&gt;
[[es:Convertidor Google Drive]]&lt;br /&gt;
[[de:Google Drive Konverter]]&lt;/div&gt;</summary>
		<author><name>Rexlorenzo</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/34/en/index.php?title=MySQL_full_unicode_support&amp;diff=127250</id>
		<title>MySQL full unicode support</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/34/en/index.php?title=MySQL_full_unicode_support&amp;diff=127250"/>
		<updated>2017-03-28T22:23:49Z</updated>

		<summary type="html">&lt;p&gt;Rexlorenzo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Environment}}&lt;br /&gt;
==UTF-8==&lt;br /&gt;
&lt;br /&gt;
UTF-8 is a character encoding that most websites use. It encodes each of the 1,112,064 valid code points. To store all of this information, four bytes is required. The most popular values are in the three byte region. MySQL by default only uses a three byte encoding and so values in the four byte range (eg. Asian characters and Emojis) can not be stored. Any attempt to enter a text that contains four byte characters will result in a Moodle database error.&lt;br /&gt;
&lt;br /&gt;
MySQL does provide full four byte UTF-8 support, but it requires certain database settings to be configured. From version 3.3 on Moodle uses full UTF-8 for both MySQL and MariaDB by default. Existing databases will still run with partial support, but it is recommended to move over to full support.&lt;br /&gt;
&lt;br /&gt;
Moodle comes with a Command Line Interface (CLI) script for converting to full UTF-8 for MySQL (and MariaDB). Before Moodle versions 3.1.5 and 3.2.2 this conversion tool would only change the Collation to some variant of &#039;utf8_bin&#039;. &#039;utf8_unicode_ci&#039; was the recommended Collation. We now recommend using &#039;utf8mb4_unicode_ci&#039; which supports four byte characters (utf8_unicode_ci only supports three).&lt;br /&gt;
&lt;br /&gt;
This script will attempt to change the database Collation, Character set, default table settings and column definitions.&lt;br /&gt;
&lt;br /&gt;
To summarise:&lt;br /&gt;
&lt;br /&gt;
* Fresh installs of Moodle 3.1.5 and 3.2.2 onwards will use utf8mb4 by default, if the database server is configured appropriately (see below).&lt;br /&gt;
* Sites upgrading to Moodle 3.1.5 or 3.2.2 can use the script to update to utf8mb4. In Moodle 3.3 a warning will show that the database isn&#039;t using full UTF-8 support and suggest moving to &#039;utf8mb4_unicode_ci&#039;, but you may choose to keep using &#039;utf8_*&#039;.&lt;br /&gt;
&lt;br /&gt;
===File format===&lt;br /&gt;
&lt;br /&gt;
To allow for large indexes on columns that are a varchar, a combination of settings needs to be set. The file format for the system needs to be using &amp;quot;Barracuda&amp;quot;. This allows for the row format to be set to &amp;quot;Compressed&amp;quot; or &amp;quot;Dynamic&amp;quot;. To enable this setting see the upgrade steps listed below.&lt;br /&gt;
&lt;br /&gt;
===File per table===&lt;br /&gt;
&lt;br /&gt;
To enable this setting see the upgrade steps listed below.&lt;br /&gt;
&lt;br /&gt;
===Large prefix===&lt;br /&gt;
&lt;br /&gt;
This in conjunction with the row format being either &amp;quot;Compressed&amp;quot; or &amp;quot;Dynamic&amp;quot; allows for large varchar indexes above 191 characters.&lt;br /&gt;
To enable this setting see the upgrade steps listed below.&lt;br /&gt;
&lt;br /&gt;
==Steps to upgrade==&lt;br /&gt;
&lt;br /&gt;
Most important: Please backup your database before making any changes or running the CLI script.&lt;br /&gt;
&lt;br /&gt;
* Change configuration settings for MySQL (exactly the same for MariaDB). This step is optional. You can run the script and it will try and make these changes itself. If errors occur then try manually changing these settings as listed below.&lt;br /&gt;
** On Linux based systems you will want to alter my.cnf. This may be located in &#039;/etc/mysql/&#039;.&lt;br /&gt;
** Make the following alterations to my.cnf:&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
[client]&lt;br /&gt;
default-character-set = utf8mb4&lt;br /&gt;
&lt;br /&gt;
[mysqld]&lt;br /&gt;
innodb_file_format = Barracuda&lt;br /&gt;
innodb_file_per_table = 1&lt;br /&gt;
innodb_large_prefix&lt;br /&gt;
&lt;br /&gt;
character-set-client-handshake = FALSE&lt;br /&gt;
character-set-server = utf8mb4&lt;br /&gt;
collation-server = utf8mb4_unicode_ci&lt;br /&gt;
&lt;br /&gt;
[mysql]&lt;br /&gt;
default-character-set = utf8mb4&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
* Restart your MySQL server.&lt;br /&gt;
* Run the CLI script to convert to the new Character set and Collation (requires Moodle 3.1.5, 3.2.2 or newer): &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ php admin/cli/mysql_collation.php --collation=utf8mb4_unicode_ci&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE: For large sites, this script will be slow. It is recommended to dump and reimport your data according to https://docs.moodle.org/34/en/Converting_your_MySQL_database_to_UTF8#Default_Mysql_character_set&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Adjust the $CFG-&amp;gt;dboptions Array in your &#039;&#039;&#039;config.php&#039;&#039;&#039; to make sure that Moodle uses the right Collation when connecting to the MySQL Server: &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$CFG-&amp;gt;dboptions = array(&lt;br /&gt;
  &amp;amp;hellip;&lt;br /&gt;
  &#039;dbcollation&#039; =&amp;gt; &#039;utf8mb4_unicode_ci&#039;,&lt;br /&gt;
  &amp;amp;hellip;&lt;br /&gt;
);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
* Try adding some Emojis 🇦🇺👏🎓 to your Moodle site to verify that the upgrade was successful.&lt;br /&gt;
&lt;br /&gt;
[[Category:Environment|UTF-8]]&lt;br /&gt;
[[Category:UTF-8]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[es:MySQL soporte unicode completo]]&lt;br /&gt;
[[fr:Support unicode complet pour MySQL]]&lt;/div&gt;</summary>
		<author><name>Rexlorenzo</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/34/en/index.php?title=Database_activity_FAQ&amp;diff=117881</id>
		<title>Database activity FAQ</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/34/en/index.php?title=Database_activity_FAQ&amp;diff=117881"/>
		<updated>2015-04-13T19:54:24Z</updated>

		<summary type="html">&lt;p&gt;Rexlorenzo: /* How do I export/import picture fields from a database activity from one course to another */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Database}}&lt;br /&gt;
==Where can I download additional database presets?==&lt;br /&gt;
&lt;br /&gt;
See the Presets and See also sections in [[Building Database]] for various places with presets for download.&lt;br /&gt;
&lt;br /&gt;
==How can I add to the list of database presets available for users to choose from?==&lt;br /&gt;
&lt;br /&gt;
[[File:databasepresetsnew.png|thumb|Database presets]]&lt;br /&gt;
&lt;br /&gt;
There is one default preset, Image Gallery. It is possible to create your own presets. &lt;br /&gt;
&lt;br /&gt;
When you have created your database that you desire to set as a preset; go to the &amp;quot;Presets&amp;quot; tab of the database and choose &amp;quot;Save as preset&amp;quot;. Give the preset a name and the database fields and templates will now be available as a preset for the rest of the site. You will need site admin rights to do this.&lt;br /&gt;
&lt;br /&gt;
Please see the [[Database presets]] for other available presets you can import into your system.&lt;br /&gt;
&lt;br /&gt;
==How can I create a database in which students can only view their own entries?==&lt;br /&gt;
&lt;br /&gt;
Either:&lt;br /&gt;
*Set up the database so that entries require approval. If the entries are never approved, then only the student that added a particular entry and the teachers can view it.&lt;br /&gt;
&lt;br /&gt;
Or:&lt;br /&gt;
*Set the group mode of the database to &amp;quot;Separate groups&amp;quot; and assign each student to a separate group.&lt;br /&gt;
&lt;br /&gt;
==How can I enable a sort function by clicking on the field headings?==&lt;br /&gt;
&lt;br /&gt;
For sorting, you need to manually create the link in the template around that heading.  To find the URL you need, you can do a sort using the menus and then look in the URLs. Take out everything but the d, sort and order parameters. For example,&lt;br /&gt;
&lt;br /&gt;
http://moodle.org/mod/data/view.php?d=13&amp;amp;sort=44&amp;amp;order=ASC&lt;br /&gt;
&lt;br /&gt;
http://moodle.org/mod/data/view.php?d=13&amp;amp;sort=44&amp;amp;order=DESC&lt;br /&gt;
&lt;br /&gt;
==How can I add highlighting like on the Module and plugins page?==&lt;br /&gt;
&lt;br /&gt;
In the repeated part of the template (note onmouseover and onmouseout to change the classes):&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;tr onmouseover=&amp;quot;this.className=&#039;trhighlight&#039;&amp;quot; onmouseout=&amp;quot;this.className=&#039;trnormal&#039;&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;td class=&amp;quot;c0&amp;quot;&amp;gt;&amp;lt;b&amp;gt;&amp;lt;a href=&amp;quot;##MoreURL##&amp;quot;&amp;gt;[[Name]]&amp;lt;/a&amp;gt;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
 &amp;lt;td class=&amp;quot;c1&amp;quot;&amp;gt;[[Type]]&amp;lt;/td&amp;gt;&lt;br /&gt;
 &amp;lt;td class=&amp;quot;c2&amp;quot;&amp;gt;[[Requirement]]&amp;lt;/td&amp;gt;&lt;br /&gt;
 &amp;lt;td class=&amp;quot;c3&amp;quot;&amp;gt;[[Status]]&amp;lt;/td&amp;gt;&lt;br /&gt;
 &amp;lt;td class=&amp;quot;c4&amp;quot;&amp;gt;[[Summary]]&amp;lt;/td&amp;gt;&lt;br /&gt;
 &amp;lt;td align=&amp;quot;center&amp;quot; class=&amp;quot;c5&amp;quot;&amp;gt;##Edit##&amp;amp;nbsp;##Delete##&amp;amp;nbsp;##More##&amp;amp;nbsp;##Approve## &amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the CSS template there are two styles:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;.trnormal td {&lt;br /&gt;
   background-color: #FFFFFF;&lt;br /&gt;
 }&lt;br /&gt;
 .trhighlight td {&lt;br /&gt;
   background-color: #EEEEEE;&lt;br /&gt;
 }&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==How can I list database information horizontally instead of vertically?==&lt;br /&gt;
*[http://moodle.org/mod/forum/discuss.php?d=74243 How can I list database information horizontally instead of vertically? Forum discussion]&lt;br /&gt;
&lt;br /&gt;
==Can&#039;t get columns to line up in list view==&lt;br /&gt;
*[http://moodle.org/mod/forum/discuss.php?d=84050 Can&#039;t get columns to line up in list view forum discussion] including moodle.org presets for download&lt;br /&gt;
&lt;br /&gt;
==How can I make an Encyclopedia database preset?==&lt;br /&gt;
*[http://moodle.org/mod/forum/discuss.php?d=87560 Encyclopedia database preset forum discussion] including encyclopedia-style preset for download&lt;br /&gt;
&lt;br /&gt;
==Is there a Time stamp for database entries?==&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;##timeadded##&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==How can I make the title of an entry into a link?==&lt;br /&gt;
&lt;br /&gt;
To make the title of an entry in list view link to the single view, add the following code to the list template:&lt;br /&gt;
 &lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&amp;lt;a href=&amp;quot;##moreurl##&amp;quot;&amp;gt;[[Title]]&amp;lt;/a&amp;gt;&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==How can I make email addresses clickable?==&lt;br /&gt;
&lt;br /&gt;
To make email addresses clickable, add the following code to the single template:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&amp;lt;a href=&amp;quot;mailto:[[Email]]&amp;quot;&amp;gt;[[Email]]&amp;lt;/a&amp;gt;&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &#039;Email&#039; is the text field for inputting email addresses.&lt;br /&gt;
&lt;br /&gt;
==How can I hide a database entry which was previously approved?==&lt;br /&gt;
&lt;br /&gt;
There is currently no user interface for hiding a database entry which was previously approved i.e. setting it to require approval again. However, an entry can be hidden using [[MySQL Admin]] by editing it in the &#039;&#039;data_records&#039;&#039; table and changing the approved value from 1 to 0.&lt;br /&gt;
&lt;br /&gt;
==How can I add a default sort order of entries?==&lt;br /&gt;
&lt;br /&gt;
In the Fields tab, select a default sort field, choose ascending or descending then click the Save button.&lt;br /&gt;
&lt;br /&gt;
==Why is my database so slow to show each page?==&lt;br /&gt;
&lt;br /&gt;
Try to go to &amp;quot;Administration &amp;gt; Miscellaneous &amp;gt; XMLDB editor&amp;quot; and choose &amp;quot;Check Indexes&amp;quot;. If you have any missing indexes found; upgrade your Moodle to the latest weekly build of your version; re-run the test; backup your site database and then run the suggested SQL from the test on your site database. This should speed up your database activity load times.&lt;br /&gt;
&lt;br /&gt;
==How can I prevent students from adding entries?==&lt;br /&gt;
&lt;br /&gt;
An override may be used to close/archive a database activity, or have a database in which only teachers can add entries, but students can view the entries.&lt;br /&gt;
&lt;br /&gt;
# Follow the Permissions link in the settings block under Database activity administration&lt;br /&gt;
# Remove Student from the capability [[Capabilities/mod/data:writeentry|mod/data:writeentry]] by clicking the &#039;X&#039; next to it.&lt;br /&gt;
# Click the continue button to confirm.&lt;br /&gt;
&lt;br /&gt;
==How can I empty a database / remove records from a database en masse?==&lt;br /&gt;
In List view, there is a checkbox next to each entry. Click to select the ones you wish to delete and then click the &#039;Delete selected&#039; button. Alternatively, click the &#039;Select all&#039; and &#039;Delete all&#039; buttons. A warning message will appear asking you to confirm what you wish to delete.&lt;br /&gt;
&lt;br /&gt;
==I get an error message when importing a csv of entries==&lt;br /&gt;
One thing to try is to open up the csv file in Excel and save it again as a csv file - with another name - and then try importing it agin. Sometimes this just works :)&lt;br /&gt;
&lt;br /&gt;
==How do I export/import picture fields from a database activity from one course to another?==&lt;br /&gt;
You cannot export/import database entries with picture fields using the csv option, you will need to use Moodle&#039;s backup and restore functionality. Please note that you will need to backup and restore the database activity with user data in order for the entries to be carried over.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
Using Moodle forum discussions:&lt;br /&gt;
&lt;br /&gt;
*[http://moodle.org/mod/forum/discuss.php?d=87005 New preset, please review, and make suggestions!] including FAQ preset for download&lt;br /&gt;
*[http://moodle.org/mod/forum/discuss.php?d=88727 Design a Database Preset for Document Sharing] including preset for download&lt;br /&gt;
*[http://moodle.org/mod/forum/discuss.php?d=55338 Look of the database module]&lt;br /&gt;
*[http://moodle.org/mod/forum/discuss.php?d=61179 For those who want the display of Moodle Site&#039;s Modules and plugins]&lt;br /&gt;
*[http://moodle.org/mod/forum/discuss.php?d=94854#p457252 Looking for some stellar examples of Moodle courses] including book reviews preset for download&lt;br /&gt;
*[https://moodle.org/mod/forum/discuss.php?d=268206 Database 2.7 List and Single View: Possible to view only entered fields?]&lt;br /&gt;
&lt;br /&gt;
[[Category:FAQ]]&lt;br /&gt;
&lt;br /&gt;
[[de:Datenbank FAQ]]&lt;/div&gt;</summary>
		<author><name>Rexlorenzo</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/34/en/index.php?title=Database_activity_FAQ&amp;diff=117880</id>
		<title>Database activity FAQ</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/34/en/index.php?title=Database_activity_FAQ&amp;diff=117880"/>
		<updated>2015-04-13T19:54:08Z</updated>

		<summary type="html">&lt;p&gt;Rexlorenzo: Importing picture fields&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Database}}&lt;br /&gt;
==Where can I download additional database presets?==&lt;br /&gt;
&lt;br /&gt;
See the Presets and See also sections in [[Building Database]] for various places with presets for download.&lt;br /&gt;
&lt;br /&gt;
==How can I add to the list of database presets available for users to choose from?==&lt;br /&gt;
&lt;br /&gt;
[[File:databasepresetsnew.png|thumb|Database presets]]&lt;br /&gt;
&lt;br /&gt;
There is one default preset, Image Gallery. It is possible to create your own presets. &lt;br /&gt;
&lt;br /&gt;
When you have created your database that you desire to set as a preset; go to the &amp;quot;Presets&amp;quot; tab of the database and choose &amp;quot;Save as preset&amp;quot;. Give the preset a name and the database fields and templates will now be available as a preset for the rest of the site. You will need site admin rights to do this.&lt;br /&gt;
&lt;br /&gt;
Please see the [[Database presets]] for other available presets you can import into your system.&lt;br /&gt;
&lt;br /&gt;
==How can I create a database in which students can only view their own entries?==&lt;br /&gt;
&lt;br /&gt;
Either:&lt;br /&gt;
*Set up the database so that entries require approval. If the entries are never approved, then only the student that added a particular entry and the teachers can view it.&lt;br /&gt;
&lt;br /&gt;
Or:&lt;br /&gt;
*Set the group mode of the database to &amp;quot;Separate groups&amp;quot; and assign each student to a separate group.&lt;br /&gt;
&lt;br /&gt;
==How can I enable a sort function by clicking on the field headings?==&lt;br /&gt;
&lt;br /&gt;
For sorting, you need to manually create the link in the template around that heading.  To find the URL you need, you can do a sort using the menus and then look in the URLs. Take out everything but the d, sort and order parameters. For example,&lt;br /&gt;
&lt;br /&gt;
http://moodle.org/mod/data/view.php?d=13&amp;amp;sort=44&amp;amp;order=ASC&lt;br /&gt;
&lt;br /&gt;
http://moodle.org/mod/data/view.php?d=13&amp;amp;sort=44&amp;amp;order=DESC&lt;br /&gt;
&lt;br /&gt;
==How can I add highlighting like on the Module and plugins page?==&lt;br /&gt;
&lt;br /&gt;
In the repeated part of the template (note onmouseover and onmouseout to change the classes):&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;tr onmouseover=&amp;quot;this.className=&#039;trhighlight&#039;&amp;quot; onmouseout=&amp;quot;this.className=&#039;trnormal&#039;&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;td class=&amp;quot;c0&amp;quot;&amp;gt;&amp;lt;b&amp;gt;&amp;lt;a href=&amp;quot;##MoreURL##&amp;quot;&amp;gt;[[Name]]&amp;lt;/a&amp;gt;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
 &amp;lt;td class=&amp;quot;c1&amp;quot;&amp;gt;[[Type]]&amp;lt;/td&amp;gt;&lt;br /&gt;
 &amp;lt;td class=&amp;quot;c2&amp;quot;&amp;gt;[[Requirement]]&amp;lt;/td&amp;gt;&lt;br /&gt;
 &amp;lt;td class=&amp;quot;c3&amp;quot;&amp;gt;[[Status]]&amp;lt;/td&amp;gt;&lt;br /&gt;
 &amp;lt;td class=&amp;quot;c4&amp;quot;&amp;gt;[[Summary]]&amp;lt;/td&amp;gt;&lt;br /&gt;
 &amp;lt;td align=&amp;quot;center&amp;quot; class=&amp;quot;c5&amp;quot;&amp;gt;##Edit##&amp;amp;nbsp;##Delete##&amp;amp;nbsp;##More##&amp;amp;nbsp;##Approve## &amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the CSS template there are two styles:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;.trnormal td {&lt;br /&gt;
   background-color: #FFFFFF;&lt;br /&gt;
 }&lt;br /&gt;
 .trhighlight td {&lt;br /&gt;
   background-color: #EEEEEE;&lt;br /&gt;
 }&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==How can I list database information horizontally instead of vertically?==&lt;br /&gt;
*[http://moodle.org/mod/forum/discuss.php?d=74243 How can I list database information horizontally instead of vertically? Forum discussion]&lt;br /&gt;
&lt;br /&gt;
==Can&#039;t get columns to line up in list view==&lt;br /&gt;
*[http://moodle.org/mod/forum/discuss.php?d=84050 Can&#039;t get columns to line up in list view forum discussion] including moodle.org presets for download&lt;br /&gt;
&lt;br /&gt;
==How can I make an Encyclopedia database preset?==&lt;br /&gt;
*[http://moodle.org/mod/forum/discuss.php?d=87560 Encyclopedia database preset forum discussion] including encyclopedia-style preset for download&lt;br /&gt;
&lt;br /&gt;
==Is there a Time stamp for database entries?==&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;##timeadded##&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==How can I make the title of an entry into a link?==&lt;br /&gt;
&lt;br /&gt;
To make the title of an entry in list view link to the single view, add the following code to the list template:&lt;br /&gt;
 &lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&amp;lt;a href=&amp;quot;##moreurl##&amp;quot;&amp;gt;[[Title]]&amp;lt;/a&amp;gt;&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==How can I make email addresses clickable?==&lt;br /&gt;
&lt;br /&gt;
To make email addresses clickable, add the following code to the single template:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&amp;lt;a href=&amp;quot;mailto:[[Email]]&amp;quot;&amp;gt;[[Email]]&amp;lt;/a&amp;gt;&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &#039;Email&#039; is the text field for inputting email addresses.&lt;br /&gt;
&lt;br /&gt;
==How can I hide a database entry which was previously approved?==&lt;br /&gt;
&lt;br /&gt;
There is currently no user interface for hiding a database entry which was previously approved i.e. setting it to require approval again. However, an entry can be hidden using [[MySQL Admin]] by editing it in the &#039;&#039;data_records&#039;&#039; table and changing the approved value from 1 to 0.&lt;br /&gt;
&lt;br /&gt;
==How can I add a default sort order of entries?==&lt;br /&gt;
&lt;br /&gt;
In the Fields tab, select a default sort field, choose ascending or descending then click the Save button.&lt;br /&gt;
&lt;br /&gt;
==Why is my database so slow to show each page?==&lt;br /&gt;
&lt;br /&gt;
Try to go to &amp;quot;Administration &amp;gt; Miscellaneous &amp;gt; XMLDB editor&amp;quot; and choose &amp;quot;Check Indexes&amp;quot;. If you have any missing indexes found; upgrade your Moodle to the latest weekly build of your version; re-run the test; backup your site database and then run the suggested SQL from the test on your site database. This should speed up your database activity load times.&lt;br /&gt;
&lt;br /&gt;
==How can I prevent students from adding entries?==&lt;br /&gt;
&lt;br /&gt;
An override may be used to close/archive a database activity, or have a database in which only teachers can add entries, but students can view the entries.&lt;br /&gt;
&lt;br /&gt;
# Follow the Permissions link in the settings block under Database activity administration&lt;br /&gt;
# Remove Student from the capability [[Capabilities/mod/data:writeentry|mod/data:writeentry]] by clicking the &#039;X&#039; next to it.&lt;br /&gt;
# Click the continue button to confirm.&lt;br /&gt;
&lt;br /&gt;
==How can I empty a database / remove records from a database en masse?==&lt;br /&gt;
In List view, there is a checkbox next to each entry. Click to select the ones you wish to delete and then click the &#039;Delete selected&#039; button. Alternatively, click the &#039;Select all&#039; and &#039;Delete all&#039; buttons. A warning message will appear asking you to confirm what you wish to delete.&lt;br /&gt;
&lt;br /&gt;
==I get an error message when importing a csv of entries==&lt;br /&gt;
One thing to try is to open up the csv file in Excel and save it again as a csv file - with another name - and then try importing it agin. Sometimes this just works :)&lt;br /&gt;
&lt;br /&gt;
==How do I export/import picture fields from a database activity from one course to another==&lt;br /&gt;
You cannot export/import database entries with picture fields using the csv option, you will need to use Moodle&#039;s backup and restore functionality. Please note that you will need to backup and restore the database activity with user data in order for the entries to be carried over.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
Using Moodle forum discussions:&lt;br /&gt;
&lt;br /&gt;
*[http://moodle.org/mod/forum/discuss.php?d=87005 New preset, please review, and make suggestions!] including FAQ preset for download&lt;br /&gt;
*[http://moodle.org/mod/forum/discuss.php?d=88727 Design a Database Preset for Document Sharing] including preset for download&lt;br /&gt;
*[http://moodle.org/mod/forum/discuss.php?d=55338 Look of the database module]&lt;br /&gt;
*[http://moodle.org/mod/forum/discuss.php?d=61179 For those who want the display of Moodle Site&#039;s Modules and plugins]&lt;br /&gt;
*[http://moodle.org/mod/forum/discuss.php?d=94854#p457252 Looking for some stellar examples of Moodle courses] including book reviews preset for download&lt;br /&gt;
*[https://moodle.org/mod/forum/discuss.php?d=268206 Database 2.7 List and Single View: Possible to view only entered fields?]&lt;br /&gt;
&lt;br /&gt;
[[Category:FAQ]]&lt;br /&gt;
&lt;br /&gt;
[[de:Datenbank FAQ]]&lt;/div&gt;</summary>
		<author><name>Rexlorenzo</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/34/en/index.php?title=Quiz_settings&amp;diff=113048</id>
		<title>Quiz settings</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/34/en/index.php?title=Quiz_settings&amp;diff=113048"/>
		<updated>2014-06-10T21:57:27Z</updated>

		<summary type="html">&lt;p&gt;Rexlorenzo: Writing out the 3 options for when time expires&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Quiz}}&lt;br /&gt;
Creating a new quiz is a two-step process. In the first step, you create the quiz activity and set its options which specify the rules for interacting with the quiz. In the second step you add questions to the quiz.&lt;br /&gt;
This page describes the options you can set for the quiz activity. The page [[Building Quiz]] describes how to set up the questions for the quiz.&lt;br /&gt;
&lt;br /&gt;
==Quiz administration==&lt;br /&gt;
When you first set up your quiz from &#039;&#039;Add an activity or resource &amp;gt; Quiz&#039;&#039;, (or, if you don&#039;t have this link, the dropdown &#039;&#039;Add an activity&amp;gt;Quiz&#039;&#039;) you will get the following settings, (which can also be changed later in the Edit Settings link of the Quiz administration settings block) All settings may expanded by clicking the &amp;quot;Expand all&amp;quot; link top right.&lt;br /&gt;
&lt;br /&gt;
==General==&lt;br /&gt;
{|&lt;br /&gt;
|[[File:Quizgeneral.png|thumb|448px|General settings expanded by default]]&lt;br /&gt;
|}&lt;br /&gt;
;Name&lt;br /&gt;
:This is the standard name field. This name will appear on the home page of the course, navigation menu and other places which will show or provide links to this quiz.&lt;br /&gt;
&lt;br /&gt;
;Description&lt;br /&gt;
:Describe the purpose of the glossary and provide instructions or background information, links etc. Click the icon top left to expand the toolbars, and drag the bottom right of the text box out to expand it.&lt;br /&gt;
&lt;br /&gt;
;&#039;&#039;&#039;Display description on course page&#039;&#039;&#039;&lt;br /&gt;
:If ticked, the quiz description will appear on the course page directly under the quiz name.&lt;br /&gt;
&lt;br /&gt;
==Timing==&lt;br /&gt;
(These settings are collapsed by default)&lt;br /&gt;
{|&lt;br /&gt;
|[[File:quiztiming.png|thumb|452px|Timing settings expanded]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
;Open the quiz&lt;br /&gt;
:You can specify times when the quiz is accessible for people to make attempts. Before the opening time the quiz will be unavailable to students. They will be able to view the quiz introduction but will not be able to view the questions. Quizzes with start times in the future diasplay both the open and close date for students.&lt;br /&gt;
&lt;br /&gt;
Note: You can make the quiz available at different times for different groups or users in the Group or User override sections of the Quiz Administration settings block.&lt;br /&gt;
&lt;br /&gt;
;Close the quiz&lt;br /&gt;
:After the closing time, the students will not be able to start new attempts. Answers that the student submits after the quiz closing date will be saved but they will not be marked. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
: Even after the quiz has closed students will still be able to see the quiz description and review their attempts. What exactly they will see depends on the settings you choose for review options (see below).&lt;br /&gt;
;Time limit&lt;br /&gt;
:By default, quizzes do not have a time limit, which allows students as much time as they need to complete the quiz. If you do specify a time limit, several things are done to try and ensure that quizzes are completed within that time:&lt;br /&gt;
{|&lt;br /&gt;
|[[File:quiz timer.png|thumb|Navigation block showing quiz timer]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
# A countdown timer is shown in the quiz navigation block &lt;br /&gt;
# When the timer has run out, the quiz is submitted automatically with whatever answers have been filled in so far &lt;br /&gt;
# If a student manages to cheat and goes over the allotted time, no marks are awarded for any answers entered after the time ran out&lt;br /&gt;
&lt;br /&gt;
Note: You can make the quiz available last a different period of time for different groups or users in the Group or User override sections of the Quiz Administration settings block (see below).&lt;br /&gt;
&lt;br /&gt;
;When time expires..&lt;br /&gt;
&lt;br /&gt;
There are three options as to what will happen when the time limit is up. Choose the one you need from the dropdown menu:&lt;br /&gt;
# Open attempts are submitted automatically&lt;br /&gt;
# There is a grace period when open attempts can be submitted, but no more questions answered&lt;br /&gt;
# Attempts must be submitted before time expires, or they are not counted (default)&lt;br /&gt;
&lt;br /&gt;
If you select &amp;quot;&#039;&#039;There is a grace period...&#039;&#039;&amp;quot; then you can check the box to enable the &amp;quot;Submission grace period&amp;quot; and specify a period of time during which learners may still submit the quiz after the time is up.&lt;br /&gt;
&lt;br /&gt;
===Examples of how timing is handled===&lt;br /&gt;
&lt;br /&gt;
#A student starts a quiz at noon. The quiz has a one-hour time-limit, and a 1 hour delay between attempts. The student gets distracted, and so actually does not submit (using the overdue handling) until 1:30pm. &#039;&#039;They are allowed to start their second attempt at 2. pm&#039;&#039;&lt;br /&gt;
#The quiz count-down timer submits a student&#039;s quiz attempt at the last second when time expires. Because the server is heavily loaded, it takes 30 seconds to process the student&#039;s attempt. &#039;&#039;The submission is accepted nonetheless.&#039;&#039;&lt;br /&gt;
#Same situation as above but with a 120 second delay: &#039;&#039;The submission is rejected.&#039;&#039;&lt;br /&gt;
#The delay is not because of server load but because the student found a way to cheat the timer. &#039;&#039;Moodle cannot know what causes a delay.The behaviour is controlled by the admin setting(quiz | graceperiodmin), 60 seconds by default.&#039;&#039;&lt;br /&gt;
#A student is a member of 3 groups,all of which have different override settings. Which limits will apply to this student? &#039;&#039;If there is any user-specific override, then that is used, and the group overrides for that setting are not used at all. Otherwise, if there are multiple group overrides, the most generous values are used (the earliest open date, the latest close date, the longest time limit, the most number of attempts, and the student can type any of the passwords).&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Grade==&lt;br /&gt;
(These settings are collapsed by default)&lt;br /&gt;
{|&lt;br /&gt;
|[[File:quizgrade.png|thumb|312px|Grade settings expanded]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
;Grade category&lt;br /&gt;
If you have categories in your gradebook, select the one you wish the quiz to be in here.&lt;br /&gt;
;Attempts allowed&lt;br /&gt;
:Students may be allowed to have multiple attempts at a quiz. This can help make the process of taking the quiz more of an educational activity rather than simply an assessment. If the quiz is randomized then the student will get a new version for each attempt. This is useful for practice purposes.&lt;br /&gt;
&lt;br /&gt;
Note: You can change the allowed number of attempts for different groups or users in the Group or User override sections of the Quiz Administration settings block.&lt;br /&gt;
&lt;br /&gt;
;Grading method&lt;br /&gt;
:When multiple attempts are allowed, there are different ways you can use the grades to calculate the student&#039;s final grade for the quiz.&lt;br /&gt;
* Highest grade - the final grade is the highest (best) grade in any attempt&lt;br /&gt;
* Average grade - the final grade is the average (simple mean) grade of all attempts&lt;br /&gt;
* First grade - the final grade is the grade earned on the first attempt (other attempts are ignored)&lt;br /&gt;
* Last grade - the final grade is the grade earned on the most recent attempt only&lt;br /&gt;
&lt;br /&gt;
==Layout==&lt;br /&gt;
(These settings are collapsed by default)&lt;br /&gt;
{|&lt;br /&gt;
|[[File:quizlayout.png|thumb|422px|Layout settings expanded]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
;Question order&lt;br /&gt;
:If &#039;Shuffled randomly&#039; is selected, then the order of questions in the quiz will be randomly shuffled each time a student starts a new attempt at the quiz. The intention is to make it a little harder for students to copy from each other.&lt;br /&gt;
&lt;br /&gt;
;New page&lt;br /&gt;
:For longer quizzes it makes sense to stretch the quiz over several pages by limiting the number of questions per page. When adding questions to the quiz, page breaks will automatically be inserted according to the setting you choose here. However, you will also be able to move page breaks around by hand later on the editing page.&lt;br /&gt;
:&#039;&#039;&#039;Note that changing this setting has no effect on questions you have already added to the quiz&#039;&#039;&#039;. The setting will only apply to questions you add subsequently. To change the page breaks in an existing quiz, you need to go to the quiz editing screen, tick the &#039;Show page breaks&#039; checkbox, then use the repaginate control.&lt;br /&gt;
&lt;br /&gt;
;Navigation method (available by clicking &#039;&#039;Show More&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
By choosing &#039;&#039;Sequential&#039;&#039; instead of &#039;&#039;Free&#039;&#039;, the teacher is forcing the student to progress through the questions in order without being able to go back to a previous question or skip to a later one.&lt;br /&gt;
&lt;br /&gt;
==Question behaviour==&lt;br /&gt;
(These settings are collapsed by default)&lt;br /&gt;
{|&lt;br /&gt;
|[[File:quizquestionbehaviour.png|thumb|447px|Question behaviour settings expanded]]&lt;br /&gt;
|}&lt;br /&gt;
;Shuffle within questions&lt;br /&gt;
&lt;br /&gt;
If set to &#039;yes&#039;, then each time the student takes a quiz the parts of the question will be shuffled randomly.&lt;br /&gt;
;How questions behave&lt;br /&gt;
* &#039;&#039;&#039;Deferred feedback&#039;&#039;&#039; - Students must enter an answer to each question and then submit the entire quiz, before anything is graded or they get any feedback.&lt;br /&gt;
* &#039;&#039;&#039;Adaptive mode and Adaptive mode (no penalties)&#039;&#039;&#039; - Allows students to have multiple attempts at the question before moving on to the next question. &lt;br /&gt;
* &#039;&#039;&#039;Interactive mode&#039;&#039;&#039; - After submitting one answer, and reading the feedback, the student has to click a &#039;Try again&#039; button before they can try a new response. Once the student has got the question right, they can no longer change their response. Once the student has got the question wrong too many times, they are just graded wrong (or partially correct) and get shown the feedback and can no longer change their answer. &lt;br /&gt;
**There can be different feedback after each try the student makes. &lt;br /&gt;
**The question can adapt itself to the student&#039;s answer, for example by giving some hints before asking the student to try again.&lt;br /&gt;
* &#039;&#039;&#039;Immediate feedback&#039;&#039;&#039; - Similar to interactive mode in that the student can submit their response immediately during the quiz attempt, and get it graded. However, they can only submit one response, they cannot change it later. &lt;br /&gt;
* &#039;&#039;&#039;Deferred feedback or Immediate feedback&#039;&#039;&#039; with &#039;&#039;&#039;Certainty-based marking&#039;&#039;&#039; (&#039;&#039;&#039;CBM&#039;&#039;&#039;) - With CBM, the student does not only answer the question, but they also indicate how sure they are they got the question right. The grading is adjusted by the choice of certainty, so that students have to reflect honestly on their own level of knowledge in order to get the best mark.  See the &#039;&#039;See Also&#039;&#039; section below for an example quiz using CBM and a blog post explaining the philosophy.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Note:&#039;&#039; There is also an option &amp;quot;Manual grading&amp;quot; which can be enabled from A&#039;&#039;dministration&amp;gt;Site administration&amp;gt;Plugins&amp;gt;Question behaviour&#039;&#039; This causes all questions in the quiz to require manual grading.&lt;br /&gt;
===Certainty-based marking===&lt;br /&gt;
When a student answers a question they also have to state how sure they are of the answer: not very (less than 67%); fairly (more than 67%) or very (more than 80%). Their grading is then ajusted according to how certain they are, which means that for example if they answered correctly but were only guessing, their mark is adjusted from 1 to 0.33. If they answered wrongly but were very sure, their mark is adjusted from 0 to -2. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;For detailed information on how CBM works and how students can benefit from it, see [[Using certainty-based marking]].&#039;&#039;&lt;br /&gt;
{|&lt;br /&gt;
| [[File:cbm03.png|thumb|correct answer; very sure]]&lt;br /&gt;
| [[File:cbm05.png|thumb|correct answer; fairly sure]]&lt;br /&gt;
| [[File:cmb04.png|thumb|correct answer; not very sure]]&lt;br /&gt;
| [[File:cbm01.png|thumb|wrong answer; very sure]]&lt;br /&gt;
| [[File:cbm99.png|thumb|wrong answer; not very sure]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;Each attempt builds on the last (available by clicking &amp;quot;Show more&amp;quot;)&lt;br /&gt;
:If multiple attempts are allowed and this setting is set to Yes, then each new attempt contains the results of the previous attempt. This allows the student on the new attempt to concentrate on just those questions that were answered incorrectly on the previous attempt. If this option is chosen then each attempt by a particular student uses the same questions in the same order, independent of randomization settings. To show a fresh quiz on every attempt, select No for this setting.&lt;br /&gt;
&lt;br /&gt;
(See also the forum discussion: [https://moodle.org/mod/forum/discuss.php?d=225920 CBM too harsh?]&lt;br /&gt;
&lt;br /&gt;
==Review options==&lt;br /&gt;
(These settings are collapsed by default)&lt;br /&gt;
{|&lt;br /&gt;
|[[File:quizreview.png|thumb|600px|Review options expanded]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
This section controls what information students will be shown when they review their past attempts at the quiz, and during the attempt in adaptive mode.  It is a matrix with check boxes.&lt;br /&gt;
&lt;br /&gt;
The various pieces of information that can be controlled are:&lt;br /&gt;
; The attempt: Will show how the student responded to each question.&lt;br /&gt;
; Whether correct: Displays whether the students response to each question is correct or incorrect.&lt;br /&gt;
; Marks:  Reveals the marks awarded to the student and the grade for the quiz.&lt;br /&gt;
; Specific feedback: Will show the feedback for the response to the answer as set when adding the question to the quiz. Each response to a question can have feedback for both correct and incorrect answers.&lt;br /&gt;
; General feedback: Displays the general feedback for the whole question as set when adding the question to the quiz. You can use the general feedback to give students some background to what knowledge the question was testing. &lt;br /&gt;
; Right answer:  Reveals the correct answer to each question, whether the student answered correctly or not (See note below).&lt;br /&gt;
; Overall feedback: Displays feedback for the entire quiz as set in the quiz settings (See note below).&lt;br /&gt;
&lt;br /&gt;
For each of the above items, you can determine the timeframe when the students will see them:&lt;br /&gt;
; During the attempt : is only available when &#039;&#039;‘How questions behave’&#039;&#039; has been set to &#039;&#039;‘Immediate feedback’&#039;&#039;, &#039;&#039;‘Immediate feedback with CBM’&#039;&#039; and &#039;&#039;‘Interactive with multiple tries’&#039;&#039;. If set to one of these options then a &#039;&#039;‘Check’&#039;&#039; button will appear below the answer and when clicked the student will submit that response and then receive immediate feedback.&lt;br /&gt;
; Immediately after the attempt : means within 2 minutes of the student clicking &amp;quot;submit all and finish&amp;quot;. &lt;br /&gt;
; Later, while the quiz is still open : means after 2 minutes, but before the close date (if the quiz does not have a close date, this phase never ends).&lt;br /&gt;
; After the quiz is closed : means what it says (you never get here for quizzes without a close date).&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;Tip:&#039;&#039; Checking any of the boxes in the timeframe row, will reveal the test to the student. For example, to allow students to see their quiz immediately after taking it but not later, make sure none of the boxes in &amp;quot;Later&amp;quot; or &amp;quot;After&amp;quot; rows are checked.  The student will be able to see their grade but not get into the quiz.&lt;br /&gt;
&lt;br /&gt;
Note: Currently, the Answers display is a bit inconsistent between different question types. For example, the matching question type shows students which of their responses are correct, but does not tell them the right answer for the ones they got wrong. The short answer and multiple choices question types do tell the student what the correct answer is.&lt;br /&gt;
&lt;br /&gt;
Users with the capability &#039;View hidden grades&#039; [[Capabilities/moodle/grade:viewhidden|moodle/grade:viewhidden]] (typically teachers and administrators) are not affected by these settings and will always by able to review all information about a student&#039;s attempt at any time.&lt;br /&gt;
&lt;br /&gt;
In your list of review options, you must have &#039;The attempt&#039; (the first option in the lists) selected  before you can enable the options to show &#039;Whether correct&#039;, &#039;Specific feedback&#039;, &#039;General feedback&#039;, and &#039;Right answer&#039;. If you choose not to let the students review the attempt, your only options are to display &#039;Marks&#039; and &#039;Overall feedback&#039;.&lt;br /&gt;
&lt;br /&gt;
==Appearance==&lt;br /&gt;
(These settings are collapsed by default)&lt;br /&gt;
{|&lt;br /&gt;
|[[File:quizappearance.png|thumb|470px|Display settings expanded]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
:Show the user&#039;s picture&lt;br /&gt;
It is now possible, when displaying the user&#039;s profile picture for proctoring purposes, to choose whether a large image or thumbnail will be displayed. &lt;br /&gt;
&lt;br /&gt;
;Decimal places in grades&lt;br /&gt;
:This option determines how many digits will be shown after the decimal separator (see  [[dev:Translation_langconfig|langconfig]] ) when the grade is displayed. A setting of 0 for example means that the grades are displayed as integers. This setting is only used for the display of grades, not for the display or marking of answers.&lt;br /&gt;
&lt;br /&gt;
==Extra restrictions on attempts==&lt;br /&gt;
(These settings are collapsed by default and are available by clicking &amp;quot;Show more&amp;quot;)&lt;br /&gt;
{|&lt;br /&gt;
|[[File:quizextrarestrictions.png|thumb|470px|Extra restrictions settings expanded]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
;Require password&lt;br /&gt;
:This field is optional. &lt;br /&gt;
&lt;br /&gt;
:If you specify a password in here then participants must enter the same password before they are allowed to make an attempt on the quiz. This is useful to give only a selected group of students access to the quiz.&lt;br /&gt;
&lt;br /&gt;
;Require network address&lt;br /&gt;
:This field is optional.&lt;br /&gt;
&lt;br /&gt;
:You can restrict access for a quiz to particular subnets on the LAN or Internet by specifying a comma-separated list of partial or full IP address numbers. This is especially useful for a proctored (invigilated) quiz, where you want to be sure that only people in a certain room are able to access the quiz. For example: 192.168. , 231.54.211.0/20, 231.3.56.211&lt;br /&gt;
&lt;br /&gt;
:There are three types of numbers you can use (you can not use text based domain names like example.com): &lt;br /&gt;
&lt;br /&gt;
# Full IP addresses, such as 192.168.10.1 which will match a single computer (or proxy). &lt;br /&gt;
# Partial addresses, such as 192.168 which will match anything starting with those numbers. &lt;br /&gt;
# CIDR notation, such as 231.54.211.0/20 which allows you to specify more detailed subnets. &lt;br /&gt;
&lt;br /&gt;
:Spaces are ignored.&lt;br /&gt;
&lt;br /&gt;
;Enforced delay between attempts&lt;br /&gt;
:These two  fields are optional.&lt;br /&gt;
&lt;br /&gt;
:You can set a time (from seconds to weeks) between the first and second attempt of a quiz. You can also (or alternatively) set a time from seconds to weeks for subsequent attempts after the second attempt. Thus, you might allow a student to take the quiz twice immediately with no delay, but if they want to improve their score with a third attempt, they are forced to wait a week and use the time for extra revision.&lt;br /&gt;
&lt;br /&gt;
;Browser security&lt;br /&gt;
:This is by default an advanced field, visible by clicking &amp;quot;Show advanced&amp;quot;.&lt;br /&gt;
:The options in this section offer various ways to try to restrict how students may try to &#039;cheat&#039; while attempting a quiz. However, this is not a simple issue, and what in one situation is considered &#039;cheating&#039; may, in another situation, just be effective use of information technology. (For example, the ability to quickly find answers using a search engine.)&lt;br /&gt;
&lt;br /&gt;
::Note also that this is not just at problem of technology with a technical solution. Cheating has been going on since long before computers, and while computers make certain actions, like copy and paste, easier, they also make it easier for teachers to detect cheating - for example using the quiz reports. The options provided here are not fool-proof, and while they do make some forms of cheating harder for students, they also make it more inconvenient for students to attempt the quizzes, and they are not fool-proof.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Full screen pop-up with some JavaScript security&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
:There is a limit to what the quiz, which runs on a web server, can do to restrict what the student sitting at their computer can do while attempting the quiz. However, this option does what is possible:&lt;br /&gt;
&lt;br /&gt;
:* The quiz will only start if the student has a JavaScript-enabled web-browser.&lt;br /&gt;
:* The quiz appears in a fullscreen popup window that covers all the other windows and has no  course navigation controls.&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|[[File:seb24.png|thumb|465px|Student view of quiz question with full screen popup. (Click to see enlarged)]]&lt;br /&gt;
|}&lt;br /&gt;
:* The students are prevented, as far as is possible, from using facilities like copy and paste.&lt;br /&gt;
:* This setting does not work well with the MyMobile theme for mobile devices included in the standard installation.  In particular, quiz time limits do not function correctly (MDL-32047).&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Require the use of Safe Exam Browser&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
:This option will only appear if your administrator has enabled it in &#039;&#039;Settings &amp;gt; Site administration &amp;gt; Development &amp;gt; Experimental &amp;gt; Experimental settings&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:[[Safe exam browser|Safe Exam Browser]] is a customised web browser that must be downloaded and installed on the computer that the student uses to attempt the quiz. It restricts student use more effectively than a pop up window option.  Features include full screen, without web navigation options, shortcut keys including copy and paste are disabled and of course surfing the web during an exam.&lt;br /&gt;
&lt;br /&gt;
==Overall feedback==&lt;br /&gt;
(These setttings are collapsed by default)&lt;br /&gt;
{|&lt;br /&gt;
|[[File:quizoverallfeedback.png|thumb|448px|Overall feedback settings expanded]]&lt;br /&gt;
|}&lt;br /&gt;
Overall feedback is shown to a student after they have completed an attempt at the quiz. The text that is shown can depend on the grade the student got. Click &amp;quot;Show editing tools&amp;quot; to display the rich text editor, and drag the bottom right of the text box out to expand it.&lt;br /&gt;
&lt;br /&gt;
For example, if you entered:&lt;br /&gt;
&lt;br /&gt;
:Grade boundary: 100%&lt;br /&gt;
:Feedback: &amp;quot;Well done&amp;quot;&lt;br /&gt;
:Grade boundary: 40%&lt;br /&gt;
:Feedback: &amp;quot;Please study this week&#039;s work again&amp;quot;&lt;br /&gt;
:Grade boundary: 0%&lt;br /&gt;
&lt;br /&gt;
Then students who score between 100% and 40% will see the &amp;quot;Well done&amp;quot; message, and those who score between 39.99% and 0% will see &amp;quot;Please study this week&#039;s work again&amp;quot;. That is, the grade boundaries define ranges of grades, and each feedback string is displayed to scores within the appropriate range.&lt;br /&gt;
&lt;br /&gt;
Grade boundaries can be specified either as a percentage, for example &amp;quot;31.41%&amp;quot;, or as a number, for example &amp;quot;7&amp;quot;. If your quiz is out of 10 marks, a grade boundary of 7 means 7/10 or better. &lt;br /&gt;
&lt;br /&gt;
Note that the maximum and minimum grade boundaries (100% and 0%) are set automatically.&lt;br /&gt;
&lt;br /&gt;
You can set as many or as few grade boundaries as you wish. The form allows you up to 5 ranges at first, but you can add more by clicking the &amp;quot;Add 3 fields to form&amp;quot; button underneath.&lt;br /&gt;
&lt;br /&gt;
If you&#039;re getting confusing error messages about a boundary being out of sequence (when it&#039;s obviously *in* sequence), or &amp;quot;boundaries must be between 0% and 100%&amp;quot; (and they are) -- check that the Maximum Grade for this quiz is set to something greater than zero.&lt;br /&gt;
&lt;br /&gt;
==Common module settings==&lt;br /&gt;
(These settings are collapsed by default)&lt;br /&gt;
See [[Common module settings]]&lt;br /&gt;
&lt;br /&gt;
==Restrict access/Activity completion==&lt;br /&gt;
(These settings are collapsed by default)&lt;br /&gt;
&lt;br /&gt;
The Restrict access and Activity completion settings are visible if [[Conditional activities]] and [[Activity completion]] have been enabled in the site and the course.&lt;br /&gt;
&lt;br /&gt;
==Group and User overrides==&lt;br /&gt;
&lt;br /&gt;
[[File:overridesquiz.png]]&lt;br /&gt;
&lt;br /&gt;
Dates, timing and number of allowed attempts may be changed for individual users or groups by following the links &#039;&#039;Group Overrides&#039;&#039; or &#039;&#039;User Overrides&#039;&#039; in the Quiz Administration settings block.&lt;br /&gt;
&lt;br /&gt;
===Group overrides===&lt;br /&gt;
To change a quiz setting for a particular group, click the &amp;quot;add group override&amp;quot; button in &#039;&#039;Quiz Administration&amp;gt;Group overrides&#039;&#039;, make the changes you wish and save or enter another override.&lt;br /&gt;
&lt;br /&gt;
===User overrides===&lt;br /&gt;
To change a quiz setting for a particular user or users, click the &amp;quot;add user override&amp;quot;button in &#039;&#039;Quiz Administration&amp;gt;Group overrides&#039;&#039;, make the changes you wish and save or enter another override.&lt;br /&gt;
&lt;br /&gt;
[[Image:groupuseroverride.png|groupuseroverride.png]]&lt;br /&gt;
&lt;br /&gt;
==Site administration settings==&lt;br /&gt;
&lt;br /&gt;
The quiz module has additional settings which may be changed by an administrator in &#039;&#039;Administration &amp;gt; Site administration &amp;gt; Plugins &amp;gt; Activity modules &amp;gt; Quiz&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
;Autosave period&lt;br /&gt;
:If enabled, student responses will be saved every minute/two minutes/five minutes (according to selection) This is useful so that students don&#039;t lose work but does increase the load on the server.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
How questions behave can be configured in &#039;&#039;Administration&amp;gt;Site administration&amp;gt;Plugins&amp;gt;Question behaviours&amp;gt;Manage question &lt;br /&gt;
behaviours&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[http://youtu.be/MCLGZTpfG60 Moodle 2.x Quiz]  MoodleBites video on YouTube   &lt;br /&gt;
*[http://school.demo.moodle.net/mod/quiz/view.php?id=1496  School demo example of a quiz with CBM]  Log into with username &amp;quot;parent&amp;quot; and password &amp;quot;moodle&amp;quot;&lt;br /&gt;
*[https://moodle.org/mod/forum/discuss.php?d=225920 Forum thread: Certainty based marking - too harsh?]&lt;br /&gt;
*[http://helderenwijzer.nl/2011/10/certainty-based-marking-in-moodle/ Blog post on CBM (Certainty Based Marking)in Moodle]&lt;br /&gt;
&lt;br /&gt;
[[fr:Ajouter/modifier un test]]&lt;br /&gt;
[[de:Test konfigurieren]]&lt;br /&gt;
[[es:Configuraciones del examen]]&lt;/div&gt;</summary>
		<author><name>Rexlorenzo</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/34/en/index.php?title=Talk:Backup_and_restore_FAQ&amp;diff=108258</id>
		<title>Talk:Backup and restore FAQ</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/34/en/index.php?title=Talk:Backup_and_restore_FAQ&amp;diff=108258"/>
		<updated>2013-12-10T01:14:30Z</updated>

		<summary type="html">&lt;p&gt;Rexlorenzo: Created page with &amp;quot;For the &amp;quot;How can I extract original files from a Moodle backup file?&amp;quot; section, it only gives an option to extract files from a backup for 1 particular file. But we have folks ...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;For the &amp;quot;How can I extract original files from a Moodle backup file?&amp;quot; section, it only gives an option to extract files from a backup for 1 particular file. But we have folks who want to recover files in bulk. I would like to add in an external URL to this python script: http://www.reades.com/2012/11/29/mb-archives/&lt;br /&gt;
&lt;br /&gt;
But unsure of the restrictions against this, since it isn&#039;t &amp;quot;core&amp;quot; Moodle.&lt;/div&gt;</summary>
		<author><name>Rexlorenzo</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/34/en/index.php?title=Sharing_Cart&amp;diff=105670</id>
		<title>Sharing Cart</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/34/en/index.php?title=Sharing_Cart&amp;diff=105670"/>
		<updated>2013-06-17T22:32:51Z</updated>

		<summary type="html">&lt;p&gt;Rexlorenzo: Updated github link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Version History==  &lt;br /&gt;
*New &amp;gt;&amp;gt; Sharing Cart 2.4 released&lt;br /&gt;
*Block: Sharing Cart 1.9      release 1 - 2008.10.15&lt;br /&gt;
*Block: Sharing Cart 1.9      release 2 - 2009.02.19&lt;br /&gt;
*Block: Sharing Cart 1.9      release 3 - 2009.03.16&lt;br /&gt;
*Block: Sharing Cart 1.9      release 4 - 2009.04.14&lt;br /&gt;
*Block: Sharing Cart 1.9      release 5 - 2009.04.24&lt;br /&gt;
*Block: Sharing Cart 1.9      release 6 - 2009.06.22  (upload/download to the Moodlelang.org Repository)&lt;br /&gt;
*Block: Sharing Cart 1.9      release 8 - 2009.09.18  (update for Moodle ver. 1.9.5+)&lt;br /&gt;
*Block: Sharing Cart 1.9      release 9 - 2009.11.30  (adds a bulk delete/empty cart feature)&lt;br /&gt;
*Block: Sharing Cart 1.9      release 10 - 2009.12.28 (update for Moodle ver. 1.9.7, help revised)&lt;br /&gt;
*Block: Sharing Cart 1.9      release 11 - 2010.01.26 (common module settings are now retained, icons follow theme)&lt;br /&gt;
*Block: Sharing Cart 1.9      release 12 - 2010.02.12 (fixes a missing file bug introduced in release 11, tested OK on Moodle 1.9.9)&lt;br /&gt;
*Block: Sharing Cart 1.9      release 14 - 2010.09.30 (fixes a minor bug where the Sharing Cart would strip the Grade Category from a graded module)&lt;br /&gt;
*Block: Sharing Cart 1.9      release 15 - 2012.05.29 (supports Postgres)&lt;br /&gt;
*Block: Sharing Cart 1.9      release 16 - 2012.12.05 (supports sticky blocks)&lt;br /&gt;
*Block: Sharing Cart 2.1      beta release - 2011.07.31&lt;br /&gt;
*Block: Sharing Cart 2.2      release 1 - 2012.04.26  (fixes a bug where multiple items copied into the SC, only the first item would copy out of the SC)&lt;br /&gt;
*Block: Sharing Cart 2.2      release 2 - 2012.09.04  (this version is now also compatible with Moodle 2.3)&lt;br /&gt;
*Block: Sharing Cart 2.3      release 1 - 2012.09.13  (new options: moving user data in glossary, forum, wiki and database activities) &lt;br /&gt;
*Block: Sharing Cart 2.4      release 1 - 2012.12.05  (recommended update because new API in Moodle 2.4 hides Sharing Cart 2.3 admin settings)&lt;br /&gt;
&lt;br /&gt;
==Purpose==&lt;br /&gt;
The Sharing Cart is a block for duplicating course items into a personal library and an easy way to move those Moodle resources and activities between multiple courses on your site.  With just three clicks, the Sharing Cart copies and moves a single course item from one course to another. It copies without user data—similar to the “Import” function in Course Administration. From version 2.3, user content in Forums, Wikis, Glossaries and Databases can optionally be included. In addition, items can be collected and saved on the Sharing Cart indefinitely, serving as a library of frequently used course items available for duplication. The Sharing Cart is viewable only by teachers, course creators and administrators.&lt;br /&gt;
&lt;br /&gt;
==Requirements==&lt;br /&gt;
#  Moodle version 2.3.1 or greater.  A previous version for 1.9 is also available. &lt;br /&gt;
#  PHP 5.3.3&lt;br /&gt;
#  Javascript/AJAX:  A browser with JavaScript and AJAX turned on in Moodle is required.&lt;br /&gt;
#  MySQL 5.1, PostgreSQL 8.4, SQL Server 2008 (= MSSQL10):   Postgres now supported in 1.9.&lt;br /&gt;
&lt;br /&gt;
==Installation==&lt;br /&gt;
# download latest 2.4 release from [https://github.com/VERSION2-Inc/moodle-block_sharing_cart Github]&lt;br /&gt;
# download latest 1.9 release from [https://github.com/VERSION2-Inc/moodle-block_sharing_cart/tree/MOODLE_19_STABLE Github] &lt;br /&gt;
# download older 1.9 release from [http://download.moodle.org/download.php/plugins/blocks/sharing_cart.zip CVS Contrib]&lt;br /&gt;
# unzip the package&lt;br /&gt;
# using FTP, open your blocks folder in your moodle program folder on your site&lt;br /&gt;
# place the folder &amp;quot;sharing_cart&amp;quot; into the blocks folder&lt;br /&gt;
# go to &amp;quot;Notifications&amp;quot; in your site admin area, by clicking the button, you will enable the repository plugin, and automatically generate database tables&lt;br /&gt;
# inside any course, &amp;quot;Turn editing on&amp;quot;, go to Blocks &amp;quot;Add...&amp;quot;, and you should see &amp;quot;sharing cart&amp;quot; in the list of blocks in the menu.&lt;br /&gt;
# if you are going to share Quiz Questions, you may need to add a new system role called Question Creator (see note below in &#039;Roles&#039;)&lt;br /&gt;
&lt;br /&gt;
==Operation==&lt;br /&gt;
# &#039;&#039;&#039;Turning On and Off&#039;&#039;&#039;: With editing on, add the Sharing Cart block from the block menu. After adding the Sharing Cart block, you will notice the block stays &amp;quot;on&amp;quot; the next time you enter that course. When you go to another course, add the Sharing Cart block to that new course.  Then you can see your Sharing Cart as you roam courses across a site.  Click the &amp;quot;X&amp;quot; icon to turn &amp;quot;off&amp;quot; the Sharing Cart, although the contents of the Sharing Cart will remain there when you turn it on again.&lt;br /&gt;
# &#039;&#039;&#039;Copying to the Sharing Cart&#039;&#039;&#039;: You will notice a small &amp;quot;Copy to Sharing Cart&amp;quot; icon which appears after each resource or activity in the center column of a Moodle course.  Click on that icon to send a copy of that resource/activity into the Sharing Cart.  User data will be removed, only the activity itself will be cloned.&lt;br /&gt;
#  &#039;&#039;&#039;Copying from the Sharing Cart&#039;&#039;&#039;: Click the &amp;quot;Copy to course&amp;quot; icon in Sharing Cart, then you will see many dotted boxes appear in the center column. Choose the location you wish to place your item, and it will be copied there directly.  &lt;br /&gt;
#  &#039;&#039;&#039;Making folders inside the Sharing Cart&#039;&#039;&#039;: Click the &amp;quot;move&amp;quot; icon on a course content item and an input box will appear.  Input the name of the target folder there.  To move an item into a folder, click the &amp;quot;Move to folder&amp;quot; icon in the Sharing Cart, then a drop-down list appears, and select the target folder. If you click the “Edit” button, you will replace the drop-down list with an input box.&lt;br /&gt;
&lt;br /&gt;
==Roles==&lt;br /&gt;
Generally, the Sharing Cart will duplicate any activity in any course that a teacher has access to.  However, quiz questions have another set of permissions independent of site roles.  Therefore, if you experience difficulty sharing questions in Moodle 1.9 (i.e. students cannot view embedded audio or images), we recommend making a new role within your site:&lt;br /&gt;
#  &#039;&#039;&#039;Add a new role--Question Creator:&#039;&#039;&#039; Make this role in Site Admin &amp;gt;&amp;gt; Users &amp;gt;&amp;gt; Permissions &amp;gt;&amp;gt; Define roles, and assign all teachers to this role (in addition to other roles they already have).  This role should be given at least the following rights (set permissions to &amp;quot;Allow&amp;quot;) under &amp;quot;Course&amp;quot;: Manage Activities, Manage Files,Add new questions, Edit all questions, Edit question categories, Move all questions, Use all questions, View all questions. &lt;br /&gt;
#  &#039;&#039;&#039;Set questions to System Question Category:&#039;&#039;&#039;  If you set questions to course or activity level categories, you may not be able to share them. &lt;br /&gt;
&#039;&#039;TIP 1:&#039;&#039; ...&#039;&#039;&#039;Possibly add another role--Question User:&#039;&#039;&#039;  If students are unable to view questions, make this role and assign all students to this role.  Set to &amp;quot;Allow&amp;quot; the following permissions:  Use all questions, View all questions.&lt;br /&gt;
&lt;br /&gt;
These additional roles are likely not needed in Moodle 2.x, because of more robust ways to save media files.&lt;br /&gt;
&lt;br /&gt;
==Known Issues &amp;amp; Roadmap==&lt;br /&gt;
* Sharing Cart 2.2 is stable, with no reported bugs. With Sharing Cart 2.2, release 2 (from Sept 4, 2012), you can install it on a new Moodle 2.3 site. Please send feedback directly to Don Hinkelman:  hinkel at sgu.ac.jp.&lt;br /&gt;
* Sharing Cart 1.9 works well with Moodle standard modules (activities and resources) including Hotpot.  Tested OK with the Feedback Module. Please test it and tell us if your third party module does or does not work.&lt;br /&gt;
* Some third party modules with incomplete backup/restore will not work with the Sharing Cart and may produce fatal errors. Here is what to do.[[Sharing Cart/Project Format Errors]]&lt;br /&gt;
* If you make an administrator setting to enable &amp;quot;split restore&amp;quot; (Admin block&amp;gt;&amp;gt;Miscellaneous&amp;gt;&amp;gt;experimental&amp;gt;&amp;gt;split restore), the Sharing Cart will not work properly. To make it work, turn off split restore.&lt;br /&gt;
* Media files are copied (not moved) to each instance of a new duplicate file.  This solves many troublesome issues of permissions to access the files.  However, for sites with restricted hard disk space, it may fill up space quickly.&lt;br /&gt;
* When AJAX course editing is enabled on your site, dragging the Sharing Cart block to a new location in the blocks area may cause trouble temporarily—all blocks may freeze or all the folders freeze (this is a bug in Moodle core).  To unfreeze the folders, reload the page.&lt;br /&gt;
* From June 2009, release 6 of the Sharing Cart is able to move content to and from the Moodle for Language Teaching Repository.  In the future it will be able to move items across any cooperating sites.  To test with http://moodlelang.org, download the latest Sharing Cart version from CVS. Or contact Don Hinkelman  hinkel at sgu.ac.jp&lt;br /&gt;
* For future versions, depending on funding, we plan to build a locking mechanism to prevent the Sharing Cart from copying commercial works or items that the author does not want copied.&lt;br /&gt;
&lt;br /&gt;
==Issues to Consider==&lt;br /&gt;
* Moodle 1.9 has a sophisticated system of permissions for the Question Bank.  Question categories can be limited to certain teachers.  The Sharing Cart operates on the assumption that sharing of questions is desirable and little control is needed.  We do not know all possible results that may happen if questions are copied and duplicated.  For example, if the question was originally limited to a &amp;quot;Course&amp;quot; category, will it share perfectly to other courses and students?  Please report to us any problems you find concerning this question. At the moment, we are recommending sharing questions with the &amp;quot;System&amp;quot; level question category. &lt;br /&gt;
* Finally, if your administration wishes to have a high degree of control of questions and activities, the Sharing Cart may be too easy-to-use. In terms of site user policies, we believe sharing permissions should be broadly applied not just to administrators, but to all teachers. Your policy on sharing depends on your institutional culture and values.&lt;br /&gt;
&lt;br /&gt;
==Legacy Repository Connection in Moodle 1.9== &lt;br /&gt;
[[Setup Repository Connection]] &lt;br /&gt;
A custom repository for Moodle 1.9 was created in 2009 and connected with Sharing Cart 1.9, release 6--this was only set up for one repository--Moodle for Language Teaching. With the advent of the Moodle Hub in version 2.x, the custom repository of 1.9 was no longer needed. The link shows legacy instructions for connecting the Repository with Sharing Cart in 1.9&lt;br /&gt;
&lt;br /&gt;
==Maintainers==&lt;br /&gt;
This block was programmed by Akio Ohnishi and Tomonori Maruyama at [http://www.ver2.jp/ Version2] Educational Web Development and released under GPL.  The designers and maintainers of this block are Don Hinkelman and Andy Johnson.  Funding is provided by Sapporo Gakuin University and the Japan Association of Language Teaching--CALL SIG. We welcome other contributors.  For issues and suggestions, please contact Don on the Sharing Cart forums or directly (hinkel at sgu.ac.jp).&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[Project Course Format|Project Course Format: a format for moving sections of a course]]&lt;br /&gt;
* [http://tracker.moodle.org/browse/CONTRIB-907/ Moodle Tracker CONTRIB-907]&lt;br /&gt;
* [http://download.moodle.org/download.php/plugins/blocks/sharing_cart.zip Download from CVS Contrib]&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=87044 Forum discussions]&lt;br /&gt;
* [http://moodle.org/mod/data/view.php?d=13&amp;amp;rid=2150 Modules and Plugins database]&lt;br /&gt;
&lt;br /&gt;
[[Category: Contributed code]]&lt;br /&gt;
[[Category: Block]]&lt;/div&gt;</summary>
		<author><name>Rexlorenzo</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/34/en/index.php?title=Participation_report&amp;diff=103755</id>
		<title>Participation report</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/34/en/index.php?title=Participation_report&amp;diff=103755"/>
		<updated>2013-03-26T21:25:26Z</updated>

		<summary type="html">&lt;p&gt;Rexlorenzo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Course reports}}&lt;br /&gt;
A participation report for a particular activity can be generated by a manager, teacher or non-editing teacher (or any other user with the capability [[Capabilities/report/participation:view|report/participation:view]]) in &#039;&#039;Navigation &amp;gt; Courses &amp;gt; My course &amp;gt; Reports &amp;gt; Participation report&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
[[Image:Participation_report_example.jpg]]&lt;br /&gt;
&lt;br /&gt;
The definition of View and Post for the selected activity type will be given on screen.&lt;br /&gt;
&lt;br /&gt;
For example:&lt;br /&gt;
*Forum View: View Discussion, Search, Forum, Forums, Subscribers&lt;br /&gt;
*Forum Post: Add Discussion, Add Post, Delete Discussion, Delete Post, Move Discussion, Prune Post, Update Post&lt;br /&gt;
&lt;br /&gt;
An extremely useful feature of the participation report is the option to send a message to all students who have not completed a certain action.  Other options with selected users are to add a note or extend enrolment.&lt;br /&gt;
&lt;br /&gt;
NOTE: If a [[Using_Forum#Moving_a_discussion|forum post is moved]], the participation report will show incorrect results for the affected forums. For example, take a student who posted in forum A and had their post moved to forum B. In the course participation report the student will still be listed has having made a post in forum A, but will not be listed as having made a post yet in forum B.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
* Tracker issue MDL-21415 - Course Participation Report doesn&#039;t abide by separate groups&lt;br /&gt;
&lt;br /&gt;
[[es:Reporte de participación]]&lt;br /&gt;
[[fr:Rapport de participation]]&lt;br /&gt;
[[de:Kursbeteiligung]]&lt;/div&gt;</summary>
		<author><name>Rexlorenzo</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/34/en/index.php?title=Participation_report&amp;diff=103754</id>
		<title>Participation report</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/34/en/index.php?title=Participation_report&amp;diff=103754"/>
		<updated>2013-03-26T21:25:10Z</updated>

		<summary type="html">&lt;p&gt;Rexlorenzo: Added note that moving a forum post will result in incorrect report in course participantion&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Course reports}}&lt;br /&gt;
A participation report for a particular activity can be generated by a manager, teacher or non-editing teacher (or any other user with the capability [[Capabilities/report/participation:view|report/participation:view]]) in &#039;&#039;Navigation &amp;gt; Courses &amp;gt; My course &amp;gt; Reports &amp;gt; Participation report&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
[[Image:Participation_report_example.jpg]]&lt;br /&gt;
&lt;br /&gt;
The definition of View and Post for the selected activity type will be given on screen.&lt;br /&gt;
&lt;br /&gt;
For example:&lt;br /&gt;
*Forum View: View Discussion, Search, Forum, Forums, Subscribers&lt;br /&gt;
*Forum Post: Add Discussion, Add Post, Delete Discussion, Delete Post, Move Discussion, Prune Post, Update Post&lt;br /&gt;
&lt;br /&gt;
An extremely useful feature of the participation report is the option to send a message to all students who have not completed a certain action.  Other options with selected users are to add a note or extend enrolment.&lt;br /&gt;
&lt;br /&gt;
Note: If a [[Using_Forum#Moving_a_discussion|forum post is moved]], the participation report will show incorrect results for the affected forums. For example, take a student who posted in forum A and had their post moved to forum B. In the course participation report the student will still be listed has having made a post in forum A, but will not be listed as having made a post yet in forum B.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
* Tracker issue MDL-21415 - Course Participation Report doesn&#039;t abide by separate groups&lt;br /&gt;
&lt;br /&gt;
[[es:Reporte de participación]]&lt;br /&gt;
[[fr:Rapport de participation]]&lt;br /&gt;
[[de:Kursbeteiligung]]&lt;/div&gt;</summary>
		<author><name>Rexlorenzo</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/34/en/index.php?title=Using_Forum&amp;diff=103753</id>
		<title>Using Forum</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/34/en/index.php?title=Using_Forum&amp;diff=103753"/>
		<updated>2013-03-26T21:23:06Z</updated>

		<summary type="html">&lt;p&gt;Rexlorenzo: /* Moving a discussion */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Forum}}&lt;br /&gt;
The teacher can set the format of what the student sees under the introduction by selecting the forum type in [[Forum settings]].&lt;br /&gt;
&lt;br /&gt;
==Views==&lt;br /&gt;
&lt;br /&gt;
===A single simple discussion===&lt;br /&gt;
&lt;br /&gt;
Students will see the text you have placed in the [[Adding/editing_a_forum#Forum_introduction|Forum introduction setting]] as the first post of the discussion. Below you will find the replies that have been posted.  In the example below, the student sees that their reply was rated.&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
| [[File:Forum homepage view Simple student mu.png|thumb|Student view of &amp;quot;A single simple discussion&amp;quot; forum type]]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Each person posts one discussion===&lt;br /&gt;
The view will be basically the same as in the previous case, the only difference being the &#039;Add a new discussion&#039; option. Viewing a forum page, the student will see the text you have written at the &#039;Forum introduction&#039; space while creating the forum, and, if there are any, the discussions that have been started. &lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
| [[File:Forum homepage view Single student mu.png|thumb|Student view of &amp;quot;Each person posts one discussion&amp;quot; forum type]]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Standard forum for general use===&lt;br /&gt;
&lt;br /&gt;
In this forum type, students will see the introduction text in a separate space above the discussion field, in which you will see the information such as the title of the discussion (which means the forum&#039;s title), its author, the number of replies and the date of the last post. &lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
| [[File:Forum homepage view student mu.png|thumb|Student view of &amp;quot;Standard forum&amp;quot; type]]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
===Question and Answer forum===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
| [[File:QA1.png|thumb|Inital view of Q&amp;amp;A forum]]&lt;br /&gt;
| [[File:QA2.png|thumb|Students cannot see posts until they post]]&lt;br /&gt;
| [[FIle:QA3.png|thumb|Other posts visible when editing time is over]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Standard forum displayed in blog-like format===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
| [[File:Bloglikeforum.png|thumb|Blog like forum]]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In the upper right corner of the home forum screen (above the introduction), the student may see the options the teacher has set for [[Adding/editing_a_forum#Force_everyone_to_be_subscribed.3F|subscriptions to the forum]], and the &#039;Jump to&#039; field, with which you can &#039;jump&#039; to any part of the course. This is also place where the teacher will find the &amp;quot;Update this forum&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
==Display options==&lt;br /&gt;
[[Image:forumviewoptions.jpg|thumb|Reply display options]]A discussion thread may be displayed in four ways. Use the pull down menu at the top of each forum discussion to select a display type.&lt;br /&gt;
&lt;br /&gt;
* Display replies flat, with oldest first&lt;br /&gt;
* Display replies flat, with newest first - The discussion will be displayed in one line and the chronological order from the newest to the oldest.  This is the same as the above, just a different sort order.&lt;br /&gt;
* Display replies in threaded form - Only the post starting the discussion will be displayed in its full form; replies will be reduced to the headlines (including information about its author and date of release) and organized chronologically; moreover, replies will be shifted towards the right so that only replies to the same post were in the same line.&lt;br /&gt;
* Display replies in nested form - All posts are displayed in their full forms; replies will be reduced to the headlines (including information about its author and date of release) and organized chronologically; moreover, replies will be shifted towards the right so that only replies to the same post were in the same line.&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
| [[Image:Forum Flat form mu.png|thumb|Flat Forum discussion, example from middle]]&lt;br /&gt;
| [[Image:Forum threaded form mu.png|thumb|Posts in threaded form]]&lt;br /&gt;
| [[Image:Forum nested form mu.png|thumb|&amp;quot;Nested reply example&amp;quot;]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Forum posting==&lt;br /&gt;
&lt;br /&gt;
The default content of &#039;&#039;&#039;Subject&#039;&#039;&#039; is usually &#039;Re: &amp;lt;the name of the &#039;parent&#039; post&amp;gt;&#039;. You can change it though. &lt;br /&gt;
&lt;br /&gt;
When writing text in Moodle there are several formats you can choose to produce your text, depending on your expertise and the type of browser you are using. Please refer to [[Formatting text]] for further information.&lt;br /&gt;
&lt;br /&gt;
=== Sharing images through forums ===&lt;br /&gt;
&lt;br /&gt;
*When an image is &amp;quot;attached&amp;quot; as a file to a forum message, it is immediately displayed full size after the message (i.e. no need to click on an attachment).  This an excellent way of sharing images without having to go through the process of uploading them as files and linking them from within web pages. &lt;br /&gt;
&lt;br /&gt;
*Images may be dragged and dropped into the box as well as uploading via the &amp;quot;add&amp;quot; link and the [[File picker]].&lt;br /&gt;
&lt;br /&gt;
[[File:forumdragdrop.png]]&lt;br /&gt;
&lt;br /&gt;
===Sharing sound and video through forums===&lt;br /&gt;
*If multimedia filters are enabled, a sound file (mp3) or accepted video file can be attached and it will be embedded into the forum post in an appropriate player.&lt;br /&gt;
*As with images in the previous section, multimedia files may be dragged and dropped from the desktop instead of uploaded via the [[File picker]].&lt;br /&gt;
&lt;br /&gt;
===Post length===&lt;br /&gt;
&lt;br /&gt;
Extra-long posts cause problems when doing a forum search and can be difficult to read on screen. Rather than creating a very long post, consider copying and pasting the text into a text file and add it as an attachment to your forum post. &lt;br /&gt;
&lt;br /&gt;
===Post editing time limit===&lt;br /&gt;
&lt;br /&gt;
There is a time limit for editing posts, usually 30 minutes. It is set by an administrator in &#039;&#039;Administration &amp;gt; Security &amp;gt; [[Site policies]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The Using Moodle forum discussion [http://moodle.org/mod/forum/discuss.php?d=5367 The philosophy underlying &amp;quot;no editing after 30 minutes&amp;quot;] includes reasons why it is a good idea to have a time limit for editing posts.&lt;br /&gt;
&lt;br /&gt;
===Mail now===&lt;br /&gt;
&lt;br /&gt;
A mail now checkbox is available for anyone with the [[Capabilities/moodle/course:manageactivities|capability to manage course activities]], normally teachers and admins.&lt;br /&gt;
&lt;br /&gt;
Checking the &amp;quot;Mail now&amp;quot; box results in an email being sent immediately (i.e. when the [[Cron|cron]] next runs) to everyone subscribed to the forum, rather than after the post editing time limit. &lt;br /&gt;
&lt;br /&gt;
==Exporting forum posts==&lt;br /&gt;
Users with the &#039;&#039;mod/forum:exportdiscussion&#039;&#039; or &#039;&#039;mod/forum:exportownpost&#039;&#039; or &#039;&#039;mod/forum:exportpost&#039;&#039; permission can export forum posts to any portfolio the administrator has enabled:&lt;br /&gt;
&lt;br /&gt;
[[File:Exportforum.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Moving a discussion==&lt;br /&gt;
&lt;br /&gt;
Teachers and other users with the [[Capabilities/mod/forum:movediscussions|capability to move discussions]] can move a discussion to any other forum in the course for which they have appropriate rights.&lt;br /&gt;
# Click on the arrow in the &#039;Move this discussion to...&#039; dropdown menu in the top right corner of the page and select a destination forum.&lt;br /&gt;
# Click the Move button.&lt;br /&gt;
&lt;br /&gt;
NOTE: Moving a forum post will display incorrect results in the [[Participation_report|course participation report]] for the affected forums. For example, take a student who posted in forum A and had their post moved to forum B. In the course participation report the student will still be listed has having made a post in forum A, but will not be listed as having made a post yet in forum B.&lt;br /&gt;
&lt;br /&gt;
==Guidelines for Teaching and Learning Forums==&lt;br /&gt;
&lt;br /&gt;
When you decide to use a discussion forum as an activity in an e-learning environment, it is important to be aware that your time will be needed in some sense in order to make the activity successful. If your goal is to encourage discussion, the forum will only work if: &lt;br /&gt;
&lt;br /&gt;
a) &#039;&#039;&#039;participants feel there is a need/reason to participate and they will gain something from the experience.&#039;&#039;&#039; Incentives for learning, gathering support, etc. should be explored and encouraged early on in order to clearly convey the purpose of the forum to others. Anyone considering offering grades or marks for participation is advised to think very carefully about the difference between quantity and quality of discussions in forums.&lt;br /&gt;
&lt;br /&gt;
b) a sense of community and purpose can be fostered amongst participants. This sense of community can be fostered through tutor/teacher initiative and scaffolding, or primarily through the students/participants themselves depending on the intentions of the activity.&lt;br /&gt;
&lt;br /&gt;
==Selecting forum type==&lt;br /&gt;
&lt;br /&gt;
Moodle has four kinds of forums each with a slightly different [[Viewing a forum|layout]] and purpose.&lt;br /&gt;
&lt;br /&gt;
Which of the forums will best suit your needs for a particular activity? In order to answer this question, it is useful to think how you might lead such a discussion in a face-to-face environment. Would you throw the question out to the class and sit back to observe them in their answers? Or would you break them up into smaller groups first and ask them to have discussions with a partner before bringing them back to the main group? Or perhaps you would like to keep them focused on a particular aspect of a question and ensure that they do not wander away from the topic at hand? All of the above approaches are both valid and useful, depending on your learning outcomes, and you can replicate all of them in Moodle forums.&lt;br /&gt;
&lt;br /&gt;
===A standard forum for general use===&lt;br /&gt;
The standard forum ([[Viewing_a_forum#Standard_forum_for_general_use|view here]]) probably most useful for large discussions that you intend to monitor/guide or for social forums that are student led. This does not mean that you need to make a new posting for each reply in each topic, although, in order to ensure that the discussion does not get &#039;out of control&#039;, you may need to be prepared to spend a significant amount of time finding the common threads amongst the various discussions and weaving them together. Providing overall remarks for particular topics can also be a key aspect of your responsibilities in the discussion. Alternatively, you could ask students to summarize discussion topics at agreed points, once a week or when a thread comes to an agreed conclusion. Such a learner-centred approach may be particularly useful once the online community has been established and, perhaps, when you have modeled the summarizing process.&lt;br /&gt;
&lt;br /&gt;
===A single simple discussion=== &lt;br /&gt;
The simple forum ([[Viewing_a_forum#A_single_simple_discussion|view here]]) is most useful for short/time-limited discussion on a single subject or topic. This kind of forum is very productive if you are interested in keeping students focused on a particular issue. &lt;br /&gt;
&lt;br /&gt;
===Each person posts one discussion===&lt;br /&gt;
This forum ([[Viewing_a_forum#Each_person_posts_one_discussion|view here]]) is most useful when you want to achieve a happy medium between a large discussion and a short and focused discussion. A single discussion topic per person allows students a little more freedom than a single discussion forum, but not as much as a standard forum where each student can create as many topics as he or she wishes. Successful forums of this selection can be active, yet focused, as students are not limited in the number of times they can respond to others within threads.&lt;br /&gt;
&lt;br /&gt;
===Question and Answer forum=== &lt;br /&gt;
The Q &amp;amp; A forum ([[Viewing_a_forum#Question_and_Answer_forum|view here]]) is best used when you have a particular question that you wish to have answered. In a Q and A forum, tutors post the question and students respond with possible answers. By default a Q and A forum requires students to post once before viewing other students&#039; postings. After the initial posting and once the editing time (usually 30 minutes) has elapsed, students can view and respond to others&#039; postings. This feature allows equal initial posting opportunity among all students, thus encouraging original and independent thinking. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Note:&#039;&#039; Students do not see the &amp;quot;add a new question&amp;quot; button in the Q &amp;amp; A forum. If you wish students to be able to add new questions, they need to be given the capability [[Capabilities/mod/forum:addquestion|mod/forum:addquestion]]&lt;br /&gt;
&lt;br /&gt;
===Standard forum displayed in blog-like format===&lt;br /&gt;
This forum  behaves in the same way as the default standard forum for general use, allowing users to start their own discussions. However, it displays differently in that the first post of each discussion is displayed (as in a blog) so that users can read it and then choose to respond by clicking the &amp;quot;Discuss this topic&amp;quot; button bottom right of the post.&lt;br /&gt;
&lt;br /&gt;
====Tips for Question and Answer====&lt;br /&gt;
When the Question and Answer mode is selected, Moodle hides the replies to the initial thread post by the teacher but not the entire forum itself. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;Tip:&#039;&#039; Post each question as a thread in the forum and then have students post replies to the question. In this fashion, Moodle will protect the replies from being viewable (subject to the caveat above) by other students but allow the initial post/thread visible for reply by all students.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;Tip:&#039;&#039; Do not post the question in the forum summary because every student answer will become a thread and visible to all students. In this scenario, it may appear as if the Question and Answer forum is not working correctly, since the new initial posts in the thread are intentionally designed not to be hidden, just their replies.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;Tip:&#039;&#039; If you have set up groups for your forum the facilitator needs to post a question to each of the groups and not to &#039;all participants&#039; as questions asked of all participants (students) are able to be read by ALL students. Questions posed to group members are only visible to those group members and replies are only visible once a group member has posted a message.&lt;br /&gt;
&lt;br /&gt;
==Forum subscription==&lt;br /&gt;
&lt;br /&gt;
When a person is &#039;&#039;&#039;subscribed&#039;&#039;&#039; to a forum it means that they will be notified (according to their [[Messaging settings]] preferences) of every subsequent post in that forum. Posters have 30 minutes by default to edit their post before it is sent though this time limit can be changed by an administrator.&lt;br /&gt;
&lt;br /&gt;
People can usually choose whether or not they want to be subscribed to each forum. However, if a teacher forces subscription on a particular forum then this choice is taken away and everyone in the class will get notified.This is especially useful in the News forum and in forums towards the beginning of the course (before everyone has worked out that they can subscribe to these emails themselves).&lt;br /&gt;
&lt;br /&gt;
Note that even if you force subscriptions every user can elect not to  be notified in  [[Messaging settings]], or elect to have all email sent once a day in a digest contain either all posts or simply the subject headings.&lt;br /&gt;
&lt;br /&gt;
Choosing &#039;&#039;Everyone can choose to be subscribed&#039;&#039; enables you to check (and modify) the number of subscribers (&#039;&#039;Settings &amp;gt; Forum administration &amp;gt; Show/edit current subscribers&#039;&#039;) and to subscribe to (or unsubscribe from) the forum (&#039;Subscribe to this forum&#039; / &#039;Unsubscribe from this forum&#039;).&lt;br /&gt;
&lt;br /&gt;
An overview of your forum subscriptions is available on the forums index page e.g. http://moodle.org/mod/forum/index.php?id=5&lt;br /&gt;
&lt;br /&gt;
==Concepts for use in forums==&lt;br /&gt;
===Participation and Scaffolding ===&lt;br /&gt;
&lt;br /&gt;
Whilst one of the great advantages of e-learning is the flexibility it affords participants, this does not mean that days or weeks should pass without response and discussion in a forum (unless it is appropriate for it to do so). This is perhaps most especially true at the beginning of a course or programme when students and tutors are new to each other and in need of welcome messages/encouragement. Whilst e-learning, and discussions in particular, can support learning that is not always tutor/teacher-centred, your role will be important, especially as an online community begins to develop. It is during these initial stages of introductory material that a group of students can become a community of participants who begin to grow in their understandings of course material and individual contributions to the knowledge construction process.&lt;br /&gt;
&lt;br /&gt;
As the discussions progress and learners become accustomed to the mechanics and the tone of the forums then there are key ways in which your input can be reduced, thereby helping to foster a community that is less dependent on the tutor/teacher. Even then, however, you will probably want to be a presence in the discussions although you may choose to be one of many contributors rather than the font of all wisdom.&lt;br /&gt;
&lt;br /&gt;
===Commitment and Participation===&lt;br /&gt;
&lt;br /&gt;
Ask yourself if&lt;br /&gt;
&lt;br /&gt;
# you wish to have involvement in the forum or if you want the students to lead and own the space&lt;br /&gt;
# you want the forum to add value to the face to face environment or have a life of its own in its own right outside the lecture theatre/classroom or seminar room&lt;br /&gt;
# you are prepared to make appropriate contributions to the discussion in order to: &lt;br /&gt;
## encourage discussion if students are quiet&lt;br /&gt;
## help shape ideas if students begin to wander off-task&lt;br /&gt;
## your role will be defined as discussions/a course progresses &lt;br /&gt;
## you will explicitly but gradually relinquish control of the discussions&lt;br /&gt;
## you will encourage and support learners to share control of discussions(for example you might ask a learner/group of learners to summarise contributions to a discussion thread/topic or you might ask learners to initiate discussion topics)&lt;br /&gt;
&lt;br /&gt;
===Student Centered Forums===&lt;br /&gt;
&lt;br /&gt;
With the growing popularity of social networking software like Facebook, Bebo, MySpace and the like, students are leaving schools and coming to Higher and Further Education with a new technological sophistication and with new expectations for communication. And as school, colleges and universities recognise that reflective and life long learning are significant goals in education, student centered learning and the creation of student centered spaces online are also gaining credence in educational settings. We know that effective learning requires access to social and academic networks for both study material and emotional support; as such, online communities can offer a holistic knowledge construction and support mechanism and recognize that affective activity is effective. &lt;br /&gt;
&lt;br /&gt;
Social forums, often called ‘Virtual Cafes’ or ‘Common Rooms’ can be set up for courses or for programmes, depending on the student need. Such spaces provide a common area for students to come together and discuss unlimited topics, including social activities and educational ideas. They are supportive spaces for students, most successful with large first and second year courses where students would not otherwise have the opportunity to communicate with others outside their own tutorial group. It is arguable that students will experience a greater sense of community within and a sense of belonging to an educational institution or individual department having had the experience and convenience of the social forum on their course; this could arguably have implications for retention.&lt;br /&gt;
&lt;br /&gt;
These spaces are typically highly active, especially in first term. Depending on your institution, they are usually self monitored by students, who understand that the same ‘rules’ and ‘netiquette’ that apply to them within any computing space, also apply in Moodle.&lt;br /&gt;
&lt;br /&gt;
===The News Forum===&lt;br /&gt;
&lt;br /&gt;
Moodle courses automatically generate a [[News forum]] which defaults to automatically subscribe all participants in a course. The name of the News Forum can be changed to something more appropriate, such as ‘Important Announcements’ or the like. This is a useful feature and many use this forum in a Moodle course to announce exam dates, times or changes to exams, lectures or seminars, as well as important information about course work throughout a term or special announcements relating to events.&lt;br /&gt;
&lt;br /&gt;
===Teacher/Tutor forums===&lt;br /&gt;
A teacher/tutor-only forum may be added to a course by creating a hidden forum. Teachers are able to view hidden course activities whereas students cannot.&lt;br /&gt;
&lt;br /&gt;
==Some forum suggestions to consider==&lt;br /&gt;
&lt;br /&gt;
#If your course is at a distance, if your face to face time is limited, or if you just wish to foster a sense of community in your Moodle course which supplements your face to face course, it is good practice to begin with a welcome or introductory message or thread in one of your forums. This welcome or introduction from you invites participants, for example, to post some specific details to introduce themselves to you and their peers. This can be your icebreaker or you can have an icebreaker separately.&lt;br /&gt;
#If you have two questions for participants to answer, starting the two strands or topics within the forum itself will both help learners to see where to put their responses, and remind them to answer all parts of your question.&lt;br /&gt;
#Remember that you are communicating in an environment that does not have the benefit of verbal tone, eye contact, body language and the like. Careful consideration of your communication is, therefore, necessary.&lt;br /&gt;
#Postings to a forum are always written but they can take different forms and you may wish to consider what form best suits the activity. For instance, you might choose to articulate a form of contribution in order to be explicit. Thus you might say, &#039;This is a think-aloud forum in which, together, we will try to tease out ideas and possibilities&#039; or &#039;This is a formal forum in which you are invited to share your ideas on (topic)&#039; and, where you select the latter, you might have already suggested learners plan those ideas offline or in another kind of activity within Moodle.&lt;br /&gt;
#Create a forum where only the teacher can start discussions, but the students can only reply. Each thread you start contains an essay question (or several similar ones). The students make a bullet point plan for the essay and post it as a reply. This works well as a revision strategy as the students can see how others have approached the same task. Once everyone has posted their plan, you can start a discussion as to which plans seem better and why. Creating a scale to use for rating the posts can be useful so that the students can see how helpful other people think their effort were. (Note: At this time, there is no option to hide the &amp;quot;Add new discussion topic&amp;quot; button, so you need to tell your students not to start discussion threads, but to only reply to threads started by the teacher. If you only need one thread, then you can use the &amp;quot;a single simple discussion&amp;quot; format and the &amp;quot;Add new discussion topic&amp;quot; button is not available to the students.)&lt;br /&gt;
&lt;br /&gt;
===Grading forums===&lt;br /&gt;
&lt;br /&gt;
The teacher can use the [[Forum ratings|ratings]] [[Scales|scales]] to [[Grades|grade]] student activities in a forum. There are several methods for calculating the grade for a forum that can be found in the [[Adding/editing_a_forum#Grade|Forum settings under grades]]. There are 5 ways to [[Adding/editing_a_forum#Aggregate_type|aggregate ratings]] automatically to calculate a forum grade for the [[Gradebook]]. These include: Average, Max, Min, Count and Sum.&lt;br /&gt;
&lt;br /&gt;
==Forum ratings allow users to evaluate posts in a forum==&lt;br /&gt;
&lt;br /&gt;
Forum ratings use [[Scales]] to standardize the reporting of performance. A forum rating can be included as part of a student&#039;s [[Grades|grade]].  For example, a teacher might use a custom rating scale in a forum and allow students to rate forum posts.&lt;br /&gt;
&lt;br /&gt;
Forum ratings must be allowed and the potential rater must have [[Roles|role]] permission. Teachers by default have this ability.  The teacher role is also able to give permission to a [[Student|student role]] in a specific forum to be able to assign a rating to a post. Forum settings and [[Forum_permissions#Enabling_students_to_rate_posts| Enabling student ratings]] has more information.     &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===How to use===&lt;br /&gt;
[[Image:Forum rating example1 mu.png|thumb|Teacher view of a previously rated student post]]When rating is allowed, the qualified user will see &amp;quot;Rate this post&amp;quot; and a pull down menu after an entry (not their own).  The menu displays a [[Scales|scale]] that the forum creator selected in the [[Adding/editing_a_forum#Grade|Forum grade settings]]. The user can rate more than one post at a time.  When finished they should click the &amp;quot;submit my ratings&amp;quot; button at the bottom of the page.   &lt;br /&gt;
&lt;br /&gt;
===AJAX forum rating===&lt;br /&gt;
&lt;br /&gt;
Forum rating can be made more user-friendly with the use of AJAX. Users can rate forum posts almost instantly without needing to scroll to the bottom of the page and click the &amp;quot;Send in my latest ratings&amp;quot; button. &lt;br /&gt;
&lt;br /&gt;
AJAX forum rating requires AJAX to be enabled by an administrator in &#039;&#039;Settings &amp;gt; Site administration &amp;gt; Appearance &amp;gt; [[AJAX and Javascript settings|AJAX and Javascript]]&#039;&#039; and by users in their [[Edit profile|user profile]].&lt;br /&gt;
&lt;br /&gt;
===Separate and connected knowing===&lt;br /&gt;
You can  rate forum posts with the [[Separate_and_Connected_Knowing| Separate and Connected Knowing]] scale here.&lt;br /&gt;
&lt;br /&gt;
===Best Practice and shared discussions===&lt;br /&gt;
*There are lots of discussions about Forum best use and Forum assessment in the Teaching Strategies Forum http://moodle.org/mod/forum/view.php?id=41.&lt;br /&gt;
&lt;br /&gt;
*A useful discussion about Forum assessment can be found here http://moodle.org/mod/forum/discuss.php?d=66008.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
* Using Moodle [http://moodle.org/mod/forum/view.php?f=116 Forum module]&lt;br /&gt;
*[http://www.moodleblog.onet/?page_id=148 Peer Assessment using a Moodle Forum] blog post with screencast&lt;br /&gt;
&lt;br /&gt;
Using Moodle forum discussions:&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=5367 The philosophy underlying &amp;quot;no editing after 30 minutes&amp;quot;]&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=66008 Best Practices for grading discussions]&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=88000 Two Courses, One Forum?]&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=93304 Using a forum for 1 to 1 teaching]&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=95470 Technicalities of managing a Forum]&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=67360 Role names showing next to posting photos]&lt;br /&gt;
&lt;br /&gt;
[[de: Forum nutzen]]&lt;br /&gt;
[[fr:Afficher un forum]]&lt;br /&gt;
[[ja:フォーラムの閲覧]]&lt;/div&gt;</summary>
		<author><name>Rexlorenzo</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/34/en/index.php?title=Using_Forum&amp;diff=103752</id>
		<title>Using Forum</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/34/en/index.php?title=Using_Forum&amp;diff=103752"/>
		<updated>2013-03-26T21:22:13Z</updated>

		<summary type="html">&lt;p&gt;Rexlorenzo: /* Moving a discussion */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Forum}}&lt;br /&gt;
The teacher can set the format of what the student sees under the introduction by selecting the forum type in [[Forum settings]].&lt;br /&gt;
&lt;br /&gt;
==Views==&lt;br /&gt;
&lt;br /&gt;
===A single simple discussion===&lt;br /&gt;
&lt;br /&gt;
Students will see the text you have placed in the [[Adding/editing_a_forum#Forum_introduction|Forum introduction setting]] as the first post of the discussion. Below you will find the replies that have been posted.  In the example below, the student sees that their reply was rated.&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
| [[File:Forum homepage view Simple student mu.png|thumb|Student view of &amp;quot;A single simple discussion&amp;quot; forum type]]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Each person posts one discussion===&lt;br /&gt;
The view will be basically the same as in the previous case, the only difference being the &#039;Add a new discussion&#039; option. Viewing a forum page, the student will see the text you have written at the &#039;Forum introduction&#039; space while creating the forum, and, if there are any, the discussions that have been started. &lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
| [[File:Forum homepage view Single student mu.png|thumb|Student view of &amp;quot;Each person posts one discussion&amp;quot; forum type]]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Standard forum for general use===&lt;br /&gt;
&lt;br /&gt;
In this forum type, students will see the introduction text in a separate space above the discussion field, in which you will see the information such as the title of the discussion (which means the forum&#039;s title), its author, the number of replies and the date of the last post. &lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
| [[File:Forum homepage view student mu.png|thumb|Student view of &amp;quot;Standard forum&amp;quot; type]]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
===Question and Answer forum===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
| [[File:QA1.png|thumb|Inital view of Q&amp;amp;A forum]]&lt;br /&gt;
| [[File:QA2.png|thumb|Students cannot see posts until they post]]&lt;br /&gt;
| [[FIle:QA3.png|thumb|Other posts visible when editing time is over]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Standard forum displayed in blog-like format===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
| [[File:Bloglikeforum.png|thumb|Blog like forum]]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In the upper right corner of the home forum screen (above the introduction), the student may see the options the teacher has set for [[Adding/editing_a_forum#Force_everyone_to_be_subscribed.3F|subscriptions to the forum]], and the &#039;Jump to&#039; field, with which you can &#039;jump&#039; to any part of the course. This is also place where the teacher will find the &amp;quot;Update this forum&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
==Display options==&lt;br /&gt;
[[Image:forumviewoptions.jpg|thumb|Reply display options]]A discussion thread may be displayed in four ways. Use the pull down menu at the top of each forum discussion to select a display type.&lt;br /&gt;
&lt;br /&gt;
* Display replies flat, with oldest first&lt;br /&gt;
* Display replies flat, with newest first - The discussion will be displayed in one line and the chronological order from the newest to the oldest.  This is the same as the above, just a different sort order.&lt;br /&gt;
* Display replies in threaded form - Only the post starting the discussion will be displayed in its full form; replies will be reduced to the headlines (including information about its author and date of release) and organized chronologically; moreover, replies will be shifted towards the right so that only replies to the same post were in the same line.&lt;br /&gt;
* Display replies in nested form - All posts are displayed in their full forms; replies will be reduced to the headlines (including information about its author and date of release) and organized chronologically; moreover, replies will be shifted towards the right so that only replies to the same post were in the same line.&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
| [[Image:Forum Flat form mu.png|thumb|Flat Forum discussion, example from middle]]&lt;br /&gt;
| [[Image:Forum threaded form mu.png|thumb|Posts in threaded form]]&lt;br /&gt;
| [[Image:Forum nested form mu.png|thumb|&amp;quot;Nested reply example&amp;quot;]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Forum posting==&lt;br /&gt;
&lt;br /&gt;
The default content of &#039;&#039;&#039;Subject&#039;&#039;&#039; is usually &#039;Re: &amp;lt;the name of the &#039;parent&#039; post&amp;gt;&#039;. You can change it though. &lt;br /&gt;
&lt;br /&gt;
When writing text in Moodle there are several formats you can choose to produce your text, depending on your expertise and the type of browser you are using. Please refer to [[Formatting text]] for further information.&lt;br /&gt;
&lt;br /&gt;
=== Sharing images through forums ===&lt;br /&gt;
&lt;br /&gt;
*When an image is &amp;quot;attached&amp;quot; as a file to a forum message, it is immediately displayed full size after the message (i.e. no need to click on an attachment).  This an excellent way of sharing images without having to go through the process of uploading them as files and linking them from within web pages. &lt;br /&gt;
&lt;br /&gt;
*Images may be dragged and dropped into the box as well as uploading via the &amp;quot;add&amp;quot; link and the [[File picker]].&lt;br /&gt;
&lt;br /&gt;
[[File:forumdragdrop.png]]&lt;br /&gt;
&lt;br /&gt;
===Sharing sound and video through forums===&lt;br /&gt;
*If multimedia filters are enabled, a sound file (mp3) or accepted video file can be attached and it will be embedded into the forum post in an appropriate player.&lt;br /&gt;
*As with images in the previous section, multimedia files may be dragged and dropped from the desktop instead of uploaded via the [[File picker]].&lt;br /&gt;
&lt;br /&gt;
===Post length===&lt;br /&gt;
&lt;br /&gt;
Extra-long posts cause problems when doing a forum search and can be difficult to read on screen. Rather than creating a very long post, consider copying and pasting the text into a text file and add it as an attachment to your forum post. &lt;br /&gt;
&lt;br /&gt;
===Post editing time limit===&lt;br /&gt;
&lt;br /&gt;
There is a time limit for editing posts, usually 30 minutes. It is set by an administrator in &#039;&#039;Administration &amp;gt; Security &amp;gt; [[Site policies]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The Using Moodle forum discussion [http://moodle.org/mod/forum/discuss.php?d=5367 The philosophy underlying &amp;quot;no editing after 30 minutes&amp;quot;] includes reasons why it is a good idea to have a time limit for editing posts.&lt;br /&gt;
&lt;br /&gt;
===Mail now===&lt;br /&gt;
&lt;br /&gt;
A mail now checkbox is available for anyone with the [[Capabilities/moodle/course:manageactivities|capability to manage course activities]], normally teachers and admins.&lt;br /&gt;
&lt;br /&gt;
Checking the &amp;quot;Mail now&amp;quot; box results in an email being sent immediately (i.e. when the [[Cron|cron]] next runs) to everyone subscribed to the forum, rather than after the post editing time limit. &lt;br /&gt;
&lt;br /&gt;
==Exporting forum posts==&lt;br /&gt;
Users with the &#039;&#039;mod/forum:exportdiscussion&#039;&#039; or &#039;&#039;mod/forum:exportownpost&#039;&#039; or &#039;&#039;mod/forum:exportpost&#039;&#039; permission can export forum posts to any portfolio the administrator has enabled:&lt;br /&gt;
&lt;br /&gt;
[[File:Exportforum.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Moving a discussion==&lt;br /&gt;
&lt;br /&gt;
Teachers and other users with the [[Capabilities/mod/forum:movediscussions|capability to move discussions]] can move a discussion to any other forum in the course for which they have appropriate rights.&lt;br /&gt;
# Click on the arrow in the &#039;Move this discussion to...&#039; dropdown menu in the top right corner of the page and select a destination forum.&lt;br /&gt;
# Click the Move button.&lt;br /&gt;
&lt;br /&gt;
NOTE: Moving a forum post will display incorrect results in the [https://docs.moodle.org/24/en/Participation_report: course participation report] for the affected forums. For example, take a student who posted in forum A and had their post moved to forum B. In the course participation report the student will still be listed has having made a post in forum A, but will not be listed as having made a post yet in forum B.&lt;br /&gt;
&lt;br /&gt;
==Guidelines for Teaching and Learning Forums==&lt;br /&gt;
&lt;br /&gt;
When you decide to use a discussion forum as an activity in an e-learning environment, it is important to be aware that your time will be needed in some sense in order to make the activity successful. If your goal is to encourage discussion, the forum will only work if: &lt;br /&gt;
&lt;br /&gt;
a) &#039;&#039;&#039;participants feel there is a need/reason to participate and they will gain something from the experience.&#039;&#039;&#039; Incentives for learning, gathering support, etc. should be explored and encouraged early on in order to clearly convey the purpose of the forum to others. Anyone considering offering grades or marks for participation is advised to think very carefully about the difference between quantity and quality of discussions in forums.&lt;br /&gt;
&lt;br /&gt;
b) a sense of community and purpose can be fostered amongst participants. This sense of community can be fostered through tutor/teacher initiative and scaffolding, or primarily through the students/participants themselves depending on the intentions of the activity.&lt;br /&gt;
&lt;br /&gt;
==Selecting forum type==&lt;br /&gt;
&lt;br /&gt;
Moodle has four kinds of forums each with a slightly different [[Viewing a forum|layout]] and purpose.&lt;br /&gt;
&lt;br /&gt;
Which of the forums will best suit your needs for a particular activity? In order to answer this question, it is useful to think how you might lead such a discussion in a face-to-face environment. Would you throw the question out to the class and sit back to observe them in their answers? Or would you break them up into smaller groups first and ask them to have discussions with a partner before bringing them back to the main group? Or perhaps you would like to keep them focused on a particular aspect of a question and ensure that they do not wander away from the topic at hand? All of the above approaches are both valid and useful, depending on your learning outcomes, and you can replicate all of them in Moodle forums.&lt;br /&gt;
&lt;br /&gt;
===A standard forum for general use===&lt;br /&gt;
The standard forum ([[Viewing_a_forum#Standard_forum_for_general_use|view here]]) probably most useful for large discussions that you intend to monitor/guide or for social forums that are student led. This does not mean that you need to make a new posting for each reply in each topic, although, in order to ensure that the discussion does not get &#039;out of control&#039;, you may need to be prepared to spend a significant amount of time finding the common threads amongst the various discussions and weaving them together. Providing overall remarks for particular topics can also be a key aspect of your responsibilities in the discussion. Alternatively, you could ask students to summarize discussion topics at agreed points, once a week or when a thread comes to an agreed conclusion. Such a learner-centred approach may be particularly useful once the online community has been established and, perhaps, when you have modeled the summarizing process.&lt;br /&gt;
&lt;br /&gt;
===A single simple discussion=== &lt;br /&gt;
The simple forum ([[Viewing_a_forum#A_single_simple_discussion|view here]]) is most useful for short/time-limited discussion on a single subject or topic. This kind of forum is very productive if you are interested in keeping students focused on a particular issue. &lt;br /&gt;
&lt;br /&gt;
===Each person posts one discussion===&lt;br /&gt;
This forum ([[Viewing_a_forum#Each_person_posts_one_discussion|view here]]) is most useful when you want to achieve a happy medium between a large discussion and a short and focused discussion. A single discussion topic per person allows students a little more freedom than a single discussion forum, but not as much as a standard forum where each student can create as many topics as he or she wishes. Successful forums of this selection can be active, yet focused, as students are not limited in the number of times they can respond to others within threads.&lt;br /&gt;
&lt;br /&gt;
===Question and Answer forum=== &lt;br /&gt;
The Q &amp;amp; A forum ([[Viewing_a_forum#Question_and_Answer_forum|view here]]) is best used when you have a particular question that you wish to have answered. In a Q and A forum, tutors post the question and students respond with possible answers. By default a Q and A forum requires students to post once before viewing other students&#039; postings. After the initial posting and once the editing time (usually 30 minutes) has elapsed, students can view and respond to others&#039; postings. This feature allows equal initial posting opportunity among all students, thus encouraging original and independent thinking. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Note:&#039;&#039; Students do not see the &amp;quot;add a new question&amp;quot; button in the Q &amp;amp; A forum. If you wish students to be able to add new questions, they need to be given the capability [[Capabilities/mod/forum:addquestion|mod/forum:addquestion]]&lt;br /&gt;
&lt;br /&gt;
===Standard forum displayed in blog-like format===&lt;br /&gt;
This forum  behaves in the same way as the default standard forum for general use, allowing users to start their own discussions. However, it displays differently in that the first post of each discussion is displayed (as in a blog) so that users can read it and then choose to respond by clicking the &amp;quot;Discuss this topic&amp;quot; button bottom right of the post.&lt;br /&gt;
&lt;br /&gt;
====Tips for Question and Answer====&lt;br /&gt;
When the Question and Answer mode is selected, Moodle hides the replies to the initial thread post by the teacher but not the entire forum itself. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;Tip:&#039;&#039; Post each question as a thread in the forum and then have students post replies to the question. In this fashion, Moodle will protect the replies from being viewable (subject to the caveat above) by other students but allow the initial post/thread visible for reply by all students.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;Tip:&#039;&#039; Do not post the question in the forum summary because every student answer will become a thread and visible to all students. In this scenario, it may appear as if the Question and Answer forum is not working correctly, since the new initial posts in the thread are intentionally designed not to be hidden, just their replies.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;Tip:&#039;&#039; If you have set up groups for your forum the facilitator needs to post a question to each of the groups and not to &#039;all participants&#039; as questions asked of all participants (students) are able to be read by ALL students. Questions posed to group members are only visible to those group members and replies are only visible once a group member has posted a message.&lt;br /&gt;
&lt;br /&gt;
==Forum subscription==&lt;br /&gt;
&lt;br /&gt;
When a person is &#039;&#039;&#039;subscribed&#039;&#039;&#039; to a forum it means that they will be notified (according to their [[Messaging settings]] preferences) of every subsequent post in that forum. Posters have 30 minutes by default to edit their post before it is sent though this time limit can be changed by an administrator.&lt;br /&gt;
&lt;br /&gt;
People can usually choose whether or not they want to be subscribed to each forum. However, if a teacher forces subscription on a particular forum then this choice is taken away and everyone in the class will get notified.This is especially useful in the News forum and in forums towards the beginning of the course (before everyone has worked out that they can subscribe to these emails themselves).&lt;br /&gt;
&lt;br /&gt;
Note that even if you force subscriptions every user can elect not to  be notified in  [[Messaging settings]], or elect to have all email sent once a day in a digest contain either all posts or simply the subject headings.&lt;br /&gt;
&lt;br /&gt;
Choosing &#039;&#039;Everyone can choose to be subscribed&#039;&#039; enables you to check (and modify) the number of subscribers (&#039;&#039;Settings &amp;gt; Forum administration &amp;gt; Show/edit current subscribers&#039;&#039;) and to subscribe to (or unsubscribe from) the forum (&#039;Subscribe to this forum&#039; / &#039;Unsubscribe from this forum&#039;).&lt;br /&gt;
&lt;br /&gt;
An overview of your forum subscriptions is available on the forums index page e.g. http://moodle.org/mod/forum/index.php?id=5&lt;br /&gt;
&lt;br /&gt;
==Concepts for use in forums==&lt;br /&gt;
===Participation and Scaffolding ===&lt;br /&gt;
&lt;br /&gt;
Whilst one of the great advantages of e-learning is the flexibility it affords participants, this does not mean that days or weeks should pass without response and discussion in a forum (unless it is appropriate for it to do so). This is perhaps most especially true at the beginning of a course or programme when students and tutors are new to each other and in need of welcome messages/encouragement. Whilst e-learning, and discussions in particular, can support learning that is not always tutor/teacher-centred, your role will be important, especially as an online community begins to develop. It is during these initial stages of introductory material that a group of students can become a community of participants who begin to grow in their understandings of course material and individual contributions to the knowledge construction process.&lt;br /&gt;
&lt;br /&gt;
As the discussions progress and learners become accustomed to the mechanics and the tone of the forums then there are key ways in which your input can be reduced, thereby helping to foster a community that is less dependent on the tutor/teacher. Even then, however, you will probably want to be a presence in the discussions although you may choose to be one of many contributors rather than the font of all wisdom.&lt;br /&gt;
&lt;br /&gt;
===Commitment and Participation===&lt;br /&gt;
&lt;br /&gt;
Ask yourself if&lt;br /&gt;
&lt;br /&gt;
# you wish to have involvement in the forum or if you want the students to lead and own the space&lt;br /&gt;
# you want the forum to add value to the face to face environment or have a life of its own in its own right outside the lecture theatre/classroom or seminar room&lt;br /&gt;
# you are prepared to make appropriate contributions to the discussion in order to: &lt;br /&gt;
## encourage discussion if students are quiet&lt;br /&gt;
## help shape ideas if students begin to wander off-task&lt;br /&gt;
## your role will be defined as discussions/a course progresses &lt;br /&gt;
## you will explicitly but gradually relinquish control of the discussions&lt;br /&gt;
## you will encourage and support learners to share control of discussions(for example you might ask a learner/group of learners to summarise contributions to a discussion thread/topic or you might ask learners to initiate discussion topics)&lt;br /&gt;
&lt;br /&gt;
===Student Centered Forums===&lt;br /&gt;
&lt;br /&gt;
With the growing popularity of social networking software like Facebook, Bebo, MySpace and the like, students are leaving schools and coming to Higher and Further Education with a new technological sophistication and with new expectations for communication. And as school, colleges and universities recognise that reflective and life long learning are significant goals in education, student centered learning and the creation of student centered spaces online are also gaining credence in educational settings. We know that effective learning requires access to social and academic networks for both study material and emotional support; as such, online communities can offer a holistic knowledge construction and support mechanism and recognize that affective activity is effective. &lt;br /&gt;
&lt;br /&gt;
Social forums, often called ‘Virtual Cafes’ or ‘Common Rooms’ can be set up for courses or for programmes, depending on the student need. Such spaces provide a common area for students to come together and discuss unlimited topics, including social activities and educational ideas. They are supportive spaces for students, most successful with large first and second year courses where students would not otherwise have the opportunity to communicate with others outside their own tutorial group. It is arguable that students will experience a greater sense of community within and a sense of belonging to an educational institution or individual department having had the experience and convenience of the social forum on their course; this could arguably have implications for retention.&lt;br /&gt;
&lt;br /&gt;
These spaces are typically highly active, especially in first term. Depending on your institution, they are usually self monitored by students, who understand that the same ‘rules’ and ‘netiquette’ that apply to them within any computing space, also apply in Moodle.&lt;br /&gt;
&lt;br /&gt;
===The News Forum===&lt;br /&gt;
&lt;br /&gt;
Moodle courses automatically generate a [[News forum]] which defaults to automatically subscribe all participants in a course. The name of the News Forum can be changed to something more appropriate, such as ‘Important Announcements’ or the like. This is a useful feature and many use this forum in a Moodle course to announce exam dates, times or changes to exams, lectures or seminars, as well as important information about course work throughout a term or special announcements relating to events.&lt;br /&gt;
&lt;br /&gt;
===Teacher/Tutor forums===&lt;br /&gt;
A teacher/tutor-only forum may be added to a course by creating a hidden forum. Teachers are able to view hidden course activities whereas students cannot.&lt;br /&gt;
&lt;br /&gt;
==Some forum suggestions to consider==&lt;br /&gt;
&lt;br /&gt;
#If your course is at a distance, if your face to face time is limited, or if you just wish to foster a sense of community in your Moodle course which supplements your face to face course, it is good practice to begin with a welcome or introductory message or thread in one of your forums. This welcome or introduction from you invites participants, for example, to post some specific details to introduce themselves to you and their peers. This can be your icebreaker or you can have an icebreaker separately.&lt;br /&gt;
#If you have two questions for participants to answer, starting the two strands or topics within the forum itself will both help learners to see where to put their responses, and remind them to answer all parts of your question.&lt;br /&gt;
#Remember that you are communicating in an environment that does not have the benefit of verbal tone, eye contact, body language and the like. Careful consideration of your communication is, therefore, necessary.&lt;br /&gt;
#Postings to a forum are always written but they can take different forms and you may wish to consider what form best suits the activity. For instance, you might choose to articulate a form of contribution in order to be explicit. Thus you might say, &#039;This is a think-aloud forum in which, together, we will try to tease out ideas and possibilities&#039; or &#039;This is a formal forum in which you are invited to share your ideas on (topic)&#039; and, where you select the latter, you might have already suggested learners plan those ideas offline or in another kind of activity within Moodle.&lt;br /&gt;
#Create a forum where only the teacher can start discussions, but the students can only reply. Each thread you start contains an essay question (or several similar ones). The students make a bullet point plan for the essay and post it as a reply. This works well as a revision strategy as the students can see how others have approached the same task. Once everyone has posted their plan, you can start a discussion as to which plans seem better and why. Creating a scale to use for rating the posts can be useful so that the students can see how helpful other people think their effort were. (Note: At this time, there is no option to hide the &amp;quot;Add new discussion topic&amp;quot; button, so you need to tell your students not to start discussion threads, but to only reply to threads started by the teacher. If you only need one thread, then you can use the &amp;quot;a single simple discussion&amp;quot; format and the &amp;quot;Add new discussion topic&amp;quot; button is not available to the students.)&lt;br /&gt;
&lt;br /&gt;
===Grading forums===&lt;br /&gt;
&lt;br /&gt;
The teacher can use the [[Forum ratings|ratings]] [[Scales|scales]] to [[Grades|grade]] student activities in a forum. There are several methods for calculating the grade for a forum that can be found in the [[Adding/editing_a_forum#Grade|Forum settings under grades]]. There are 5 ways to [[Adding/editing_a_forum#Aggregate_type|aggregate ratings]] automatically to calculate a forum grade for the [[Gradebook]]. These include: Average, Max, Min, Count and Sum.&lt;br /&gt;
&lt;br /&gt;
==Forum ratings allow users to evaluate posts in a forum==&lt;br /&gt;
&lt;br /&gt;
Forum ratings use [[Scales]] to standardize the reporting of performance. A forum rating can be included as part of a student&#039;s [[Grades|grade]].  For example, a teacher might use a custom rating scale in a forum and allow students to rate forum posts.&lt;br /&gt;
&lt;br /&gt;
Forum ratings must be allowed and the potential rater must have [[Roles|role]] permission. Teachers by default have this ability.  The teacher role is also able to give permission to a [[Student|student role]] in a specific forum to be able to assign a rating to a post. Forum settings and [[Forum_permissions#Enabling_students_to_rate_posts| Enabling student ratings]] has more information.     &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===How to use===&lt;br /&gt;
[[Image:Forum rating example1 mu.png|thumb|Teacher view of a previously rated student post]]When rating is allowed, the qualified user will see &amp;quot;Rate this post&amp;quot; and a pull down menu after an entry (not their own).  The menu displays a [[Scales|scale]] that the forum creator selected in the [[Adding/editing_a_forum#Grade|Forum grade settings]]. The user can rate more than one post at a time.  When finished they should click the &amp;quot;submit my ratings&amp;quot; button at the bottom of the page.   &lt;br /&gt;
&lt;br /&gt;
===AJAX forum rating===&lt;br /&gt;
&lt;br /&gt;
Forum rating can be made more user-friendly with the use of AJAX. Users can rate forum posts almost instantly without needing to scroll to the bottom of the page and click the &amp;quot;Send in my latest ratings&amp;quot; button. &lt;br /&gt;
&lt;br /&gt;
AJAX forum rating requires AJAX to be enabled by an administrator in &#039;&#039;Settings &amp;gt; Site administration &amp;gt; Appearance &amp;gt; [[AJAX and Javascript settings|AJAX and Javascript]]&#039;&#039; and by users in their [[Edit profile|user profile]].&lt;br /&gt;
&lt;br /&gt;
===Separate and connected knowing===&lt;br /&gt;
You can  rate forum posts with the [[Separate_and_Connected_Knowing| Separate and Connected Knowing]] scale here.&lt;br /&gt;
&lt;br /&gt;
===Best Practice and shared discussions===&lt;br /&gt;
*There are lots of discussions about Forum best use and Forum assessment in the Teaching Strategies Forum http://moodle.org/mod/forum/view.php?id=41.&lt;br /&gt;
&lt;br /&gt;
*A useful discussion about Forum assessment can be found here http://moodle.org/mod/forum/discuss.php?d=66008.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
* Using Moodle [http://moodle.org/mod/forum/view.php?f=116 Forum module]&lt;br /&gt;
*[http://www.moodleblog.onet/?page_id=148 Peer Assessment using a Moodle Forum] blog post with screencast&lt;br /&gt;
&lt;br /&gt;
Using Moodle forum discussions:&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=5367 The philosophy underlying &amp;quot;no editing after 30 minutes&amp;quot;]&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=66008 Best Practices for grading discussions]&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=88000 Two Courses, One Forum?]&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=93304 Using a forum for 1 to 1 teaching]&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=95470 Technicalities of managing a Forum]&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=67360 Role names showing next to posting photos]&lt;br /&gt;
&lt;br /&gt;
[[de: Forum nutzen]]&lt;br /&gt;
[[fr:Afficher un forum]]&lt;br /&gt;
[[ja:フォーラムの閲覧]]&lt;/div&gt;</summary>
		<author><name>Rexlorenzo</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/34/en/index.php?title=Using_Forum&amp;diff=103751</id>
		<title>Using Forum</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/34/en/index.php?title=Using_Forum&amp;diff=103751"/>
		<updated>2013-03-26T21:20:55Z</updated>

		<summary type="html">&lt;p&gt;Rexlorenzo: Added note that moving a forum post will result in incorrect report in course participantion&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Forum}}&lt;br /&gt;
The teacher can set the format of what the student sees under the introduction by selecting the forum type in [[Forum settings]].&lt;br /&gt;
&lt;br /&gt;
==Views==&lt;br /&gt;
&lt;br /&gt;
===A single simple discussion===&lt;br /&gt;
&lt;br /&gt;
Students will see the text you have placed in the [[Adding/editing_a_forum#Forum_introduction|Forum introduction setting]] as the first post of the discussion. Below you will find the replies that have been posted.  In the example below, the student sees that their reply was rated.&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
| [[File:Forum homepage view Simple student mu.png|thumb|Student view of &amp;quot;A single simple discussion&amp;quot; forum type]]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Each person posts one discussion===&lt;br /&gt;
The view will be basically the same as in the previous case, the only difference being the &#039;Add a new discussion&#039; option. Viewing a forum page, the student will see the text you have written at the &#039;Forum introduction&#039; space while creating the forum, and, if there are any, the discussions that have been started. &lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
| [[File:Forum homepage view Single student mu.png|thumb|Student view of &amp;quot;Each person posts one discussion&amp;quot; forum type]]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Standard forum for general use===&lt;br /&gt;
&lt;br /&gt;
In this forum type, students will see the introduction text in a separate space above the discussion field, in which you will see the information such as the title of the discussion (which means the forum&#039;s title), its author, the number of replies and the date of the last post. &lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
| [[File:Forum homepage view student mu.png|thumb|Student view of &amp;quot;Standard forum&amp;quot; type]]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
===Question and Answer forum===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
| [[File:QA1.png|thumb|Inital view of Q&amp;amp;A forum]]&lt;br /&gt;
| [[File:QA2.png|thumb|Students cannot see posts until they post]]&lt;br /&gt;
| [[FIle:QA3.png|thumb|Other posts visible when editing time is over]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Standard forum displayed in blog-like format===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
| [[File:Bloglikeforum.png|thumb|Blog like forum]]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In the upper right corner of the home forum screen (above the introduction), the student may see the options the teacher has set for [[Adding/editing_a_forum#Force_everyone_to_be_subscribed.3F|subscriptions to the forum]], and the &#039;Jump to&#039; field, with which you can &#039;jump&#039; to any part of the course. This is also place where the teacher will find the &amp;quot;Update this forum&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
==Display options==&lt;br /&gt;
[[Image:forumviewoptions.jpg|thumb|Reply display options]]A discussion thread may be displayed in four ways. Use the pull down menu at the top of each forum discussion to select a display type.&lt;br /&gt;
&lt;br /&gt;
* Display replies flat, with oldest first&lt;br /&gt;
* Display replies flat, with newest first - The discussion will be displayed in one line and the chronological order from the newest to the oldest.  This is the same as the above, just a different sort order.&lt;br /&gt;
* Display replies in threaded form - Only the post starting the discussion will be displayed in its full form; replies will be reduced to the headlines (including information about its author and date of release) and organized chronologically; moreover, replies will be shifted towards the right so that only replies to the same post were in the same line.&lt;br /&gt;
* Display replies in nested form - All posts are displayed in their full forms; replies will be reduced to the headlines (including information about its author and date of release) and organized chronologically; moreover, replies will be shifted towards the right so that only replies to the same post were in the same line.&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
| [[Image:Forum Flat form mu.png|thumb|Flat Forum discussion, example from middle]]&lt;br /&gt;
| [[Image:Forum threaded form mu.png|thumb|Posts in threaded form]]&lt;br /&gt;
| [[Image:Forum nested form mu.png|thumb|&amp;quot;Nested reply example&amp;quot;]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Forum posting==&lt;br /&gt;
&lt;br /&gt;
The default content of &#039;&#039;&#039;Subject&#039;&#039;&#039; is usually &#039;Re: &amp;lt;the name of the &#039;parent&#039; post&amp;gt;&#039;. You can change it though. &lt;br /&gt;
&lt;br /&gt;
When writing text in Moodle there are several formats you can choose to produce your text, depending on your expertise and the type of browser you are using. Please refer to [[Formatting text]] for further information.&lt;br /&gt;
&lt;br /&gt;
=== Sharing images through forums ===&lt;br /&gt;
&lt;br /&gt;
*When an image is &amp;quot;attached&amp;quot; as a file to a forum message, it is immediately displayed full size after the message (i.e. no need to click on an attachment).  This an excellent way of sharing images without having to go through the process of uploading them as files and linking them from within web pages. &lt;br /&gt;
&lt;br /&gt;
*Images may be dragged and dropped into the box as well as uploading via the &amp;quot;add&amp;quot; link and the [[File picker]].&lt;br /&gt;
&lt;br /&gt;
[[File:forumdragdrop.png]]&lt;br /&gt;
&lt;br /&gt;
===Sharing sound and video through forums===&lt;br /&gt;
*If multimedia filters are enabled, a sound file (mp3) or accepted video file can be attached and it will be embedded into the forum post in an appropriate player.&lt;br /&gt;
*As with images in the previous section, multimedia files may be dragged and dropped from the desktop instead of uploaded via the [[File picker]].&lt;br /&gt;
&lt;br /&gt;
===Post length===&lt;br /&gt;
&lt;br /&gt;
Extra-long posts cause problems when doing a forum search and can be difficult to read on screen. Rather than creating a very long post, consider copying and pasting the text into a text file and add it as an attachment to your forum post. &lt;br /&gt;
&lt;br /&gt;
===Post editing time limit===&lt;br /&gt;
&lt;br /&gt;
There is a time limit for editing posts, usually 30 minutes. It is set by an administrator in &#039;&#039;Administration &amp;gt; Security &amp;gt; [[Site policies]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The Using Moodle forum discussion [http://moodle.org/mod/forum/discuss.php?d=5367 The philosophy underlying &amp;quot;no editing after 30 minutes&amp;quot;] includes reasons why it is a good idea to have a time limit for editing posts.&lt;br /&gt;
&lt;br /&gt;
===Mail now===&lt;br /&gt;
&lt;br /&gt;
A mail now checkbox is available for anyone with the [[Capabilities/moodle/course:manageactivities|capability to manage course activities]], normally teachers and admins.&lt;br /&gt;
&lt;br /&gt;
Checking the &amp;quot;Mail now&amp;quot; box results in an email being sent immediately (i.e. when the [[Cron|cron]] next runs) to everyone subscribed to the forum, rather than after the post editing time limit. &lt;br /&gt;
&lt;br /&gt;
==Exporting forum posts==&lt;br /&gt;
Users with the &#039;&#039;mod/forum:exportdiscussion&#039;&#039; or &#039;&#039;mod/forum:exportownpost&#039;&#039; or &#039;&#039;mod/forum:exportpost&#039;&#039; permission can export forum posts to any portfolio the administrator has enabled:&lt;br /&gt;
&lt;br /&gt;
[[File:Exportforum.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Moving a discussion==&lt;br /&gt;
&lt;br /&gt;
Teachers and other users with the [[Capabilities/mod/forum:movediscussions|capability to move discussions]] can move a discussion to any other forum in the course for which they have appropriate rights.&lt;br /&gt;
# Click on the arrow in the &#039;Move this discussion to...&#039; dropdown menu in the top right corner of the page and select a destination forum.&lt;br /&gt;
# Click the Move button.&lt;br /&gt;
&lt;br /&gt;
NOTE: Moving a forum post will display incorrect results in the course participation report for the affected forums. For example, take a student who posted in forum A and had their post moved to forum B. In the course participation report the student will still be listed has having made a post in forum A, but will not be listed as having made a post yet in forum B.&lt;br /&gt;
&lt;br /&gt;
==Guidelines for Teaching and Learning Forums==&lt;br /&gt;
&lt;br /&gt;
When you decide to use a discussion forum as an activity in an e-learning environment, it is important to be aware that your time will be needed in some sense in order to make the activity successful. If your goal is to encourage discussion, the forum will only work if: &lt;br /&gt;
&lt;br /&gt;
a) &#039;&#039;&#039;participants feel there is a need/reason to participate and they will gain something from the experience.&#039;&#039;&#039; Incentives for learning, gathering support, etc. should be explored and encouraged early on in order to clearly convey the purpose of the forum to others. Anyone considering offering grades or marks for participation is advised to think very carefully about the difference between quantity and quality of discussions in forums.&lt;br /&gt;
&lt;br /&gt;
b) a sense of community and purpose can be fostered amongst participants. This sense of community can be fostered through tutor/teacher initiative and scaffolding, or primarily through the students/participants themselves depending on the intentions of the activity.&lt;br /&gt;
&lt;br /&gt;
==Selecting forum type==&lt;br /&gt;
&lt;br /&gt;
Moodle has four kinds of forums each with a slightly different [[Viewing a forum|layout]] and purpose.&lt;br /&gt;
&lt;br /&gt;
Which of the forums will best suit your needs for a particular activity? In order to answer this question, it is useful to think how you might lead such a discussion in a face-to-face environment. Would you throw the question out to the class and sit back to observe them in their answers? Or would you break them up into smaller groups first and ask them to have discussions with a partner before bringing them back to the main group? Or perhaps you would like to keep them focused on a particular aspect of a question and ensure that they do not wander away from the topic at hand? All of the above approaches are both valid and useful, depending on your learning outcomes, and you can replicate all of them in Moodle forums.&lt;br /&gt;
&lt;br /&gt;
===A standard forum for general use===&lt;br /&gt;
The standard forum ([[Viewing_a_forum#Standard_forum_for_general_use|view here]]) probably most useful for large discussions that you intend to monitor/guide or for social forums that are student led. This does not mean that you need to make a new posting for each reply in each topic, although, in order to ensure that the discussion does not get &#039;out of control&#039;, you may need to be prepared to spend a significant amount of time finding the common threads amongst the various discussions and weaving them together. Providing overall remarks for particular topics can also be a key aspect of your responsibilities in the discussion. Alternatively, you could ask students to summarize discussion topics at agreed points, once a week or when a thread comes to an agreed conclusion. Such a learner-centred approach may be particularly useful once the online community has been established and, perhaps, when you have modeled the summarizing process.&lt;br /&gt;
&lt;br /&gt;
===A single simple discussion=== &lt;br /&gt;
The simple forum ([[Viewing_a_forum#A_single_simple_discussion|view here]]) is most useful for short/time-limited discussion on a single subject or topic. This kind of forum is very productive if you are interested in keeping students focused on a particular issue. &lt;br /&gt;
&lt;br /&gt;
===Each person posts one discussion===&lt;br /&gt;
This forum ([[Viewing_a_forum#Each_person_posts_one_discussion|view here]]) is most useful when you want to achieve a happy medium between a large discussion and a short and focused discussion. A single discussion topic per person allows students a little more freedom than a single discussion forum, but not as much as a standard forum where each student can create as many topics as he or she wishes. Successful forums of this selection can be active, yet focused, as students are not limited in the number of times they can respond to others within threads.&lt;br /&gt;
&lt;br /&gt;
===Question and Answer forum=== &lt;br /&gt;
The Q &amp;amp; A forum ([[Viewing_a_forum#Question_and_Answer_forum|view here]]) is best used when you have a particular question that you wish to have answered. In a Q and A forum, tutors post the question and students respond with possible answers. By default a Q and A forum requires students to post once before viewing other students&#039; postings. After the initial posting and once the editing time (usually 30 minutes) has elapsed, students can view and respond to others&#039; postings. This feature allows equal initial posting opportunity among all students, thus encouraging original and independent thinking. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Note:&#039;&#039; Students do not see the &amp;quot;add a new question&amp;quot; button in the Q &amp;amp; A forum. If you wish students to be able to add new questions, they need to be given the capability [[Capabilities/mod/forum:addquestion|mod/forum:addquestion]]&lt;br /&gt;
&lt;br /&gt;
===Standard forum displayed in blog-like format===&lt;br /&gt;
This forum  behaves in the same way as the default standard forum for general use, allowing users to start their own discussions. However, it displays differently in that the first post of each discussion is displayed (as in a blog) so that users can read it and then choose to respond by clicking the &amp;quot;Discuss this topic&amp;quot; button bottom right of the post.&lt;br /&gt;
&lt;br /&gt;
====Tips for Question and Answer====&lt;br /&gt;
When the Question and Answer mode is selected, Moodle hides the replies to the initial thread post by the teacher but not the entire forum itself. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;Tip:&#039;&#039; Post each question as a thread in the forum and then have students post replies to the question. In this fashion, Moodle will protect the replies from being viewable (subject to the caveat above) by other students but allow the initial post/thread visible for reply by all students.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;Tip:&#039;&#039; Do not post the question in the forum summary because every student answer will become a thread and visible to all students. In this scenario, it may appear as if the Question and Answer forum is not working correctly, since the new initial posts in the thread are intentionally designed not to be hidden, just their replies.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;Tip:&#039;&#039; If you have set up groups for your forum the facilitator needs to post a question to each of the groups and not to &#039;all participants&#039; as questions asked of all participants (students) are able to be read by ALL students. Questions posed to group members are only visible to those group members and replies are only visible once a group member has posted a message.&lt;br /&gt;
&lt;br /&gt;
==Forum subscription==&lt;br /&gt;
&lt;br /&gt;
When a person is &#039;&#039;&#039;subscribed&#039;&#039;&#039; to a forum it means that they will be notified (according to their [[Messaging settings]] preferences) of every subsequent post in that forum. Posters have 30 minutes by default to edit their post before it is sent though this time limit can be changed by an administrator.&lt;br /&gt;
&lt;br /&gt;
People can usually choose whether or not they want to be subscribed to each forum. However, if a teacher forces subscription on a particular forum then this choice is taken away and everyone in the class will get notified.This is especially useful in the News forum and in forums towards the beginning of the course (before everyone has worked out that they can subscribe to these emails themselves).&lt;br /&gt;
&lt;br /&gt;
Note that even if you force subscriptions every user can elect not to  be notified in  [[Messaging settings]], or elect to have all email sent once a day in a digest contain either all posts or simply the subject headings.&lt;br /&gt;
&lt;br /&gt;
Choosing &#039;&#039;Everyone can choose to be subscribed&#039;&#039; enables you to check (and modify) the number of subscribers (&#039;&#039;Settings &amp;gt; Forum administration &amp;gt; Show/edit current subscribers&#039;&#039;) and to subscribe to (or unsubscribe from) the forum (&#039;Subscribe to this forum&#039; / &#039;Unsubscribe from this forum&#039;).&lt;br /&gt;
&lt;br /&gt;
An overview of your forum subscriptions is available on the forums index page e.g. http://moodle.org/mod/forum/index.php?id=5&lt;br /&gt;
&lt;br /&gt;
==Concepts for use in forums==&lt;br /&gt;
===Participation and Scaffolding ===&lt;br /&gt;
&lt;br /&gt;
Whilst one of the great advantages of e-learning is the flexibility it affords participants, this does not mean that days or weeks should pass without response and discussion in a forum (unless it is appropriate for it to do so). This is perhaps most especially true at the beginning of a course or programme when students and tutors are new to each other and in need of welcome messages/encouragement. Whilst e-learning, and discussions in particular, can support learning that is not always tutor/teacher-centred, your role will be important, especially as an online community begins to develop. It is during these initial stages of introductory material that a group of students can become a community of participants who begin to grow in their understandings of course material and individual contributions to the knowledge construction process.&lt;br /&gt;
&lt;br /&gt;
As the discussions progress and learners become accustomed to the mechanics and the tone of the forums then there are key ways in which your input can be reduced, thereby helping to foster a community that is less dependent on the tutor/teacher. Even then, however, you will probably want to be a presence in the discussions although you may choose to be one of many contributors rather than the font of all wisdom.&lt;br /&gt;
&lt;br /&gt;
===Commitment and Participation===&lt;br /&gt;
&lt;br /&gt;
Ask yourself if&lt;br /&gt;
&lt;br /&gt;
# you wish to have involvement in the forum or if you want the students to lead and own the space&lt;br /&gt;
# you want the forum to add value to the face to face environment or have a life of its own in its own right outside the lecture theatre/classroom or seminar room&lt;br /&gt;
# you are prepared to make appropriate contributions to the discussion in order to: &lt;br /&gt;
## encourage discussion if students are quiet&lt;br /&gt;
## help shape ideas if students begin to wander off-task&lt;br /&gt;
## your role will be defined as discussions/a course progresses &lt;br /&gt;
## you will explicitly but gradually relinquish control of the discussions&lt;br /&gt;
## you will encourage and support learners to share control of discussions(for example you might ask a learner/group of learners to summarise contributions to a discussion thread/topic or you might ask learners to initiate discussion topics)&lt;br /&gt;
&lt;br /&gt;
===Student Centered Forums===&lt;br /&gt;
&lt;br /&gt;
With the growing popularity of social networking software like Facebook, Bebo, MySpace and the like, students are leaving schools and coming to Higher and Further Education with a new technological sophistication and with new expectations for communication. And as school, colleges and universities recognise that reflective and life long learning are significant goals in education, student centered learning and the creation of student centered spaces online are also gaining credence in educational settings. We know that effective learning requires access to social and academic networks for both study material and emotional support; as such, online communities can offer a holistic knowledge construction and support mechanism and recognize that affective activity is effective. &lt;br /&gt;
&lt;br /&gt;
Social forums, often called ‘Virtual Cafes’ or ‘Common Rooms’ can be set up for courses or for programmes, depending on the student need. Such spaces provide a common area for students to come together and discuss unlimited topics, including social activities and educational ideas. They are supportive spaces for students, most successful with large first and second year courses where students would not otherwise have the opportunity to communicate with others outside their own tutorial group. It is arguable that students will experience a greater sense of community within and a sense of belonging to an educational institution or individual department having had the experience and convenience of the social forum on their course; this could arguably have implications for retention.&lt;br /&gt;
&lt;br /&gt;
These spaces are typically highly active, especially in first term. Depending on your institution, they are usually self monitored by students, who understand that the same ‘rules’ and ‘netiquette’ that apply to them within any computing space, also apply in Moodle.&lt;br /&gt;
&lt;br /&gt;
===The News Forum===&lt;br /&gt;
&lt;br /&gt;
Moodle courses automatically generate a [[News forum]] which defaults to automatically subscribe all participants in a course. The name of the News Forum can be changed to something more appropriate, such as ‘Important Announcements’ or the like. This is a useful feature and many use this forum in a Moodle course to announce exam dates, times or changes to exams, lectures or seminars, as well as important information about course work throughout a term or special announcements relating to events.&lt;br /&gt;
&lt;br /&gt;
===Teacher/Tutor forums===&lt;br /&gt;
A teacher/tutor-only forum may be added to a course by creating a hidden forum. Teachers are able to view hidden course activities whereas students cannot.&lt;br /&gt;
&lt;br /&gt;
==Some forum suggestions to consider==&lt;br /&gt;
&lt;br /&gt;
#If your course is at a distance, if your face to face time is limited, or if you just wish to foster a sense of community in your Moodle course which supplements your face to face course, it is good practice to begin with a welcome or introductory message or thread in one of your forums. This welcome or introduction from you invites participants, for example, to post some specific details to introduce themselves to you and their peers. This can be your icebreaker or you can have an icebreaker separately.&lt;br /&gt;
#If you have two questions for participants to answer, starting the two strands or topics within the forum itself will both help learners to see where to put their responses, and remind them to answer all parts of your question.&lt;br /&gt;
#Remember that you are communicating in an environment that does not have the benefit of verbal tone, eye contact, body language and the like. Careful consideration of your communication is, therefore, necessary.&lt;br /&gt;
#Postings to a forum are always written but they can take different forms and you may wish to consider what form best suits the activity. For instance, you might choose to articulate a form of contribution in order to be explicit. Thus you might say, &#039;This is a think-aloud forum in which, together, we will try to tease out ideas and possibilities&#039; or &#039;This is a formal forum in which you are invited to share your ideas on (topic)&#039; and, where you select the latter, you might have already suggested learners plan those ideas offline or in another kind of activity within Moodle.&lt;br /&gt;
#Create a forum where only the teacher can start discussions, but the students can only reply. Each thread you start contains an essay question (or several similar ones). The students make a bullet point plan for the essay and post it as a reply. This works well as a revision strategy as the students can see how others have approached the same task. Once everyone has posted their plan, you can start a discussion as to which plans seem better and why. Creating a scale to use for rating the posts can be useful so that the students can see how helpful other people think their effort were. (Note: At this time, there is no option to hide the &amp;quot;Add new discussion topic&amp;quot; button, so you need to tell your students not to start discussion threads, but to only reply to threads started by the teacher. If you only need one thread, then you can use the &amp;quot;a single simple discussion&amp;quot; format and the &amp;quot;Add new discussion topic&amp;quot; button is not available to the students.)&lt;br /&gt;
&lt;br /&gt;
===Grading forums===&lt;br /&gt;
&lt;br /&gt;
The teacher can use the [[Forum ratings|ratings]] [[Scales|scales]] to [[Grades|grade]] student activities in a forum. There are several methods for calculating the grade for a forum that can be found in the [[Adding/editing_a_forum#Grade|Forum settings under grades]]. There are 5 ways to [[Adding/editing_a_forum#Aggregate_type|aggregate ratings]] automatically to calculate a forum grade for the [[Gradebook]]. These include: Average, Max, Min, Count and Sum.&lt;br /&gt;
&lt;br /&gt;
==Forum ratings allow users to evaluate posts in a forum==&lt;br /&gt;
&lt;br /&gt;
Forum ratings use [[Scales]] to standardize the reporting of performance. A forum rating can be included as part of a student&#039;s [[Grades|grade]].  For example, a teacher might use a custom rating scale in a forum and allow students to rate forum posts.&lt;br /&gt;
&lt;br /&gt;
Forum ratings must be allowed and the potential rater must have [[Roles|role]] permission. Teachers by default have this ability.  The teacher role is also able to give permission to a [[Student|student role]] in a specific forum to be able to assign a rating to a post. Forum settings and [[Forum_permissions#Enabling_students_to_rate_posts| Enabling student ratings]] has more information.     &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===How to use===&lt;br /&gt;
[[Image:Forum rating example1 mu.png|thumb|Teacher view of a previously rated student post]]When rating is allowed, the qualified user will see &amp;quot;Rate this post&amp;quot; and a pull down menu after an entry (not their own).  The menu displays a [[Scales|scale]] that the forum creator selected in the [[Adding/editing_a_forum#Grade|Forum grade settings]]. The user can rate more than one post at a time.  When finished they should click the &amp;quot;submit my ratings&amp;quot; button at the bottom of the page.   &lt;br /&gt;
&lt;br /&gt;
===AJAX forum rating===&lt;br /&gt;
&lt;br /&gt;
Forum rating can be made more user-friendly with the use of AJAX. Users can rate forum posts almost instantly without needing to scroll to the bottom of the page and click the &amp;quot;Send in my latest ratings&amp;quot; button. &lt;br /&gt;
&lt;br /&gt;
AJAX forum rating requires AJAX to be enabled by an administrator in &#039;&#039;Settings &amp;gt; Site administration &amp;gt; Appearance &amp;gt; [[AJAX and Javascript settings|AJAX and Javascript]]&#039;&#039; and by users in their [[Edit profile|user profile]].&lt;br /&gt;
&lt;br /&gt;
===Separate and connected knowing===&lt;br /&gt;
You can  rate forum posts with the [[Separate_and_Connected_Knowing| Separate and Connected Knowing]] scale here.&lt;br /&gt;
&lt;br /&gt;
===Best Practice and shared discussions===&lt;br /&gt;
*There are lots of discussions about Forum best use and Forum assessment in the Teaching Strategies Forum http://moodle.org/mod/forum/view.php?id=41.&lt;br /&gt;
&lt;br /&gt;
*A useful discussion about Forum assessment can be found here http://moodle.org/mod/forum/discuss.php?d=66008.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
* Using Moodle [http://moodle.org/mod/forum/view.php?f=116 Forum module]&lt;br /&gt;
*[http://www.moodleblog.onet/?page_id=148 Peer Assessment using a Moodle Forum] blog post with screencast&lt;br /&gt;
&lt;br /&gt;
Using Moodle forum discussions:&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=5367 The philosophy underlying &amp;quot;no editing after 30 minutes&amp;quot;]&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=66008 Best Practices for grading discussions]&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=88000 Two Courses, One Forum?]&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=93304 Using a forum for 1 to 1 teaching]&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=95470 Technicalities of managing a Forum]&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=67360 Role names showing next to posting photos]&lt;br /&gt;
&lt;br /&gt;
[[de: Forum nutzen]]&lt;br /&gt;
[[fr:Afficher un forum]]&lt;br /&gt;
[[ja:フォーラムの閲覧]]&lt;/div&gt;</summary>
		<author><name>Rexlorenzo</name></author>
	</entry>
</feed>