<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom">

	<channel>
	
	<title>Knowledge Base</title>
	<link>http://expressionengine.com/index.php</link>
	<description></description>
	<copyright>Copyright 2008 ExpressionEngine</copyright>
	<docs>http://www.rssboard.org/rss-specification</docs>
	<generator>ExpressionEngine v1.6.3 http://expressionengine.com/</generator>
	<language>en</language>
	<lastBuildDate>Tue, 25 Mar 2008 15:04:02 GMT</lastBuildDate>
	<atom:link href="http://expressionengine.com/feeds/rss_new/knowledge_base/" rel="self" type="application/rss+xml" />


	<item>
		<title>Preventing Apache from executing files with multiple extensions</title>
		<link>http://expressionengine.com/knowledge_base/article/preventing_apache_from_executing_files_with_multiple_extensions/</link>
		<dc:creator>Derek Allard</dc:creator>
		<category>Installation &amp;amp; Upgrading</category><category>Miscellaneous</category>
		<comments>http://expressionengine.com/knowledge_base/article/preventing_apache_from_executing_files_with_multiple_extensions/</comments>		<description><![CDATA[<p>Some configurations of the Apache webserver will run <a href="http://httpd.apache.org/docs/1.3/mod/mod_mime.html#multipleext">files with multiple extensions</a> as scripts.&nbsp; For example, files with names such as “my_file.php.psd”.&nbsp; In these cases, Apache does not recognize the last suffix, and defaults to the next one found (in this case, “.php”) and will then proceed to execute the file as a PHP file.
</p>
<p>
As this has security implications, we recommend you disable this behavior inside any folders you allow file uploads via ExpressionEngine if you are running Apache.&nbsp; The following .htaccess file will generally work.
</p>
<p>
1) Create a file called &#8220;.htaccess&#8221; (exactly like that, no additional file extensions).&nbsp; 
</p>
<p>
2) Place the following into its contents.
</p>
<p>
</p><div class="codeblock"><code>
# Protects from Apache reading double suffixes<br /></span><span style="color: #0000BB">SetHandler EE_Upload_Security_Do_Not_Remove</span>
</code></div><p>
</p>
<p>
3) Upload this file into the each upload folder within your ExpressionEngine installation, or if your upload folders are all contained inside a common parent folder, you can place one copy of it there.
</p>
<p>
<b>Notes:</b>
<br />
- We always recommend you work with your webhost when working with server configuration.
</p>
<p>
- If you already have an .htaccess file in your installation, simply add the “SetHandler” line to it.
</p>
<p>
- Some users have trouble with this file name, and you may want to create “htaccess.txt” and rename it after you’ve uploaded it to your webserver.
</p>]]></description>
		<guid isPermaLink="false">http://expressionengine.com/knowledge_base/article/preventing_apache_from_executing_files_with_multiple_extensions/#When:15:20:00Z</guid>
		<pubDate>Tue, 18 Mar 2008 15:20:00 GMT</pubDate>
	</item>

	<item>
		<title>Troubleshooting MSM Login Issues</title>
		<link>http://expressionengine.com/knowledge_base/article/troubleshooting_msm_login_issues/</link>
		<dc:creator>Sue Crocker</dc:creator>
		<category>Modules</category><category>Multiple Site Manager</category>
				<description><![CDATA[<p>Question: I’ve set up my additional MSM sites, and now when I attempt to login to the original site, I am unable to do so. Logging in appears to work, but I’m not getting into the back end. What causes this, and how can I fix it?
</p>
<p>
Answer: This problem is caused by a changed setting in your config.php file:
</p>
<p>
</p><div class="codeblock"><code>
<span style="color: #0000BB">$conf&#91;</span><span style="color: #DD0000">'cp_url'</span><span style="color: #0000BB">&#93; </span><span style="color: #007700">= </span><span style="color: #DD0000">"http://secondsite.com/admin.php"</span><span style="color: #007700">;</span>
</code></div><p>
</p>
<p>
instead of
</p>
<p>
</p><div class="codeblock"><code>
<span style="color: #0000BB">$conf&#91;</span><span style="color: #DD0000">'cp_url'</span><span style="color: #0000BB">&#93; </span><span style="color: #007700">= </span><span style="color: #DD0000">"http://mainsite.com/system/"</span><span style="color: #007700">;</span>
</code></div><p>
</p>
<p>
You can edit your config.php to put back the original setting, or you can add that setting to your individual site’s path.php file.
</p>
<p>
Example:
</p>
<p>
</p><div class="codeblock"><code>
<span style="color: #0000BB">$system_path </span><span style="color: #007700">= </span><span style="color: #DD0000">"./system/"</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">$cp_url </span><span style="color: #007700">= </span><span style="color: #DD0000">'http://www.mainsite.com/admin.php'</span><span style="color: #007700">;</span>
</code></div><p>
</p>
<p>
(You can also copy the admin.php file from the /system/utilities folder into the root of your ExpressionEngine install.)
</p>
<p>
NOTE: Before editing your config.php and/or path.php files(s), back them up first.
</p>
<p>
In order for this fix to work, you may need to clear your site wide cookies. Information on how to do this will be in your browser’s documentation. 
<br />

</p>]]></description>
		<guid isPermaLink="false">http://expressionengine.com/knowledge_base/article/troubleshooting_msm_login_issues/#When:07:44:00Z</guid>
		<pubDate>Sat, 16 Feb 2008 07:44:00 GMT</pubDate>
	</item>

	<item>
		<title>Getting a forum subdomain to work on cPanel</title>
		<link>http://expressionengine.com/knowledge_base/article/getting_a_forum_subdomain_to_work_on_cpanel/</link>
		<dc:creator>Derek Allard</dc:creator>
		<category>Modules</category><category>Discussion Forum</category>
		<comments>http://expressionengine.com/knowledge_base/article/getting_a_forum_subdomain_to_work_on_cpanel/</comments>		<description><![CDATA[<p><b>Note:</b> In most instances, the instructions in <a href="http://expressionengine.com/knowledge_base/article/run_forum_from_subdomain/">How can I run the Discussion Forums from a subdomain</a> will be adquate.&nbsp; These instructions are specifically for cPanel hosted websites.
</p>
<p>
cPanel subdomains are a bit different then standard subdomains done via htaccess.&nbsp; Here are the steps to make a forum work as a subdomain with cPanel.
</p>
<p>
1) Go into cPanel, and &#8220;Create a Subdomain&#8221;.&nbsp; Set it to forum.yourdomain.com.&nbsp; cPanel will want to create a directory for you at home/public_html/forum.&nbsp; This is a good thing.
<br />
2) FTP into this newly created directory, and follow the directions for <a href="http://expressionengine.com/wiki/Running_Multiple_Domains_or_Subdomains_or_Subsites/">Running Multiple Domains or Subdomains or Subsites</a> the &#8220;classic&#8221; way.
<br />
3) You should now have identical sites at <a href="http://www.yoursite.com">http://www.yoursite.com</a> and forum.yoursite.com.&nbsp; The trick now is to point all the subdomain requests to <a href="http://www.yoursite.com/index.php/forum">http://www.yoursite.com/index.php/forum</a>.&nbsp; There are <a href="http://expressionengine.com/wiki/Remove_index.php_From_URLs/">many techniques you could use for URL rewriting</a>, but here&#8217;s a simple .htaccess file that will move all requests
<br />
</p><div class="codeblock"><code>
<span style="color: #0000BB">RewriteEngine on<br />RewriteCond </span><span style="color: #007700">$</span><span style="color: #0000BB">1 </span><span style="color: #007700">!^(</span><span style="color: #0000BB">index\</span><span style="color: #007700">.</span><span style="color: #0000BB">php</span><span style="color: #007700">) </span><span style="color: #0000BB">&#91;NC&#93;<br />RewriteRule </span><span style="color: #007700">^(.*)$ /</span><span style="color: #0000BB">index</span><span style="color: #007700">.</span><span style="color: #0000BB">php</span><span style="color: #007700">/</span><span style="color: #0000BB">forum</span><span style="color: #007700">/$</span><span style="color: #0000BB">1 &#91;L&#93;</span>
</code></div><p>
</p>]]></description>
		<guid isPermaLink="false">http://expressionengine.com/knowledge_base/article/getting_a_forum_subdomain_to_work_on_cpanel/#When:22:44:00Z</guid>
		<pubDate>Sun, 21 Oct 2007 22:44:00 GMT</pubDate>
	</item>

	<item>
		<title>Times, Localization, and Entry Dates</title>
		<link>http://expressionengine.com/knowledge_base/article/times_localization_and_entry_dates/</link>
		<dc:creator>Derek Allard</dc:creator>
		<category>How do I find...</category><category>Customization</category><category>Technical Issues</category><category>Troubleshooting</category>
		<comments>http://expressionengine.com/knowledge_base/article/times_localization_and_entry_dates/</comments>		<description><![CDATA[<p>One of the hardest areas of web applications to get your head around is the treatment of dates across various timezones, servers, and computers with daylight savings time (DST).&nbsp; There are so many variables that ExpressionEngine can never be 100% sure of the proper time, and often the only answer is to experiment.&nbsp; The wiki article <a href="http://expressionengine.com/wiki/Dates_Explained/">Dates Explained</a> may help in this.
</p>
<p>
Here&#8217;s the problem with time.&nbsp; Imagine you and your buddies are trying to meet up at a set time, and you&#8217;ve all given me your watches so I can phone you at exactly 7 to tell you to be there.&nbsp; When I get your watches, some of them are set 1 hour behind everyone elses (DST).&nbsp; OK, confusing, but as long as I know that are observing DST I can account for this.&nbsp; Now imagine that each one is set for a different time zone.&nbsp; OK, also confusing, but I can figure that out also.&nbsp; Now suddenly some of the watches stop observing DST (many hosts do), or start observing at different times.&nbsp; Now I&#8217;m scratching my head.&nbsp; I get a bunch of new watches, and I don&#8217;t know if they are observing DST or not.&nbsp; Now some of the watches are simply set to the wrong time.&nbsp; There&#8217;s also a master watch with the official time used for each day you want to meet your friends, and every day there&#8217;s a new way of officially adding and removing that hour.
</p>
<p>
Here&#8217;s how I have my system setup to give me accurate time on <a href="http://www.enginehosting.com">EngineHosting</a>.&nbsp; I&#8217;m in Toronto, so Eastern Standard Time.&nbsp; Both my personal local time (under My Account > Localization) and my system time (Admin > System Preferences> Localization Settings) are set to Eastern time.&nbsp; My &#8220;Daylight Saving Time&#8221; and also my &#8220;Honor the Daylight Saving Time setting associated with each weblog entry?&#8221; are set to &#8220;no&#8221;.&nbsp; Partly this is to avoid the DST problem all together, but also I had originally set it this way as I was moving between hosts, and wanted fine control without needing to worry about what setup they had.&nbsp; Without DST, this puts me an hour &#8220;behind&#8221;, so I set my &#8220;Server Offset (in minutes)&#8221; to 60 to make up for it.
</p>
<p>
When I post, the date and time under &#8220;date&#8221; is the exact same as my local time, and it posts to screen with that time.&nbsp; When DST ends, I&#8217;ll probably have to go in and remove that server offset.
</p>
<p>
If you wanted the time an entry was posted without any reference to the localization of the author, <a href="http://expressionengine.com/docs/modules/weblog/variables.html#var_gmt_entry_date">{gmt_entry_date}</a> is what you want.&nbsp; 
<br />
<blockquote><p>The date the entry was submitted in GMT. This variable is not localized for each user&#8217;s date settings.</p></blockquote>]]></description>
		<guid isPermaLink="false">http://expressionengine.com/knowledge_base/article/times_localization_and_entry_dates/#When:10:51:00Z</guid>
		<pubDate>Mon, 15 Oct 2007 10:51:00 GMT</pubDate>
	</item>

	<item>
		<title>I modified my cookies and now I can&#8217;t login to the Control Panel.</title>
		<link>http://expressionengine.com/knowledge_base/article/i_modified_my_cookies_and_now_i_cant_login_to_the_control_panel/</link>
		<dc:creator>Lisa Wess</dc:creator>
		<category>Control Panel</category><category>Technical Issues</category><category>Troubleshooting</category>
		<comments>http://expressionengine.com/knowledge_base/article/i_modified_my_cookies_and_now_i_cant_login_to_the_control_panel/</comments>		<description><![CDATA[<p>If a setting in the control panel has been entered incorrectly it may lock you out of the control panel.&nbsp; Config variables are stored in the database, and can be difficult to edit directly, however they can be over-ridden by entering the appropriate lines in /system/config.php.&nbsp; Variables in /system/config.php are read preferentially to database config variables. 
</p>
<p>
This most often happens when mis-setting the cookie value and leaving off the leading period.&nbsp; You can add this line into /system/config.php to change it:
</p>
<p>
</p><div class="codeblock"><code>
<span style="color: #0000BB">$conf&#91;</span><span style="color: #DD0000">'cookie_domain'</span><span style="color: #0000BB">&#93; </span><span style="color: #007700">= </span><span style="color: #DD0000">""</span><span style="color: #007700">;</span>
</code></div><p>
</p>
<p>
This should allow you to enter the control panel.&nbsp; You will want to head to the appropriate setting and submit it in the control panel to force the update to the database.&nbsp; Once that is done, remove the over-ride from config.php.
<br />

</p>]]></description>
		<guid isPermaLink="false">http://expressionengine.com/knowledge_base/article/i_modified_my_cookies_and_now_i_cant_login_to_the_control_panel/#When:15:04:00Z</guid>
		<pubDate>Mon, 23 Jul 2007 15:04:00 GMT</pubDate>
	</item>

	<item>
		<title>Are there Volume Discounts for the Multiple Site Manager sites?</title>
		<link>http://expressionengine.com/knowledge_base/article/volume_discounts_msn/</link>
		<dc:creator>Lisa Wess</dc:creator>
		<category>Modules</category><category>Multiple Site Manager</category>
		<comments>http://expressionengine.com/knowledge_base/article/volume_discounts_msn/</comments>		<description><![CDATA[<p>The Volume Discount Program will apply to the Multiple Site Manager itself, but not to the purchase of individual Sites.
</p>]]></description>
		<guid isPermaLink="false">http://expressionengine.com/knowledge_base/article/volume_discounts_msn/#When:17:18:00Z</guid>
		<pubDate>Thu, 21 Jun 2007 17:18:00 GMT</pubDate>
	</item>

	<item>
		<title>Are the additional sites for the Multiple Site License a one&#45;time cost?</title>
		<link>http://expressionengine.com/knowledge_base/article/are_the_additional_sites_for_the_multiple_site_license_a_one_time_cost/</link>
		<dc:creator>Lisa Wess</dc:creator>
		<category>Modules</category><category>Multiple Site Manager</category>
		<comments>http://expressionengine.com/knowledge_base/article/are_the_additional_sites_for_the_multiple_site_license_a_one_time_cost/</comments>		<description><![CDATA[<p>There is no per-year renewal for Additional Sites under the Multiple Site Manager or for the Multiple Site Manager itself.&nbsp;
</p>]]></description>
		<guid isPermaLink="false">http://expressionengine.com/knowledge_base/article/are_the_additional_sites_for_the_multiple_site_license_a_one_time_cost/#When:17:16:00Z</guid>
		<pubDate>Thu, 21 Jun 2007 17:16:00 GMT</pubDate>
	</item>

	<item>
		<title>Do I need multiple forum licenses for use with the Multiple Site Manager?</title>
		<link>http://expressionengine.com/knowledge_base/article/multi_forums_msm/</link>
		<dc:creator>Lisa Wess</dc:creator>
		<category>Modules</category><category>Discussion Forum</category><category>Multiple Site Manager</category>
		<comments>http://expressionengine.com/knowledge_base/article/multi_forums_msm/</comments>		<description><![CDATA[<p>The Discussion Forum is not licensed per-site, so you need only one Discussion Forum license in combination with the Multiple Site Manager to have forums on all your sites from a single ExpressionEngine installation.
</p>]]></description>
		<guid isPermaLink="false">http://expressionengine.com/knowledge_base/article/multi_forums_msm/#When:16:36:01Z</guid>
		<pubDate>Thu, 21 Jun 2007 16:36:01 GMT</pubDate>
	</item>

	<item>
		<title>Can I purchase Personal Sites for a Commercial Licensed Multiple Site Manager?</title>
		<link>http://expressionengine.com/knowledge_base/article/msm_personal_commercial/</link>
		<dc:creator>Leslie Camacho</dc:creator>
		<category>Modules</category><category>Multiple Site Manager</category>
		<comments>http://expressionengine.com/knowledge_base/article/msm_personal_commercial/</comments>		<description><![CDATA[<p>No. Licensing for the Multiple Site Manager (MSM) and additional Sites must match the license of the ExpressionEngine installation. If your ExpressionEngine installation is a Commercial License, then the Multiple Site Manager and additional Sites must all be Commercial licenses. If your ExpressionEngine installation is a Personal license, then the Multiple Site Manager and additional Sites must all be Personal licenses. 
</p>
<p>
Of course, you are free to use a Commercial licensed Site for personal and non-profit use, but you are not allowed to run commercial/for-profit websites from a Personal License.&nbsp;
</p>]]></description>
		<guid isPermaLink="false">http://expressionengine.com/knowledge_base/article/msm_personal_commercial/#When:15:05:00Z</guid>
		<pubDate>Wed, 20 Jun 2007 15:05:00 GMT</pubDate>
	</item>

	<item>
		<title>Can I resell Sites to other people (3rd parties)?</title>
		<link>http://expressionengine.com/knowledge_base/article/msm_resell/</link>
		<dc:creator>Leslie Camacho</dc:creator>
		<category>Modules</category><category>Multiple Site Manager</category>
		<comments>http://expressionengine.com/knowledge_base/article/msm_resell/</comments>		<description><![CDATA[<p>No. The Multiple Site Manager does not change the <a href="http://expressionengine.com/docs/license.html">ExpressionEngine License</a>. The ExpressionEngine license holder must be the owner of all the Sites managed through the Multiple Site Manager.
</p>]]></description>
		<guid isPermaLink="false">http://expressionengine.com/knowledge_base/article/msm_resell/#When:15:03:00Z</guid>
		<pubDate>Wed, 20 Jun 2007 15:03:00 GMT</pubDate>
	</item>

	<item>
		<title>Pages Module Conflict</title>
		<link>http://expressionengine.com/knowledge_base/article/pages_module_conflict/</link>
		<dc:creator>Derek Jones</dc:creator>
		<category>Installation &amp;amp; Upgrading</category>
		<comments>http://expressionengine.com/knowledge_base/article/pages_module_conflict/</comments>		<description><![CDATA[<p>In ExpressionEngine version 1.6, a new module was added: <a href="http://expressionengine.com/docs/modules/pages/index.html">Pages</a>.&nbsp; Prior to this release, a third party module was available by the same name (Mark Huot&#8217;s Pages module).&nbsp; Due to naming collisions and file dependencies in the code, if you are using this third-party module you must update it before upgrading to ExpressionEngine 1.6 or you risk losing your existing module data and/or breaking your site.
</p>
<p>
Instructions for updating Mark Huot&#8217;s Pages module to the newer version (now named &#8220;Tome") can be found here: <a href="http://docs.markhuot.com/ee/modules/tome/">http://docs.markhuot.com/ee/modules/tome/</a>
</p>
<p>
<b>Note to Developers</b>: This scenario demonstrates the importance of giving unique class and table names to your add-ons, and avoiding unchecked file dependencies.&nbsp; The suggested naming convention is to use identifying prefixes for all class, file, and table names.&nbsp; In so doing, you will avoid potential collisions with ExpressionEngine native classes, conflicts with other third party developers&#8217; add-ons, and even potential conflicts with non-ExpressionEngine based PHP scripts that users may be running on their sites.
</p>]]></description>
		<guid isPermaLink="false">http://expressionengine.com/knowledge_base/article/pages_module_conflict/#When:17:34:00Z</guid>
		<pubDate>Tue, 19 Jun 2007 17:34:00 GMT</pubDate>
	</item>

	<item>
		<title>Does the Magpie Plugin support HTTP authenticated feeds?</title>
		<link>http://expressionengine.com/knowledge_base/article/does_the_magpie_plugin_support_http_authenticated_feeds/</link>
		<dc:creator>Lisa Wess</dc:creator>
		<category>Miscellaneous</category>
		<comments>http://expressionengine.com/knowledge_base/article/does_the_magpie_plugin_support_http_authenticated_feeds/</comments>		<description><![CDATA[<p>To allow Magpie to authenticate to an HTTP authenticated, you must  pass the ID and Password in the URL.&nbsp; For instance:
</p>
<p>
</p><div class="codeblock"><code>
<span style="color: #0000BB">&#123;exp</span><span style="color: #007700">:</span><span style="color: #0000BB">magpie url</span><span style="color: #007700">=</span><span style="color: #DD0000">"http://user:password@example..com/news.xml" </span><span style="color: #0000BB">limit</span><span style="color: #007700">=</span><span style="color: #DD0000">"10" </span><span style="color: #0000BB">refresh</span><span style="color: #007700">=</span><span style="color: #DD0000">"720"</span><span style="color: #0000BB">&#125; <br /></span><span style="color: #007700">&lt;</span><span style="color: #0000BB">ul</span><span style="color: #007700">&gt; <br /></span><span style="color: #0000BB">&#123;items&#125; <br /></span><span style="color: #007700">&lt;</span><span style="color: #0000BB">li</span><span style="color: #007700">&gt;&lt;</span><span style="color: #0000BB">a href</span><span style="color: #007700">=</span><span style="color: #DD0000">"&#123;link&#125;"</span><span style="color: #007700">&gt;</span><span style="color: #0000BB">&#123;title&#125;</span><span style="color: #007700">&lt;/</span><span style="color: #0000BB">a</span><span style="color: #007700">&gt;&lt;/</span><span style="color: #0000BB">li</span><span style="color: #007700">&gt; <br /></span><span style="color: #0000BB">&#123;</span><span style="color: #007700">/</span><span style="color: #0000BB">items&#125; <br /></span><span style="color: #007700">&lt;/</span><span style="color: #0000BB">ul</span><span style="color: #007700">&gt; <br /></span><span style="color: #0000BB">&#123;</span><span style="color: #007700">/</span><span style="color: #0000BB">exp</span><span style="color: #007700">:</span><span style="color: #0000BB">magpie&#125;</span>
</code></div><p>
</p>
<p>
<span style="color:red;">Warning</span>: If you do this, anyone with access to edit that template will be able to view your login information for that feed, so use this trick with extreme caution.
</p>]]></description>
		<guid isPermaLink="false">http://expressionengine.com/knowledge_base/article/does_the_magpie_plugin_support_http_authenticated_feeds/#When:21:16:00Z</guid>
		<pubDate>Fri, 15 Jun 2007 21:16:00 GMT</pubDate>
	</item>

	<item>
		<title>Weblog searches and case sensitivity</title>
		<link>http://expressionengine.com/knowledge_base/article/weblog_searches_and_case_sensitivity/</link>
		<dc:creator>Robin Sowell</dc:creator>
		<category>Modules</category><category>Search</category>
		<comments>http://expressionengine.com/knowledge_base/article/weblog_searches_and_case_sensitivity/</comments>		<description><![CDATA[<p>EE is coded such that searches are case insensitive.&nbsp; However, your MySQL settings may result in some or all searches being done in a case sensitive manner.&nbsp; This is most likely to occur with high-ascii values.
</p>
<p>
See <a href="http://expressionengine.com/forums/viewthread/34183/">this feature request</a> where Paul explains that the best way to have high-ascii case insensitive searches is through your MySQL settings.&nbsp; On MySQL versions 4.1 and above, setting your collation to match your language should resolve the issue.
</p>
<p>
It&#8217;s also possible for searches to be case sensitive if your MySQL collation setting is one that is by nature case insensitive, such as utf8_bin.
</p>]]></description>
		<guid isPermaLink="false">http://expressionengine.com/knowledge_base/article/weblog_searches_and_case_sensitivity/#When:21:03:00Z</guid>
		<pubDate>Thu, 07 Jun 2007 21:03:00 GMT</pubDate>
	</item>

	<item>
		<title>Is there a list of Global Variables for use in the forum?</title>
		<link>http://expressionengine.com/knowledge_base/article/is_there_a_list_of_global_variables_for_use_in_the_forum/</link>
		<dc:creator>Lisa Wess</dc:creator>
		<category>Templates</category><category>Modules</category><category>Discussion Forum</category>
		<comments>http://expressionengine.com/knowledge_base/article/is_there_a_list_of_global_variables_for_use_in_the_forum/</comments>		<description><![CDATA[<p>Most of the variables used in the forum are specific to their individual templates, and you can find those by viewing the default forum theme.
</p>
<p>
There are a few global forum variables, however, following is a list:
</p>
<p>
&#123;charset}
<br />
{include:head_extra}
<br />
{include:body_extra}
<br />
{include:spellcheck_js}
<br />
&#123;path:spellcheck_iframe&#125;
<br />
&#123;screen_name}
<br />
&#123;path:logout&#125;
<br />
&#123;path:image_url&#125;
<br />
&#123;path:forum_home&#125;
<br />
&#123;path:your_control_panel&#125;
<br />
&#123;path:your_profile&#125;
<br />
&#123;path:login&#125;
<br />
&#123;path:register&#125;
<br />
&#123;path:memberlist&#125;
<br />
&#123;path:forgot&#125;
<br />
&#123;path:private_messages&#125;
<br />
&#123;path:recent_poster&#125;
<br />
&#123;path:advanced_search&#125;
<br />
&#123;path:view_new_topics&#125;
<br />
&#123;path:view_active_topics&#125;
<br />
&#123;path:view_pending_topics&#125;
<br />
&#123;path:mark_all_read&#125;
<br />
&#123;path:do_search&#125;
<br />
&#123;path:smileys&#125;
<br />
&#123;path:rss&#125;
<br />
&#123;path:atom&#125;
<br />
{recent_poster}
<br />
{forum_name}
<br />
{forum_url}
<br />
{page_title}
<br />
{module_version}
<br />
{forum_build}
<br />
{error_message}
<br />
&#123;path:theme_css&#125;
<br />
&#123;site_url} 
</p>]]></description>
		<guid isPermaLink="false">http://expressionengine.com/knowledge_base/article/is_there_a_list_of_global_variables_for_use_in_the_forum/#When:19:43:00Z</guid>
		<pubDate>Tue, 05 Jun 2007 19:43:00 GMT</pubDate>
	</item>

	<item>
		<title>Can I use ExpressionEngine to create a blogging service or MySpace type site?</title>
		<link>http://expressionengine.com/knowledge_base/article/myspace_blogservice/</link>
		<dc:creator>Leslie Camacho</dc:creator>
		<category>Frequently Asked Questions</category><category>Sales</category><category>License</category>
		<comments>http://expressionengine.com/knowledge_base/article/myspace_blogservice/</comments>		<description><![CDATA[<p> The major licensing restriction in ExpressionEngine is that it cannot be used as the basis of a hosted blogging venture such as Blogger.com or MySpace.com.&nbsp; If you are intending to offer blogs to the general public this is not allowed under the terms of our licensing, even if you are giving away the blogs for free.
</p>
<p>
License issues aside, ExpressionEngine does not currently have a management system in place that permits a user to sign up and receive a totally configured weblog.&nbsp; You&#8217;d have to manually set-up each weblog and assign it to a user.&nbsp; Templates have to be created, member groups have to be assigned, etc.&nbsp; While ExpressionEngine supports multiple weblogs, a blogging service requires a lot of extra backend functionality in order to permit easy management (or more appropriately, self management), which means ExpressionEngine is not a suitable fit for the task.
</p>]]></description>
		<guid isPermaLink="false">http://expressionengine.com/knowledge_base/article/myspace_blogservice/#When:19:28:00Z</guid>
		<pubDate>Fri, 27 Apr 2007 19:28:00 GMT</pubDate>
	</item>

	
	</channel>
</rss>