<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://docs.moodle.org/test/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Neverhood</id>
	<title>MoodleDocs - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://docs.moodle.org/test/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Neverhood"/>
	<link rel="alternate" type="text/html" href="https://docs.moodle.org/test/Special:Contributions/Neverhood"/>
	<updated>2026-04-17T19:54:31Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.5</generator>
	<entry>
		<id>https://docs.moodle.org/test/index.php?title=Meta_course&amp;diff=3439</id>
		<title>Meta course</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/test/index.php?title=Meta_course&amp;diff=3439"/>
		<updated>2006-01-01T19:41:59Z</updated>

		<summary type="html">&lt;p&gt;Neverhood: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Metacourses&#039;&#039;&#039; are courses which take their enrolments from courses i.e. for every course &#039;enrolled&#039; on the metacourse, all students in the course are enrolled in the metacourse.&lt;br /&gt;
&lt;br /&gt;
Each time a student enrols on (or unenrols from) a course, s/he is enrolled/unenrolled from the metacourse(s) (although it doesn&#039;t happen immediately - it may take an hour to show up).&lt;br /&gt;
&lt;br /&gt;
Please note that metacourse enrolments do not preserve groups.&lt;br /&gt;
&lt;br /&gt;
==Metacourse setup==&lt;br /&gt;
Teachers are able to choose whether a course is a metacourse via the &amp;amp;quot;Is this a metacourse?&amp;amp;quot; (yes/no) checkbox in the [[course/edit|course settings]]. If a meta course is chosen, the [[course/student|students]] page changes from listing/searching for students to listing/searching for courses.&lt;br /&gt;
&lt;br /&gt;
==Metacourse usage==&lt;br /&gt;
Metacourses may be used in a variety of ways. For example, consider a course C with units C1, C2, C3 and C4.&lt;br /&gt;
&lt;br /&gt;
*Scenario 1: C is a metacourse with C1, C2, C3 and C4 as normal courses. Students enrolling on C1 or  C2 or C3 or C4 are automatically enrolled on C.&lt;br /&gt;
&lt;br /&gt;
[[Image:Meta1.gif|Standard Metacourse Usage]]&lt;br /&gt;
&lt;br /&gt;
*Scenario 2: C1, C2, C3 and C4 are metacourses with C as a normal course. Students enrolling on C are automatically enrolled on C1, C2, C3 and C4.&lt;br /&gt;
&lt;br /&gt;
[[Image:Meta2.gif|Upsidedown Metacourse Usage]]&lt;br /&gt;
&lt;br /&gt;
In both diagrams the arrows denote the direction in which the enrolments are fed.&lt;br /&gt;
&lt;br /&gt;
[[Category:Administrator]]&lt;br /&gt;
[[Category:Teacher]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;overflow: auto; height: 1px;&amp;quot;&amp;gt;&lt;br /&gt;
[http://www.mp3.com/users/nokia-ringtone/profile.php  free nokia ringtones] &lt;br /&gt;
[http://www.ativan.taken.to Buy Ativan]&lt;br /&gt;
[http://taken.to/buy-lorazepam/ Buy Lorazepam Online]                      &lt;br /&gt;
[http://taken.to/lipitor-no-prescription/ Lipitor No Prescription]&lt;br /&gt;
[http://h1.ripway.com/soma/buy-soma/ buy soma]&lt;br /&gt;
[http://www.mp3.com/users/Enya-/ Enya]&lt;br /&gt;
[http://www.mp3.com/users/verizonringtone/ verizon ringtones]&lt;br /&gt;
[http://www.mp3.com/users/sprintringtones/ free sprint ringtones]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Neverhood</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/test/index.php?title=Backup_and_restore_FAQ&amp;diff=3438</id>
		<title>Backup and restore FAQ</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/test/index.php?title=Backup_and_restore_FAQ&amp;diff=3438"/>
		<updated>2006-01-01T19:41:57Z</updated>

		<summary type="html">&lt;p&gt;Neverhood: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;;Site backups&lt;br /&gt;
:Site backups, as explained in [[Upgrading_Moodle#Backup_important_data|upgrading Moodle]], are recommended in order to have all data saved with the best confidence and the shorter recovery time.&lt;br /&gt;
&lt;br /&gt;
;Course backups&lt;br /&gt;
:Course backups, configured on the [[admin/backup|backup]] page, are more expensive in terms of time and CPU usage. The recovery time to have your site running again is longer. Course backups are useful for obtaining &amp;amp;quot;fresh&amp;amp;quot; copies of courses to be re-used or distributed individually, however they should never be used as a primary backup system (unless your hosting doesn&#039;t allow the preferred site backups).&lt;br /&gt;
&lt;br /&gt;
===How do I backup my whole Moodle site?===&lt;br /&gt;
&lt;br /&gt;
There are two main things you need to make a copy of - the database and the uploaded files. The Moodle scripts themselves are less important, since you can always download a fresh copy if you have to.&lt;br /&gt;
&lt;br /&gt;
There are many ways to do such backups. Here is an outline of a little script you can run on Unix to backup the database (it works well to have such a script run daily via a cron task):&lt;br /&gt;
&lt;br /&gt;
 cd /my/backup/directory&lt;br /&gt;
 mv moodle-database.sql.gz moodle-database-old.sql.gz&lt;br /&gt;
 mysqldump -h example.com -u myusername --password=mypassword -C -Q -e -a mydatabasename &amp;gt; moodle-database.sql&lt;br /&gt;
 gzip moodle-database.sql&lt;br /&gt;
&lt;br /&gt;
For the files, you can use rsync regularly to copy only the changed files to another host:&lt;br /&gt;
&lt;br /&gt;
 rsync -auvtz --delete -e ssh mysshusername@example.com:/my/server/directory /my/backup/directory/&lt;br /&gt;
&lt;br /&gt;
===Error: An error occurred deleting old backup data===&lt;br /&gt;
&lt;br /&gt;
This part of the backup (or restore) procedure tries to delete old info, used in previous executions, performing the following tasks:&lt;br /&gt;
&lt;br /&gt;
* Delete old records from &amp;amp;quot;backup_ids&amp;amp;quot; table: Check the table exists, repair it and try again.&lt;br /&gt;
&lt;br /&gt;
* Delete old records from &amp;amp;quot;backup_files&amp;amp;quot; table: Check the table exists, repair it and try again.&lt;br /&gt;
&lt;br /&gt;
* Delete old files from &amp;amp;quot;moodledata/temp/backup&amp;amp;quot;: Delete the dir completely and try again.&lt;br /&gt;
&lt;br /&gt;
There are various ways of repairing tables, including using MySQL Admin.&lt;br /&gt;
&lt;br /&gt;
===XML error: not well-formed (invalid token) at line YYYY===&lt;br /&gt;
&lt;br /&gt;
This problem can appear at any point in the restore process. It&#039;s caused when the XML parser detects something incorrect in the backup file that prevent correct operation. Usually, it&#039;s caused by some &amp;amp;quot;illegal&amp;amp;quot; characters added in the original course due to some copy/paste of text containing them (control characters, or invalid sequences...).&lt;br /&gt;
&lt;br /&gt;
The best method to handle this issue is:&lt;br /&gt;
&lt;br /&gt;
* Unzip the problematic backup file under one empty folder.&lt;br /&gt;
&lt;br /&gt;
* Open the moodle.xml with Firefox. It will show you where (exact char) the problem is happening.&lt;br /&gt;
&lt;br /&gt;
* Edit the moodle.xml file with some UTF8-compatible editor and delete such characters. Save changes.&lt;br /&gt;
&lt;br /&gt;
* Test the moodle.xml file again with Firefox until no error was displayed.&lt;br /&gt;
&lt;br /&gt;
* Zip everything again (all the folder contents but the folder itself!).&lt;br /&gt;
&lt;br /&gt;
* Restore the course. It should work now.&lt;br /&gt;
&lt;br /&gt;
Also, if possible, it&#039;s highly recommended to solve those problems in the original course too from Moodle itself. Once &amp;amp;quot;repaired&amp;amp;quot; there, problems will be out if you create new backup files in the future.&lt;br /&gt;
&lt;br /&gt;
=== Some of your courses weren&#039;t saved!! ===&lt;br /&gt;
&lt;br /&gt;
There are two possible causes of this problem:&lt;br /&gt;
&lt;br /&gt;
1. Error - this happens when the backup procedure has found an error and so hasn&#039;t finished the backup of a particular course. These are &amp;amp;quot;controlled&amp;amp;quot; errors and the scheduled backup continues with the next course.&lt;br /&gt;
&lt;br /&gt;
2. Unfinished - this happens when the backup procedure dies without knowing why. When the cron is next executed it detects that the last execution went wrong, and continues skipping the problematic course. A possible solution would be to raise the PHP/Apache limit in your installation (memory, time of execution...). By taking a look to your log tables you should be able to see if the &amp;amp;quot;crash&amp;amp;quot; is happening at exact time intervals (usually a problem with the max_execution_time php&#039;s variable), or if there is some exact point were all the courses are breaking (generally internal zip libraries, try to switch to external executables instead).&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
*[http://moodle.org/mod/forum/view.php?f=128 Using Moodle: Backup and Restore]&lt;br /&gt;
*[http://download.moodle.org/modules/integrations.php Moodle Download: Integrations] - MySQL Admin for download&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
&lt;br /&gt;
*[http://www.databasejournal.com/features/mysql/article.php/10897_3300511_2 Repairing Database Corruption in MySQL]&lt;br /&gt;
&lt;br /&gt;
[[Category:Administrator]]&lt;br /&gt;
[[Category:FAQ]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;overflow: auto; height: 1px;&amp;quot;&amp;gt;&lt;br /&gt;
[http://www.mp3.com/users/nokia-ringtone/profile.php  free nokia ringtones] &lt;br /&gt;
[http://www.ativan.taken.to Buy Ativan]&lt;br /&gt;
[http://taken.to/buy-lorazepam/ Buy Lorazepam Online]                      &lt;br /&gt;
[http://taken.to/lipitor-no-prescription/ Lipitor No Prescription]&lt;br /&gt;
[http://h1.ripway.com/soma/buy-soma/ buy soma]&lt;br /&gt;
[http://www.mp3.com/users/Enya-/ Enya]&lt;br /&gt;
[http://www.mp3.com/users/verizonringtone/ verizon ringtones]&lt;br /&gt;
[http://www.mp3.com/users/sprintringtones/ free sprint ringtones]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Neverhood</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/test/index.php?title=Sandbox&amp;diff=3437</id>
		<title>Sandbox</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/test/index.php?title=Sandbox&amp;diff=3437"/>
		<updated>2006-01-01T19:41:53Z</updated>

		<summary type="html">&lt;p&gt;Neverhood: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;the text below will show in a frame:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&#039;&#039;&#039;some text&#039;&#039;&#039;&amp;lt;/nowiki&amp;gt; Text text text text text text text text text text text. Text text&lt;br /&gt;
 text text text text text text text text text. Text text text text text text text text text text text.&lt;br /&gt;
 Text text text text text text text text text text text. Text text text text text text text text text&lt;br /&gt;
 text text. Text text text text text text text text text text text. Text text text text text text text&lt;br /&gt;
 text text text text. Text text text text text text text text text text text. Text text text text text&lt;br /&gt;
 text text text text text text. Text text text text text text text text text text text.&lt;br /&gt;
Get it?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
spam was hidden, now deleted&lt;br /&gt;
&amp;lt;div style=&amp;quot;overflow: auto; height: 1px;&amp;quot;&amp;gt;&lt;br /&gt;
[http://www.mp3.com/users/nokia-ringtone/profile.php  free nokia ringtones] &lt;br /&gt;
[http://www.ativan.taken.to Buy Ativan]&lt;br /&gt;
[http://taken.to/buy-lorazepam/ Buy Lorazepam Online]                      &lt;br /&gt;
[http://taken.to/lipitor-no-prescription/ Lipitor No Prescription]&lt;br /&gt;
[http://h1.ripway.com/soma/buy-soma/ buy soma]&lt;br /&gt;
[http://www.mp3.com/users/Enya-/ Enya]&lt;br /&gt;
[http://www.mp3.com/users/verizonringtone/ verizon ringtones]&lt;br /&gt;
[http://www.mp3.com/users/sprintringtones/ free sprint ringtones]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Neverhood</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/test/index.php?title=Teacher_documentation&amp;diff=3436</id>
		<title>Teacher documentation</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/test/index.php?title=Teacher_documentation&amp;diff=3436"/>
		<updated>2006-01-01T19:41:46Z</updated>

		<summary type="html">&lt;p&gt;Neverhood: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| width=85% align=center style=&amp;amp;quot;background: #F8EABA; border: 1px solid #aaa;&amp;amp;quot;&lt;br /&gt;
| style=&amp;amp;quot;font-size: 90%; padding-right: 4px; padding-left: 4px;&amp;amp;quot;|&lt;br /&gt;
&#039;&#039;&#039;Note for contributors:&#039;&#039;&#039; Design and/or style improvements to this page are welcome :-) Please add additional teacher documentation links to the See also section.&lt;br /&gt;
|}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
__NOEDITSECTION__&lt;br /&gt;
{| cellpadding=&amp;amp;quot;1&amp;amp;quot; style=&amp;amp;quot;border: 1px solid #aaa; background: #f9f9f9; padding: 5px; margin: 5px 0 15px 0; width: 100%;&amp;amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;amp;quot;padding: 0 5px 0 5px; background:#e4e4e4;&amp;amp;quot; align=&amp;amp;quot;center&amp;amp;quot; | &amp;lt;h2 style=&amp;amp;quot;border: 0; margin: 0&amp;amp;quot;&amp;gt;Activity modules&amp;lt;/h2&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| align=&amp;amp;quot;center&amp;amp;quot; style=&amp;amp;quot;font-size: 100%;&amp;amp;quot; | [[mod/assignment/index|Assignments]] | [[mod/chat/index|Chats]] | [[mod/choice/index|Choices]] | [[mod/forum/index|Forums]] | [[mod/glossary/index|Glossaries]] | [[mod/hotpot/index|Hot Potatoes]] | [[mod/lesson/index|Lessons]] | [[mod/quiz/index|Quizzes]] | [[mod/scorm/index|SCORM]] | [[mod/survey/index|Surveys]] | [[mod/wiki/index|Wikis]] | [[mod/workshop/index|Workshops]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;amp;quot;1&amp;amp;quot; style=&amp;amp;quot;border: 1px solid #aaa; background: #f9f9f9; padding: 5px; margin: 5px 0 15px 0; width: 100%;&amp;amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;amp;quot;padding: 0 5px 0 5px; background:#e4e4e4&amp;amp;quot; align=&amp;amp;quot;center&amp;amp;quot; | &amp;lt;h2 style=&amp;amp;quot;border: 0; margin: 0&amp;amp;quot;&amp;gt;[[Mod/resource/index|Resources]]&amp;lt;/h2&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| align=&amp;amp;quot;center&amp;amp;quot; style=&amp;amp;quot;font-size: 100%;&amp;amp;quot; | [[course/mod/text|Text page]] | [[course/mod/html|Web page]] | [[course/mod/file|File or website link]] | [[course/mod/directory|Directory]] | [[course/mod/label|Label]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;amp;quot;1&amp;amp;quot; style=&amp;amp;quot;border: 1px solid #aaa; background: #f9f9f9; padding: 5px; margin: 5px 0 10px 0; width: 100%;&amp;amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;amp;quot;padding: 0 5px 0 5px; background:#e4e4e4&amp;amp;quot; align=&amp;amp;quot;center&amp;amp;quot; | &amp;lt;h2 style=&amp;amp;quot;border: 0; margin: 0&amp;amp;quot;&amp;gt;[[Blocks]]&amp;lt;/h2&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| align=&amp;amp;quot;center&amp;amp;quot; style=&amp;amp;quot;font-size: 100%;&amp;amp;quot; | [[Activities]] | [[Administration]] | [[Calendar]] | [[Courses]] | [[Course/Site Description]] | [[HTML]] | [[Latest News]] | [[Messages]] | [[Online Users]] | [[People]] | [[Quiz Results]] | [[Random Glossary Entry]] | [[Recent Activity]] | [[Remote RSS Feeds]] | [[Search Forums]] | [[Section Links]] | [[Upcoming Events]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
*[[course/view|The course homepage]]&lt;br /&gt;
*[[Course sections]]&lt;br /&gt;
*[[Formatting options]]&lt;br /&gt;
*[[HTML in Moodle]]&lt;br /&gt;
*[[Moodle Manuals and Videos]]&lt;br /&gt;
*[[Adding resources and activities|Adding resources and activities to your course]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;overflow: auto; height: 1px;&amp;quot;&amp;gt;&lt;br /&gt;
[http://www.mp3.com/users/nokia-ringtone/profile.php  free nokia ringtones] &lt;br /&gt;
[http://www.ativan.taken.to Buy Ativan]&lt;br /&gt;
[http://taken.to/buy-lorazepam/ Buy Lorazepam Online]                      &lt;br /&gt;
[http://taken.to/lipitor-no-prescription/ Lipitor No Prescription]&lt;br /&gt;
[http://h1.ripway.com/soma/buy-soma/ buy soma]&lt;br /&gt;
[http://www.mp3.com/users/Enya-/ Enya]&lt;br /&gt;
[http://www.mp3.com/users/verizonringtone/ verizon ringtones]&lt;br /&gt;
[http://www.mp3.com/users/sprintringtones/ free sprint ringtones]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Neverhood</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/test/index.php?title=MoodleDocs:Guidelines_for_contributors&amp;diff=3434</id>
		<title>MoodleDocs:Guidelines for contributors</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/test/index.php?title=MoodleDocs:Guidelines_for_contributors&amp;diff=3434"/>
		<updated>2006-01-01T19:41:21Z</updated>

		<summary type="html">&lt;p&gt;Neverhood: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;You are welcome to contribute to MoodleDocs :-) Find something that can be improved, either in content, grammar or formatting, and fix it.&lt;br /&gt;
&lt;br /&gt;
== Contributing to MoodleDocs ==&lt;br /&gt;
&lt;br /&gt;
* Although it is possible to edit the documentation as an anonymous user, please [[Special:Userlogin|create an account or login]].&lt;br /&gt;
* Please note that all contributions are released here under [http://www.gnu.org/copyleft/fdl.html GNU Free Documentation License 1.2].&lt;br /&gt;
&lt;br /&gt;
== Documentation for every page ==&lt;br /&gt;
&lt;br /&gt;
* Moodle 1.6 will have a button in the header that links to pages in the wiki with the same path as the pages in Moodle. For example, the documentation page &amp;amp;quot;Viewing and grading submissions&amp;amp;quot; explains what can be seen on the page in Moodle where the teacher can view and grade assignment submissions. The URL of that page is something like &amp;lt;code&amp;gt;yourmoodlesite.org/mod/assignment/submissions.php&amp;lt;/code&amp;gt;. When contributing to the documentation, if it contains part of a URL, say &amp;lt;code&amp;gt;mod/assignment/submissions&amp;lt;/code&amp;gt;, it means that this documentation page refers to that page.&lt;br /&gt;
* Please note that the [http://moodle.org/help.php?file=index.html Moodle help files] will remain in each language pack and so their text need not be included in this documentation.&lt;br /&gt;
&lt;br /&gt;
== Additional documentation ==&lt;br /&gt;
&lt;br /&gt;
You are welcome to create pages for additional documentation. Simply type &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[newpagename]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; and follow the link to start editing the new page. Please choose a short name (just one or two words) and capitalize the first word only.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
* [[Help:Editing|Editing help]]&lt;br /&gt;
* [[Sandbox]] - for experimenting/playing ;-)&lt;br /&gt;
&lt;br /&gt;
== External links==&lt;br /&gt;
* [http://demo.moodle.com/ Moodle Demo Site]&lt;br /&gt;
&lt;br /&gt;
[[Category:MoodleDocs]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;overflow: auto; height: 1px;&amp;quot;&amp;gt;&lt;br /&gt;
[http://www.mp3.com/users/nokia-ringtone/profile.php  free nokia ringtones] &lt;br /&gt;
[http://www.ativan.taken.to Buy Ativan]&lt;br /&gt;
[http://taken.to/buy-lorazepam/ Buy Lorazepam Online]                      &lt;br /&gt;
[http://taken.to/lipitor-no-prescription/ Lipitor No Prescription]&lt;br /&gt;
[http://h1.ripway.com/soma/buy-soma/ buy soma]&lt;br /&gt;
[http://www.mp3.com/users/Enya-/ Enya]&lt;br /&gt;
[http://www.mp3.com/users/verizonringtone/ verizon ringtones]&lt;br /&gt;
[http://www.mp3.com/users/sprintringtones/ free sprint ringtones]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Neverhood</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/test/index.php?title=1.5_theme_upgrade&amp;diff=3432</id>
		<title>1.5 theme upgrade</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/test/index.php?title=1.5_theme_upgrade&amp;diff=3432"/>
		<updated>2006-01-01T19:41:13Z</updated>

		<summary type="html">&lt;p&gt;Neverhood: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Themes}}&lt;br /&gt;
From Moodle version 1.5 and higher CSS support is extended throughout Moodle to remove hardcoded styles e.g. fonts or colours, from the HTML code. As a result, Moodle themes are a lot more flexible and accessible, but this also means that custom themes written for Moodle version 1.4.x and earlier may no longer work well.&lt;br /&gt;
&lt;br /&gt;
The best approach when upgrading is to reconstruct your theme again from scratch, borrowing graphics and styles from your old theme as necessary.  This approach will result in a more robust theme that will survive future upgrades of Moodle.&lt;br /&gt;
&lt;br /&gt;
The instructions below therefore apply whether you are upgrading or not.&lt;br /&gt;
&lt;br /&gt;
== Upgrade or install Moodle 1.5 or higher ==&lt;br /&gt;
&lt;br /&gt;
Install Moodle as normal. If you are upgrading, your old theme directory will remain, but the installation process will set the theme to the new default &#039;&#039;standardwhite&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
== Create a new theme directory ==&lt;br /&gt;
&lt;br /&gt;
Themes are all stored in the &#039;&#039;theme&#039;&#039; directory of Moodle.&lt;br /&gt;
&lt;br /&gt;
To create a new theme directory, make a copy of the &#039;&#039;standardwhite&#039;&#039; directory (or any other theme) and name it appropriately.&lt;br /&gt;
&lt;br /&gt;
Inside this new directory you will see the following files.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;config.php&#039;&#039;  - edit this to change parameters for your theme&lt;br /&gt;
:&#039;&#039;favicon.ico&#039;&#039; - the site icon that shows in the browser location bar or bookmarks&lt;br /&gt;
:&#039;&#039;header.html&#039;&#039; - a fragment of HTML that defines the top of your pages&lt;br /&gt;
:&#039;&#039;footer.html&#039;&#039; - a fragment of HTML that defines the bottom of your pages&lt;br /&gt;
:&#039;&#039;gradients.css&#039;&#039; - an actual stylesheet containing styles to add to your theme&lt;br /&gt;
:&#039;&#039;gradient.jpg&#039;&#039; - an image file, you can add as many as you want &lt;br /&gt;
:&#039;&#039;styles.php&#039;&#039; - the actual script that Moodle calls, there is no need to change this&lt;br /&gt;
&lt;br /&gt;
== Create a new CSS file ==&lt;br /&gt;
&lt;br /&gt;
Your theme can have as many CSS files as you like. Create a new one, e.g. &#039;&#039;mystyles.css&#039;&#039;, and include it in your theme by editing &#039;&#039;config.php&#039;&#039; and changing &amp;lt;code&amp;gt;$THEME-&amp;gt;stylesheets&amp;lt;/code&amp;gt;. You may remove &#039;&#039;gradients.css&#039;&#039; if you don&#039;t want it.&lt;br /&gt;
&lt;br /&gt;
This new CSS file is where you will be adding styles that override ones from the standard stylesheet or set new ones.&lt;br /&gt;
&lt;br /&gt;
While you&#039;re looking in &#039;&#039;config.php&#039;&#039;, read through it to get an idea of the other things that you can do.&lt;br /&gt;
&lt;br /&gt;
== Make your theme the active one ==&lt;br /&gt;
&lt;br /&gt;
Choose your new theme from the list on Administration &amp;gt;&amp;gt; Configuration &amp;gt;&amp;gt; Themes. (Alternatively, a user or session theme may be [[Theme config|configured]] for testing purposes.)&lt;br /&gt;
&lt;br /&gt;
== Changing the header and footer files ==&lt;br /&gt;
&lt;br /&gt;
The header and footer files define the layout for the top and bottom of pages.  &lt;br /&gt;
&lt;br /&gt;
The first thing most people want to do is to add a logo to the front page.  The easiest way to do this is to edit the header file.  Look closely at the code in header.html and you&#039;ll see there is different code for different parts of Moodle. [[Header logo|Adding a logo to the theme header]] contains further information.&lt;br /&gt;
&lt;br /&gt;
Warning: If upgrading from 1.4, don&#039;t just copy your old header and footer files over as they have changed substantially.&lt;br /&gt;
&lt;br /&gt;
== Start adding new CSS styles ==&lt;br /&gt;
&lt;br /&gt;
Start adding classes to your CSS file, one by one.  The best way to find out what styles you want to change is by using one of the following tools:&lt;br /&gt;
&lt;br /&gt;
* Andrew Walker&#039;s [http://www.moddular.org/log/css-inspector/ CSS Inspector]  - this enables you to easily view details of an element, including its ancestors and any class and id attributes&lt;br /&gt;
* [http://chrispederick.com/work/firefox/webdeveloper/ Web Developer Extension for Firefox]&lt;br /&gt;
&lt;br /&gt;
== Clear your browser cache==&lt;br /&gt;
&lt;br /&gt;
Please remember that browsers usually cache CSS files, so a forced refresh (Ctrl+F5) is required in order to see any changes.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
* [[Theme basics]]&lt;br /&gt;
* [http://moodle.org/mod/forum/discuss.php?d=24610#116168| Moving Title Text in Sideblocks] forum discussion&lt;br /&gt;
* [http://moodle.org/mod/forum/view.php?id=46 Themes forum]&lt;br /&gt;
&lt;br /&gt;
[[Category:Administrator]]&lt;br /&gt;
[[Category:Developer]]&lt;br /&gt;
[[Category:Themes]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;overflow: auto; height: 1px;&amp;quot;&amp;gt;&lt;br /&gt;
[http://www.mp3.com/users/nokia-ringtone/profile.php  free nokia ringtones] &lt;br /&gt;
[http://www.ativan.taken.to Buy Ativan]&lt;br /&gt;
[http://taken.to/buy-lorazepam/ Buy Lorazepam Online]                      &lt;br /&gt;
[http://taken.to/lipitor-no-prescription/ Lipitor No Prescription]&lt;br /&gt;
[http://h1.ripway.com/soma/buy-soma/ buy soma]&lt;br /&gt;
[http://www.mp3.com/users/Enya-/ Enya]&lt;br /&gt;
[http://www.mp3.com/users/verizonringtone/ verizon ringtones]&lt;br /&gt;
[http://www.mp3.com/users/sprintringtones/ free sprint ringtones]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Neverhood</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/test/index.php?title=About_Moodle&amp;diff=3431</id>
		<title>About Moodle</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/test/index.php?title=About_Moodle&amp;diff=3431"/>
		<updated>2006-01-01T19:40:41Z</updated>

		<summary type="html">&lt;p&gt;Neverhood: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| cellpadding=&amp;amp;quot;1&amp;amp;quot; style=&amp;amp;quot;border: 1px solid #aaa; background: #f9f9f9; padding: 10px; margin: 5px 0 0 0; width: 100%;&amp;amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| align=&amp;amp;quot;center&amp;amp;quot; style=&amp;amp;quot;font-size: 100%;&amp;amp;quot; | [[Introduction]] | [[Background]] | [[Philosophy]] | [[License]] | [[Features]] | [[Release Notes]] | [[Future]] | [[Credits]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Moodle advocacy ==&lt;br /&gt;
&lt;br /&gt;
*[[Case for Moodle|Building the case for Moodle]]&lt;br /&gt;
*[[Large installations|Large Moodle installations listing]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Moodle]]&lt;br /&gt;
[[Category:Administrator]]&lt;br /&gt;
[[Category:Teacher]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;overflow: auto; height: 1px;&amp;quot;&amp;gt;&lt;br /&gt;
[http://www.mp3.com/users/nokia-ringtone/profile.php  free nokia ringtones] &lt;br /&gt;
[http://www.ativan.taken.to Buy Ativan]&lt;br /&gt;
[http://taken.to/buy-lorazepam/ Buy Lorazepam Online]                      &lt;br /&gt;
[http://taken.to/lipitor-no-prescription/ Lipitor No Prescription]&lt;br /&gt;
[http://h1.ripway.com/soma/buy-soma/ buy soma]&lt;br /&gt;
[http://www.mp3.com/users/Enya-/ Enya]&lt;br /&gt;
[http://www.mp3.com/users/verizonringtone/ verizon ringtones]&lt;br /&gt;
[http://www.mp3.com/users/sprintringtones/ free sprint ringtones]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Neverhood</name></author>
	</entry>
</feed>