<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">

    <title type="text">Knowledge Base</title>
    <subtitle type="text">Knowledge Base:</subtitle>
    <link rel="alternate" type="text/html" href="http://expressionengine.com/index.php" />
    <link rel="self" type="application/atom+xml" href="http://expressionengine.com/xml/atom/knowledge_base/" />
    <updated>2008-03-25T15:04:02Z</updated>
    <rights>Copyright (c) 2008, EllisLab Inc.</rights>
    <generator uri="http://expressionengine.com/" version="1.6.3">ExpressionEngine</generator>
    <id>tag:expressionengine.com,2008:03:18</id>


    <entry>
      <title>Preventing Apache from executing files with multiple extensions</title>
      <link rel="alternate" type="text/html" href="http://expressionengine.com/knowledge_base/article/preventing_apache_from_executing_files_with_multiple_extensions/" />
      <id>tag:expressionengine.com,2008:index.php/2.4294</id>
      <published>2008-03-18T15:20:00Z</published>
      <updated>2008-03-18T16:36:11Z</updated>
      <author>
            <name>Derek Allard</name>
            <uri>http://www.derekallard.com</uri>      </author>

      <category term="Installation &amp;amp; Upgrading"
        scheme="http://expressionengine.com/knowledge_base/category/installation_and_upgrading/"
        label="Installation &amp;amp; Upgrading" />
      <category term="Miscellaneous"
        scheme="http://expressionengine.com/knowledge_base/category/miscellaneous/"
        label="Miscellaneous" />
      <content type="html"><![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>      ]]></content>
    </entry>

    <entry>
      <title>Troubleshooting MSM Login Issues</title>
      <link rel="alternate" type="text/html" href="http://expressionengine.com/knowledge_base/article/troubleshooting_msm_login_issues/" />
      <id>tag:expressionengine.com,2008:index.php/2.3474</id>
      <published>2008-02-16T07:44:00Z</published>
      <updated>2008-02-16T08:47:05Z</updated>
      <author>
            <name>Sue Crocker</name>
            <uri>http://www.eehowto.com</uri>      </author>

      <category term="Modules"
        scheme="http://expressionengine.com/knowledge_base/category/modules/"
        label="Modules" />
      <category term="Multiple Site Manager"
        scheme="http://expressionengine.com/knowledge_base/category/multiple_site_manager/"
        label="Multiple Site Manager" />
      <content type="html"><![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>      ]]></content>
    </entry>

    <entry>
      <title>Getting a forum subdomain to work on cPanel</title>
      <link rel="alternate" type="text/html" href="http://expressionengine.com/knowledge_base/article/getting_a_forum_subdomain_to_work_on_cpanel/" />
      <id>tag:expressionengine.com,2007:index.php/2.2944</id>
      <published>2007-10-21T22:44:00Z</published>
      <updated>2007-10-21T23:44:58Z</updated>
      <author>
            <name>Derek Allard</name>
            <uri>http://www.derekallard.com</uri>      </author>

      <category term="Modules"
        scheme="http://expressionengine.com/knowledge_base/category/modules/"
        label="Modules" />
      <category term="Discussion Forum"
        scheme="http://expressionengine.com/knowledge_base/category/discussion_forum/"
        label="Discussion Forum" />
      <content type="html"><![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>      ]]></content>
    </entry>

    <entry>
      <title>Times, Localization, and Entry Dates</title>
      <link rel="alternate" type="text/html" href="http://expressionengine.com/knowledge_base/article/times_localization_and_entry_dates/" />
      <id>tag:expressionengine.com,2007:index.php/2.2919</id>
      <published>2007-10-15T10:51:00Z</published>
      <updated>2007-10-16T19:42:13Z</updated>
      <author>
            <name>Derek Allard</name>
            <uri>http://www.derekallard.com</uri>      </author>

      <category term="How do I find..."
        scheme="http://expressionengine.com/knowledge_base/category/how_do_i_find/"
        label="How do I find..." />
      <category term="Customization"
        scheme="http://expressionengine.com/knowledge_base/category/customization/"
        label="Customization" />
      <category term="Technical Issues"
        scheme="http://expressionengine.com/knowledge_base/category/technical_issues/"
        label="Technical Issues" />
      <category term="Troubleshooting"
        scheme="http://expressionengine.com/knowledge_base/category/troubleshooting/"
        label="Troubleshooting" />
      <content type="html"><![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>      ]]></content>
    </entry>

    <entry>
      <title>I modified my cookies and now I can&#8217;t login to the Control Panel.</title>
      <link rel="alternate" type="text/html" href="http://expressionengine.com/knowledge_base/article/i_modified_my_cookies_and_now_i_cant_login_to_the_control_panel/" />
      <id>tag:expressionengine.com,2007:index.php/2.2645</id>
      <published>2007-07-23T15:04:00Z</published>
      <updated>2007-07-24T18:43:01Z</updated>
      <author>
            <name>Lisa Wess</name>
            <uri>http://www.lisajill.net</uri>      </author>

      <category term="Control Panel"
        scheme="http://expressionengine.com/knowledge_base/category/control_panel/"
        label="Control Panel" />
      <category term="Technical Issues"
        scheme="http://expressionengine.com/knowledge_base/category/technical_issues/"
        label="Technical Issues" />
      <category term="Troubleshooting"
        scheme="http://expressionengine.com/knowledge_base/category/troubleshooting/"
        label="Troubleshooting" />
      <content type="html"><![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>      ]]></content>
    </entry>

    <entry>
      <title>Are there Volume Discounts for the Multiple Site Manager sites?</title>
      <link rel="alternate" type="text/html" href="http://expressionengine.com/knowledge_base/article/volume_discounts_msn/" />
      <id>tag:expressionengine.com,2007:index.php/2.1906</id>
      <published>2007-06-21T17:18:00Z</published>
      <updated>2007-06-21T17:54:21Z</updated>
      <author>
            <name>Lisa Wess</name>
            <uri>http://www.lisajill.net</uri>      </author>

      <category term="Modules"
        scheme="http://expressionengine.com/knowledge_base/category/modules/"
        label="Modules" />
      <category term="Multiple Site Manager"
        scheme="http://expressionengine.com/knowledge_base/category/multiple_site_manager/"
        label="Multiple Site Manager" />
      <content type="html"><![CDATA[
        <p>The Volume Discount Program will apply to the Multiple Site Manager itself, but not to the purchase of individual Sites.
</p>      ]]></content>
    </entry>

    <entry>
      <title>Are the additional sites for the Multiple Site License a one&#45;time cost?</title>
      <link rel="alternate" type="text/html" href="http://expressionengine.com/knowledge_base/article/are_the_additional_sites_for_the_multiple_site_license_a_one_time_cost/" />
      <id>tag:expressionengine.com,2007:index.php/2.1905</id>
      <published>2007-06-21T17:16:00Z</published>
      <updated>2008-01-07T15:52:28Z</updated>
      <author>
            <name>Lisa Wess</name>
            <uri>http://www.lisajill.net</uri>      </author>

      <category term="Modules"
        scheme="http://expressionengine.com/knowledge_base/category/modules/"
        label="Modules" />
      <category term="Multiple Site Manager"
        scheme="http://expressionengine.com/knowledge_base/category/multiple_site_manager/"
        label="Multiple Site Manager" />
      <content type="html"><![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>      ]]></content>
    </entry>

    <entry>
      <title>Do I need multiple forum licenses for use with the Multiple Site Manager?</title>
      <link rel="alternate" type="text/html" href="http://expressionengine.com/knowledge_base/article/multi_forums_msm/" />
      <id>tag:expressionengine.com,2007:index.php/2.1904</id>
      <published>2007-06-21T16:36:01Z</published>
      <updated>2007-06-21T16:42:54Z</updated>
      <author>
            <name>Lisa Wess</name>
            <uri>http://www.lisajill.net</uri>      </author>

      <category term="Modules"
        scheme="http://expressionengine.com/knowledge_base/category/modules/"
        label="Modules" />
      <category term="Discussion Forum"
        scheme="http://expressionengine.com/knowledge_base/category/discussion_forum/"
        label="Discussion Forum" />
      <category term="Multiple Site Manager"
        scheme="http://expressionengine.com/knowledge_base/category/multiple_site_manager/"
        label="Multiple Site Manager" />
      <content type="html"><![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>      ]]></content>
    </entry>

    <entry>
      <title>Can I purchase Personal Sites for a Commercial Licensed Multiple Site Manager?</title>
      <link rel="alternate" type="text/html" href="http://expressionengine.com/knowledge_base/article/msm_personal_commercial/" />
      <id>tag:expressionengine.com,2007:index.php/2.1899</id>
      <published>2007-06-20T15:05:00Z</published>
      <updated>2007-08-08T23:57:15Z</updated>
      <author>
            <name>Leslie Camacho</name>
            <uri>http://www.ellislab.com</uri>      </author>

      <category term="Modules"
        scheme="http://expressionengine.com/knowledge_base/category/modules/"
        label="Modules" />
      <category term="Multiple Site Manager"
        scheme="http://expressionengine.com/knowledge_base/category/multiple_site_manager/"
        label="Multiple Site Manager" />
      <content type="html"><![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>      ]]></content>
    </entry>

    <entry>
      <title>Can I resell Sites to other people (3rd parties)?</title>
      <link rel="alternate" type="text/html" href="http://expressionengine.com/knowledge_base/article/msm_resell/" />
      <id>tag:expressionengine.com,2007:index.php/2.1898</id>
      <published>2007-06-20T15:03:00Z</published>
      <updated>2007-06-21T03:49:37Z</updated>
      <author>
            <name>Leslie Camacho</name>
            <uri>http://www.ellislab.com</uri>      </author>

      <category term="Modules"
        scheme="http://expressionengine.com/knowledge_base/category/modules/"
        label="Modules" />
      <category term="Multiple Site Manager"
        scheme="http://expressionengine.com/knowledge_base/category/multiple_site_manager/"
        label="Multiple Site Manager" />
      <content type="html"><![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>      ]]></content>
    </entry>

    <entry>
      <title>Pages Module Conflict</title>
      <link rel="alternate" type="text/html" href="http://expressionengine.com/knowledge_base/article/pages_module_conflict/" />
      <id>tag:expressionengine.com,2007:index.php/2.1895</id>
      <published>2007-06-19T17:34:00Z</published>
      <updated>2007-06-20T16:45:22Z</updated>
      <author>
            <name>Derek Jones</name>
            <uri>http://derekderekderek.com/</uri>      </author>

      <category term="Installation &amp;amp; Upgrading"
        scheme="http://expressionengine.com/knowledge_base/category/installation_and_upgrading/"
        label="Installation &amp;amp; Upgrading" />
      <content type="html"><![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>      ]]></content>
    </entry>

    <entry>
      <title>Does the Magpie Plugin support HTTP authenticated feeds?</title>
      <link rel="alternate" type="text/html" href="http://expressionengine.com/knowledge_base/article/does_the_magpie_plugin_support_http_authenticated_feeds/" />
      <id>tag:expressionengine.com,2007:index.php/2.1885</id>
      <published>2007-06-15T21:16:00Z</published>
      <updated>2007-06-16T16:25:31Z</updated>
      <author>
            <name>Lisa Wess</name>
            <uri>http://www.lisajill.net</uri>      </author>

      <category term="Miscellaneous"
        scheme="http://expressionengine.com/knowledge_base/category/miscellaneous/"
        label="Miscellaneous" />
      <content type="html"><![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>      ]]></content>
    </entry>

    <entry>
      <title>Weblog searches and case sensitivity</title>
      <link rel="alternate" type="text/html" href="http://expressionengine.com/knowledge_base/article/weblog_searches_and_case_sensitivity/" />
      <id>tag:expressionengine.com,2007:index.php/2.1866</id>
      <published>2007-06-07T21:03:00Z</published>
      <updated>2007-06-07T21:44:32Z</updated>
      <author>
            <name>Robin Sowell</name>
            <uri>http://media-cow.com/</uri>      </author>

      <category term="Modules"
        scheme="http://expressionengine.com/knowledge_base/category/modules/"
        label="Modules" />
      <category term="Search"
        scheme="http://expressionengine.com/knowledge_base/category/search/"
        label="Search" />
      <content type="html"><![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>      ]]></content>
    </entry>

    <entry>
      <title>Is there a list of Global Variables for use in the forum?</title>
      <link rel="alternate" type="text/html" href="http://expressionengine.com/knowledge_base/article/is_there_a_list_of_global_variables_for_use_in_the_forum/" />
      <id>tag:expressionengine.com,2007:index.php/2.1862</id>
      <published>2007-06-05T19:43:00Z</published>
      <updated>2007-08-06T09:27:20Z</updated>
      <author>
            <name>Lisa Wess</name>
            <uri>http://www.lisajill.net</uri>      </author>

      <category term="Templates"
        scheme="http://expressionengine.com/knowledge_base/category/templates/"
        label="Templates" />
      <category term="Modules"
        scheme="http://expressionengine.com/knowledge_base/category/modules/"
        label="Modules" />
      <category term="Discussion Forum"
        scheme="http://expressionengine.com/knowledge_base/category/discussion_forum/"
        label="Discussion Forum" />
      <content type="html"><![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>      ]]></content>
    </entry>

    <entry>
      <title>Can I use ExpressionEngine to create a blogging service or MySpace type site?</title>
      <link rel="alternate" type="text/html" href="http://expressionengine.com/knowledge_base/article/myspace_blogservice/" />
      <id>tag:expressionengine.com,2007:index.php/2.1756</id>
      <published>2007-04-27T19:28:00Z</published>
      <updated>2007-04-27T19:30:00Z</updated>
      <author>
            <name>Leslie Camacho</name>
            <uri>http://www.ellislab.com</uri>      </author>

      <category term="Frequently Asked Questions"
        scheme="http://expressionengine.com/knowledge_base/category/frequently_asked_questions/"
        label="Frequently Asked Questions" />
      <category term="Sales"
        scheme="http://expressionengine.com/knowledge_base/category/sales/"
        label="Sales" />
      <category term="License"
        scheme="http://expressionengine.com/knowledge_base/category/license/"
        label="License" />
      <content type="html"><![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>      ]]></content>
    </entry>


</feed>