<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.scaryrecords.org/index.php?action=history&amp;feed=atom&amp;title=Wiki_Build_Notes</id>
	<title>Wiki Build Notes - Revision history</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.scaryrecords.org/index.php?action=history&amp;feed=atom&amp;title=Wiki_Build_Notes"/>
	<link rel="alternate" type="text/html" href="http://wiki.scaryrecords.org/index.php?title=Wiki_Build_Notes&amp;action=history"/>
	<updated>2026-04-07T05:42:01Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.34.2</generator>
	<entry>
		<id>http://wiki.scaryrecords.org/index.php?title=Wiki_Build_Notes&amp;diff=643&amp;oldid=prev</id>
		<title>0degreesk: Created page with &quot;These are the steps that I took to customize this installation of [http://www.mediawiki.org/wiki/MediaWiki MediaWiki] (v. 1.15.2 – 2010-03-08) on the [http://www.hostmonster...&quot;</title>
		<link rel="alternate" type="text/html" href="http://wiki.scaryrecords.org/index.php?title=Wiki_Build_Notes&amp;diff=643&amp;oldid=prev"/>
		<updated>2020-09-21T01:19:04Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;These are the steps that I took to customize this installation of [http://www.mediawiki.org/wiki/MediaWiki MediaWiki] (v. 1.15.2 – 2010-03-08) on the [http://www.hostmonster...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;These are the steps that I took to customize this installation of [http://www.mediawiki.org/wiki/MediaWiki MediaWiki] (v. 1.15.2 – 2010-03-08) on the [http://www.hostmonster.com/ HostMonster] web hosting service.&lt;br /&gt;
&lt;br /&gt;
==Summary==&lt;br /&gt;
This is a &amp;#039;&amp;#039;&amp;#039;public&amp;#039;&amp;#039;&amp;#039;, &amp;#039;&amp;#039;&amp;#039;read-only&amp;#039;&amp;#039;&amp;#039; wiki with the ability for users to upload files.  &amp;quot;Short URL&amp;quot; functionality is enabled and InterWiki links are used to link to my private wiki at http://wiki.unionandparkwood.com.&lt;br /&gt;
* All content is viewable by the public&lt;br /&gt;
* User registration is forbidden&lt;br /&gt;
* File upload is permitted by users only&lt;br /&gt;
* &amp;quot;Short URL&amp;quot; functionality is enabled&lt;br /&gt;
* InterWiki links are allowed with http://wiki.unionandparkwood.com/&lt;br /&gt;
* Update site logo&lt;br /&gt;
&lt;br /&gt;
==Initial LocalSettings.php File Details==&lt;br /&gt;
The following lines of code must be &amp;#039;&amp;#039;&amp;#039;added&amp;#039;&amp;#039;&amp;#039; to the &amp;lt;tt&amp;gt;LocalSettings.php&amp;lt;/tt&amp;gt; file, preferably at the bottom of the existing code so that it&amp;#039;s easy to remember what was added. (For more configuration settings, see &amp;quot;[http://www.mediawiki.org/wiki/Manual:Configuration_settings MediaWiki Manual:Configuration Settings]&amp;quot;.)&lt;br /&gt;
&lt;br /&gt;
1) Setting the location of the favicon.ico manually (because it wasn&amp;#039;t updating correctly at first)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Setting the location of the favicon.ico manually&lt;br /&gt;
$wgFavicon = &amp;quot;http://wiki.60bpm.com/favicon.ico&amp;quot;;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
2) Prevent editing of pages by anyone except sysops&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Prevent editing of pages by anyone except sysops&lt;br /&gt;
$wgGroupPermissions[&amp;#039;*&amp;#039;][&amp;#039;edit&amp;#039;] = false;&lt;br /&gt;
$wgGroupPermissions[&amp;#039;user&amp;#039;][&amp;#039;edit&amp;#039;] = false;&lt;br /&gt;
$wgGroupPermissions[&amp;#039;sysop&amp;#039;][&amp;#039;edit&amp;#039;] = true;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
3) Prevent new user registrations except by sysops&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Prevent new user registrations except by sysops&lt;br /&gt;
$wgGroupPermissions[&amp;#039;*&amp;#039;][&amp;#039;createaccount&amp;#039;] = false;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
4) Update the logo path to point to my custom logo&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Add customized logo to skin&lt;br /&gt;
$wgLogo = &amp;quot;/siteflow/images/60bpmlogo.png&amp;quot;;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Allow File Uploading==&lt;br /&gt;
Modify permissions for the &amp;lt;tt&amp;gt;/images/&amp;lt;/tt&amp;gt; directory in the docroot to allow writing.&lt;br /&gt;
&lt;br /&gt;
===LocalSettings.php File Edits===&lt;br /&gt;
Allow file uploads. &amp;#039;&amp;#039;&amp;#039;NOTE:&amp;#039;&amp;#039;&amp;#039; this variable already exists in the &amp;lt;tt&amp;gt;LocalSettings.php&amp;lt;/tt&amp;gt; file and only needs to be changed.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$wgEnableUploads = true;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Just below this change, I add the following to allow more file types to be uploaded:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Allow the following file types to be uploaded&lt;br /&gt;
$wgFileExtensions = array(&amp;#039;png&amp;#039;, &amp;#039;gif&amp;#039;, &amp;#039;jpg&amp;#039;, &amp;#039;jpeg&amp;#039;,  &amp;#039;pdf&amp;#039;, &amp;#039;bmp&amp;#039;, &amp;#039;svg&amp;#039;, &amp;#039;psd&amp;#039;, &amp;#039;ai&amp;#039;, &amp;#039;mp3&amp;#039;, &amp;#039;mp4&amp;#039;, &amp;#039;m4v&amp;#039;);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Short URL Activation==&lt;br /&gt;
The MediaWiki &amp;quot;[http://www.mediawiki.org/wiki/Pretty_URL#Recommended_how-to_guide_.28setup_used_on_Wikipedia.29 Manual:Short URL -- Recommended How-To Guide]&amp;quot; on enabling Short URLs could not be used because my web host ([http://www.hostmonster.com/ HostMonster]) does not allow root access to the &amp;lt;tt&amp;gt;httpd.conf&amp;lt;/tt&amp;gt; file.  Instead, I had to use the &amp;quot;[http://www.mediawiki.org/wiki/Manual:Short_URL/wiki/Page_title_--_no_root_access Manual:Short URL -- no root access]&amp;quot; guide which uses the &amp;lt;tt&amp;gt;.htaccess&amp;lt;/tt&amp;gt; file.&lt;br /&gt;
&lt;br /&gt;
===LocalSettings.php File Edits===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Virtual path (left part of first rewrite rule). MUST be DIFFERENT from the path set above ($wgScriptPath)!&lt;br /&gt;
$wgArticlePath = &amp;quot;/article/$1&amp;quot;;&lt;br /&gt;
$wgUsePathInfo = true;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===.htaccess File===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Options +FollowSymlinks&lt;br /&gt;
RewriteEngine On&lt;br /&gt;
RewriteRule ^article/(.*)$ /index.php?title=$1 [PT,L,QSA]&lt;br /&gt;
RewriteRule ^article/*$ /index.php [L,QSA]&lt;br /&gt;
RewriteRule ^/*$ /index.php [L,QSA]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
NOTE: The &amp;lt;tt&amp;gt;Options +FollowSymlinks&amp;lt;/tt&amp;gt; portion is not in the MediaWiki guide, but the code wasn&amp;#039;t working without it.  I did a search and found [http://helpdesk.hostmonster.com/index.php/kb/article/000198 this article] in the HostMonster Support Center, which said that &amp;quot;+FollowSymLinks must be enabled for any rules to work.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==Allowing InterWiki Links==&lt;br /&gt;
This was enabled so that I could keep my private content in this wiki and my public content for 60bpm, and link back and forth within them.  To accomplish this, I followed the [http://www.mediawiki.org/wiki/Manual:Interwiki MediaWiki InterWiki Manual].&lt;br /&gt;
&lt;br /&gt;
1) Perform the following insert into the &amp;lt;tt&amp;gt;mw_interwiki&amp;lt;/tt&amp;gt; table of the wiki database.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
INSERT INTO mw_interwiki SET iw_prefix=&amp;#039;up&amp;#039;, iw_url=&amp;#039;http://wiki.unionandparkwood.com/article/$1&amp;#039;, iw_local=1, iw_trans=0;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Style Updates==&lt;br /&gt;
All style updates are made in the current skin directory. At the moment, this is: &amp;lt;tt&amp;gt;/skins/monobook/main.css&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
1) I prefer that the visited links are colored the same as the original links&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
a, a:visited {&lt;br /&gt;
	text-decoration: none;&lt;br /&gt;
	color: #002bb8;&lt;br /&gt;
	background: none;&lt;br /&gt;
}&lt;br /&gt;
/* I prefer that the visited links are colored the same as the original links&lt;br /&gt;
a:visited {&lt;br /&gt;
	color: #5a3696;&lt;br /&gt;
}&lt;br /&gt;
*/&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
==Extensions==&lt;br /&gt;
The extensions that I&amp;#039;ve added to this wiki are as follows.&lt;br /&gt;
===Cite===&lt;br /&gt;
[http://www.mediawiki.org/wiki/Extension:Cite Extension:Cite] is method of dynamically adding footnotes to an article.  The extension code was uploaded to &amp;lt;tt&amp;gt;/extensions/Cite/&amp;lt;/tt&amp;gt;.  The following code was added to the &amp;lt;tt&amp;gt;LocalSettings.php&amp;lt;/tt&amp;gt; file:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Here are the includes for my added extensions&lt;br /&gt;
require_once(&amp;quot;$IP/extensions/Cite/Cite.php&amp;quot;);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
===EmbedVideo===&lt;br /&gt;
[http://www.mediawiki.org/wiki/Extension:EmbedVideo] is a method of easily embedding a video from a variety on video hosting sites.  The extension code was uploaded to &amp;lt;tt&amp;gt;/extensions/VideoEmbed/&amp;lt;/tt&amp;gt;. The following code was added to the &amp;lt;tt&amp;gt;LocalSettings.php&amp;lt;/tt&amp;gt; file:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#EmbedVideo&lt;br /&gt;
require_once(&amp;quot;$IP/extensions/EmbedVideo/EmbedVideo.php&amp;quot;);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
===Infobox Data Capture===&lt;br /&gt;
I originally thought that this extension was all I needed to add the right-aligned album info, but this wasn&amp;#039;t the case.  Regardless, I&amp;#039;m keeping this here for now.&lt;br /&gt;
&lt;br /&gt;
[http://www.mediawiki.org/wiki/Extension:Infobox_Data_Capture Extension:Infobox Data Capture] is a method of adding a right-aligned column of formatted data to an article.  This was installed for the music collection pages.  The [http://www.mediawiki.org/wiki/Extension:Infobox_Data_Capture#Code extension code] was captured and uploaded to &amp;lt;tt&amp;gt;/extensions/InfoboxData/&amp;lt;/tt&amp;gt;.  The following code was added to the &amp;lt;tt&amp;gt;LocalSettings.php&amp;lt;/tt&amp;gt; file:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
require_once(&amp;quot;$IP/extensions/InfoboxData/InfoboxData.php&amp;quot;);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
The following database query was performed to create the needed table:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
CREATE TABLE  `mw_infoboxdata` (&lt;br /&gt;
  `ib_from` int(8) unsigned NOT NULL default &amp;#039;0&amp;#039;,&lt;br /&gt;
  `ib_datablock_order` int(11) NOT NULL default &amp;#039;7&amp;#039;,&lt;br /&gt;
  `ib_datablock_name` varbinary(255) NOT NULL default &amp;#039;&amp;#039;,&lt;br /&gt;
  `ib_attribute_order` int(11) NOT NULL default &amp;#039;7&amp;#039;,&lt;br /&gt;
  `ib_attribute` varbinary(255) NOT NULL default &amp;#039;&amp;#039;,&lt;br /&gt;
  `ib_value` blob,&lt;br /&gt;
  `ib_isvalid` int(1) unsigned NOT NULL default &amp;#039;1&amp;#039;,&lt;br /&gt;
  `ib_comment` blob,&lt;br /&gt;
  KEY `ib_from` (`ib_from`,`ib_datablock_order`,`ib_datablock_name`,`ib_attribute`),&lt;br /&gt;
  KEY `ib_datablock_name` (`ib_datablock_name`,`ib_from`)&lt;br /&gt;
) ENGINE=MyISAM DEFAULT CHARSET=binary;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Infobox===&lt;br /&gt;
The &amp;#039;&amp;#039;&amp;#039;Infobox&amp;#039;&amp;#039;&amp;#039; extension actually required the installation of the &amp;#039;&amp;#039;&amp;#039;ParserFunctions&amp;#039;&amp;#039;&amp;#039; extension, followed by the creation of a large number of templates.  The reason I wanted to install this functionality was so that I could add the details of albums and musical collections to the right of the other information.&lt;br /&gt;
&lt;br /&gt;
For details on how to use this functionality, see [http://en.wikipedia.org/wiki/Template:Infobox_album Wikipedia&amp;#039;s Template:Infobox album] page.&lt;br /&gt;
&lt;br /&gt;
I needed some direction to do this, so I followed along with this tutorial: [http://www.etcwiki.org/wiki/Mediawiki_template_guide &amp;#039;&amp;#039;&amp;#039;ETCwiki&amp;#039;&amp;#039;&amp;#039;: How to install template infobox in mediawiki].&lt;br /&gt;
&lt;br /&gt;
1) Uploaded the [http://www.mediawiki.org/wiki/Extension:ParserFunctions Extension:ParserFunctions] extension to &amp;lt;tt&amp;gt;/extensions/ParserFunctions/&amp;lt;/tt&amp;gt; and added the following to the &amp;lt;tt&amp;gt;LocalSettings.php&amp;lt;/tt&amp;gt; file:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
require_once(&amp;quot;$IP/extensions/ParserFunctions/ParserFunctions.php&amp;quot;);&lt;br /&gt;
$wgPFEnableStringFunctions = true;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
2) Search for [[MediaWiki:Common.css]], then create the page and add the styles.  The added styles are currently on this page, between the following comments:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
/***************************&lt;br /&gt;
INFOBOX STYLES BEGIN HERE&lt;br /&gt;
***************************/&lt;br /&gt;
...&lt;br /&gt;
&lt;br /&gt;
/***************************&lt;br /&gt;
INFOBOX STYLES END HERE&lt;br /&gt;
***************************/&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
3) The following templates were recommended by the tutorial.  I&amp;#039;m not currently sure if all of this was necessary.  After installing them all, it dawned on me what I was doing and then how to find more templates I needed.&lt;br /&gt;
&lt;br /&gt;
To install a template: Search, create, paste source code and save.&lt;br /&gt;
&lt;br /&gt;
These are the first level of templates you need for Template:Infobox&lt;br /&gt;
    * Template:! [http://www.etcwiki.org/index.php?title=Template:!&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Clear [http://en.wikipedia.org/w/index.php?title=Template:Clear&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Documentation [http://en.wikipedia.org/w/index.php?title=Template:Documentation&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Documentation subpage [http://en.wikipedia.org/w/index.php?title=Template:Documentation_subpage&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Documentation/docname [http://en.wikipedia.org/w/index.php?title=Template:Documentation/docname&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Infobox [http://en.wikipedia.org/w/index.php?title=Template:Infobox&amp;amp;action=edit view source] (you may already have this)&lt;br /&gt;
    * Template:Infobox/doc (edit)&lt;br /&gt;
    * Template:Intricate template [http://en.wikipedia.org/w/index.php?title=Template:Intricate_template&amp;amp;action=edit view source] - Really Important*&lt;br /&gt;
    * Template:Navbar [http://en.wikipedia.org/w/index.php?title=Template:Navbar&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Nowrap [http://en.wikipedia.org/w/index.php?title=Template:Nowrap&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Ombox [http://en.wikipedia.org/w/index.php?title=Template:Ombox&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Ombox/core [http://en.wikipedia.org/w/index.php?title=Template:Ombox/core&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Pp-meta [http://en.wikipedia.org/w/index.php?title=Template:Pp-meta&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Pp-template [http://en.wikipedia.org/w/index.php?title=Template:Pp-template&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Purge [http://en.wikipedia.org/w/index.php?title=Template:Purge&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Tl [http://en.wikipedia.org/w/index.php?title=Template:Tl&amp;amp;action=edit view source] (this is TL, I had trouble telling the L in lowercase)&lt;br /&gt;
    * Template:Tnavbar [http://en.wikipedia.org/w/index.php?title=Template:Tnavbar&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Transclude [http://en.wikipedia.org/w/index.php?title=Template:Transclude&amp;amp;action=edit view source]&lt;br /&gt;
&lt;br /&gt;
You will also need to copy these templates to make the ones above work&lt;br /&gt;
    * Template:Infobox/row [http://en.wikipedia.org/w/index.php?title=Template:Infobox/row&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Tiw [http://en.wikipedia.org/w/index.php?title=Template:Tiw&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Tlf [http://en.wikipedia.org/w/index.php?title=Template:Tlf&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Tls [http://en.wikipedia.org/w/index.php?title=Template:Tls&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Tlsp [http://en.wikipedia.org/w/index.php?title=Template:Tlsp&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Tlp [http://en.wikipedia.org/w/index.php?title=Template:Tlp&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Tn [http://en.wikipedia.org/w/index.php?title=Template:Tn&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Tlx [http://en.wikipedia.org/w/index.php?title=Template:Tlx&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Mbox Templates [http://en.wikipedia.org/wiki/Template:Mbox_templates view source]&lt;br /&gt;
    * Template:Mbox templates/doc [http://en.wikipedia.org/w/index.php?title=Template:Mbox_templates/doc&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Navbox [http://en.wikipedia.org/w/index.php?title=Template:Navbox&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:- [http://en.wikipedia.org/w/index.php?title=Template:-&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:· [http://en.wikipedia.org/w/index.php?title=Template:%C2%B7&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Tnull [http://en.wikipedia.org/w/index.php?title=Template:Tnull&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Shortcut [http://en.wikipedia.org/w/index.php?title=Template:Shortcut&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:High-risk [http://en.wikipedia.org/w/index.php?title=Template:High-risk&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Main [http://en.wikipedia.org/w/index.php?title=Template:Main&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Namespace detect [http://en.wikipedia.org/w/index.php?title=Template:Namespace_detect&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Clr [http://en.wikipedia.org/w/index.php?title=Template:Clr&amp;amp;action=edit view source]&lt;br /&gt;
&lt;br /&gt;
Extra templates that may help if you have problems&lt;br /&gt;
    * Template:Cleanup [http://en.wikipedia.org/w/index.php?title=Template:Cleanup&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Ambox [http://en.wikipedia.org/w/index.php?title=Template:Ambox&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Ambox/core [http://en.wikipedia.org/w/index.php?title=Template:Ambox/core&amp;amp;action=edit view source]&lt;br /&gt;
&lt;br /&gt;
4) I added the following for the album layout:&lt;br /&gt;
    * Template:Infobox album [http://en.wikipedia.org/w/index.php?title=Template:Infobox_album&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Infobox album/link [http://en.wikipedia.org/w/index.php?title=Template:Infobox_album/link&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Infobox album/color [http://en.wikipedia.org/w/index.php?title=Template:Infobox_album/color&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Extra album cover [http://en.wikipedia.org/w/index.php?title=Template:Extra_album_cover&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Min [http://en.wikipedia.org/w/index.php?title=Template:Min&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Rating [http://en.wikipedia.org/w/index.php?title=Template:Rating&amp;amp;action=edit view source] (Note: You will have to modify the file names for the stars once you upload them.)&lt;br /&gt;
    * Template:Singles [http://en.wikipedia.org/w/index.php?title=Template:Singles&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Loop15 [http://en.wikipedia.org/w/index.php?title=Template:Loop15&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Navbox Musical artist [http://en.wikipedia.org/w/index.php?title=Template:Navbox_Musical_artist&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Navbox Musical artist/color [http://en.wikipedia.org/w/index.php?title=Template:Navbox_Musical_artist/color&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Navbox Musical artist [http://en.wikipedia.org/w/index.php?title=Template:Navbox_Musical_artist&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Documentation/core2 [http://en.wikipedia.org/w/index.php?title=Template:Documentation/core2&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Template other [http://en.wikipedia.org/w/index.php?title=Template:Template_other&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Documentation/core/doc [http://en.wikipedia.org/w/index.php?title=Template:Documentation/core/doc&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Fmbox [http://en.wikipedia.org/w/index.php?title=Template:Fmbox&amp;amp;action=edit view source]&lt;br /&gt;
    * Template:Template doc [http://en.wikipedia.org/w/index.php?title=Template:Documentation&amp;amp;action=edit view source]&lt;br /&gt;
&lt;br /&gt;
NOTE: In the &amp;lt;tt&amp;gt;Template:Infobox album&amp;lt;/tt&amp;gt; code, I needed to replace the &amp;lt;tt&amp;gt;&amp;lt;span /&amp;gt;&amp;lt;/tt&amp;gt; tag with &amp;lt;tt&amp;gt;&amp;lt;span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/tt&amp;gt; because the former was not being parsed correctly for some reason.&lt;br /&gt;
&lt;br /&gt;
5) Test it all by creating a new page and posting the following code to it:&lt;br /&gt;
&amp;lt;pre&amp;gt;{{Infobox&lt;br /&gt;
|title        = ETCwiki.org Infobox&lt;br /&gt;
|image        = [[Image:example.png|200px]]&lt;br /&gt;
|header1 = Main Heading&lt;br /&gt;
|header2 = First set of data&lt;br /&gt;
|label2  = Label&lt;br /&gt;
|data2   = Data&lt;br /&gt;
|header3 = Remove this line (optional)&lt;br /&gt;
|label3  = More Label&lt;br /&gt;
|data3   = More data&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Miscellaneous Items==&lt;br /&gt;
===Redirect The Home Page===&lt;br /&gt;
The home page of this wiki was changed to point to the [[Welcome]] page by editing the [[MediaWiki:Mainpage]] page.&lt;/div&gt;</summary>
		<author><name>0degreesk</name></author>
		
	</entry>
</feed>