<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:admin="http://webns.net/mvcb/"
	xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
	xmlns:content="http://purl.org/rss/1.0/modules/content/">

	<channel>
	
	<title>HowTo</title>
	<link>http://eehowto.com/index.php</link>
	<description></description>
	<dc:language>en</dc:language>
	<dc:creator>shecodes@gmail.com</dc:creator>
	<dc:rights>Copyright 2010</dc:rights>
	<dc:date>2010-03-18T12:25:31+00:00</dc:date>
	<admin:generatorAgent rdf:resource="http://expressionengine.com/" />
	

	<item>
	  <title>HowTo Turn off Honoring DST Settings on Entries</title>
	  <link>http://eehowto.com/howto/articles/howto-turn-off-honoring-dst-settings-on-entries</link>
	  <guid>http://eehowto.com/howto/articles/howto-turn-off-honoring-dst-settings-on-entries#When:12:25:31Z</guid>
	  <description><![CDATA[<p><span style="color:red;"><b>Question: </b></span>How can I turn off DST settings being applied to my entries?</p>

<p><span style="color:green;"><b>Answer: </b></span>From the EE 2.01PB control panel, choose Admin > Localization Settings and set the value of <strong>Honor the Daylight Saving Time setting associated with each channel entry?</strong> to No.
</p>]]></description> 
	  <dc:subject>EE2.0 Only, HowTo,</dc:subject>
	  <dc:date>2010-03-18T12:25:31+00:00</dc:date>
	</item>

	<item>
	  <title>HowTo Get Rid of my Publish Page Layout</title>
	  <link>http://eehowto.com/howto/articles/howto-get-rid-of-my-publish-page-layout</link>
	  <guid>http://eehowto.com/howto/articles/howto-get-rid-of-my-publish-page-layout#When:16:36:42Z</guid>
	  <description><![CDATA[<p><span style="color:red;"><b>Question: </b></span> How can I get rid of the formatting I have set for EE2.x?</p>

<p><span style="color:green;"><b>Answer: </b></span>You&#8217;ll need to manually truncate the exp_layout_publish table.</p>

<p>Use the following snippet in either EE or using PHPMyAdmin:</p>

<div class="codeblock"><p><code><span style="color: #000000"><br />
<span style="color: #0000BB">TRUNCATE&nbsp;&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">exp_layout_publish</span><span style="color: #007700">`&nbsp;</span><br />
</span><br />
</code></p></div>]]></description> 
	  <dc:subject>EE2.0 Only, HowTo,</dc:subject>
	  <dc:date>2010-03-14T16:36:42+00:00</dc:date>
	</item>

	<item>
	  <title>Where can I find Snippets in the EE2 Control Panel?</title>
	  <link>http://eehowto.com/howto/articles/where-can-i-find-snippets-in-the-ee2-control-panel</link>
	  <guid>http://eehowto.com/howto/articles/where-can-i-find-snippets-in-the-ee2-control-panel#When:12:42:05Z</guid>
	  <description><![CDATA[<p>Question: Where can I find Snippets in the EE2 Control Panel?</p>

<p>Answer: Snippets can be found at:</p>

<p># CP Home<br />
# Design<br />
# Template Manager<br />
# Snippets
</p>]]></description> 
	  <dc:subject>EE2.0 Only, HowTo,</dc:subject>
	  <dc:date>2010-02-16T12:42:05+00:00</dc:date>
	</item>

	<item>
	  <title>HowTo Set Accessories to not be used</title>
	  <link>http://eehowto.com/howto/articles/howto-set-accessories-to-not-be-used</link>
	  <guid>http://eehowto.com/howto/articles/howto-set-accessories-to-not-be-used#When:19:57:46Z</guid>
	  <description><![CDATA[<p>Question: How can I get accessories to not be active if I have errors when accessing the Accessories page?</p>

<p>Answer: You can delete rows from the exp_accessories table. This query will remove all the rows in the table, but not delete any files on the server.</p>

<div class="codeblock"><code><span style="color: #000000">
<span style="color: #0000BB">delete&nbsp;from&nbsp;exp_accessories&nbsp;</span>
</span>
</code></div>]]></description> 
	  <dc:subject>HowTo, Note to Self,</dc:subject>
	  <dc:date>2010-02-01T19:57:46+00:00</dc:date>
	</item>

	<item>
	  <title>HowTo Replace Underscores with Dashes in url_title</title>
	  <link>http://eehowto.com/howto/articles/howto-replace-underscores-with-dashes-in-url_title</link>
	  <guid>http://eehowto.com/howto/articles/howto-replace-underscores-with-dashes-in-url_title#When:22:53:14Z</guid>
	  <description><![CDATA[<p>Question: How can I change the url_title to use dashes (-) instead of underscores (_)</p>

<p>Answer: You can perform the following sql query to do this.</p>

<div class="codeblock"><code><span style="color: #000000">
<span style="color: #0000BB">UPDATE&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">exp_weblog_titles</span><span style="color: #007700">`&nbsp;</span><span style="color: #0000BB">SET&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">url_title</span><span style="color: #007700">`&nbsp;=&nbsp;</span><span style="color: #0000BB">REPLACE</span><span style="color: #007700">(`</span><span style="color: #0000BB">url_title</span><span style="color: #007700">`,&nbsp;</span><span style="color: #DD0000">'_'</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">'-'</span><span style="color: #007700">);&nbsp;</span>
</span>
</code></div>

<p>For EE2.x:</p>

<div class="codeblock"><code><span style="color: #000000">
<span style="color: #0000BB">UPDATE&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">exp_channel_titles</span><span style="color: #007700">`&nbsp;</span><span style="color: #0000BB">SET&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">url_title</span><span style="color: #007700">`&nbsp;=&nbsp;</span><span style="color: #0000BB">REPLACE</span><span style="color: #007700">(`</span><span style="color: #0000BB">url_title</span><span style="color: #007700">`,&nbsp;</span><span style="color: #DD0000">'_'</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">'-'</span><span style="color: #007700">);&nbsp;</span>
</span>
</code></div>

<p>NOTE: As with any direct sql manipulation, make sure you&#8217;ve backed up the table before attempting this.
</p>]]></description> 
	  <dc:subject>HowTo, Note to Self,</dc:subject>
	  <dc:date>2010-01-20T22:53:14+00:00</dc:date>
	</item>

	<item>
	  <title>Link to Docs on security in PHP templates</title>
	  <link>http://eehowto.com/howto/articles/link-to-docs-on-security-in-php-templates</link>
	  <guid>http://eehowto.com/howto/articles/link-to-docs-on-security-in-php-templates#When:12:13:18Z</guid>
	  <description><![CDATA[<p>Question: Where can I find out more information about security risks with PHP in templates?</p>

<p>Answer: You can find more info from the following page in the EE 1.x docs: <a href="http://expressionengine.com/docs/templates/php_templates.html">EEDocs: PHP in Templates</a>
</p>]]></description> 
	  <dc:subject>Note to Self,</dc:subject>
	  <dc:date>2010-01-20T12:13:18+00:00</dc:date>
	</item>

	<item>
	  <title>HowTo Set the Time Out Limit in EE2.x</title>
	  <link>http://eehowto.com/howto/articles/howto-set-the-time-out-limit-in-ee2.x</link>
	  <guid>http://eehowto.com/howto/articles/howto-set-the-time-out-limit-in-ee2.x#When:12:54:56Z</guid>
	  <description><![CDATA[<p>Question: Is there a way of setting the time interval for the EE backend when using Sessions or Cookies and Sessions?</p>

<p>Answer: You can change this via <strong>Time Interval for Lockout</strong> in your Security and Session Preferences</p>

<p>CP Home -> Administration -> Security and Session Preferences</p>

<p><a href="http://expressionengine.com/forums/viewthread/140607/#691845">Forum Thread</a>
</p>]]></description> 
	  <dc:subject>EE2.0 Only, HowTo,</dc:subject>
	  <dc:date>2010-01-07T12:54:56+00:00</dc:date>
	</item>

	<item>
	  <title>Creating a New Entry in EE 1.6.8</title>
	  <link>http://eehowto.com/howto/articles/creating-a-new-entry-in-ee-1.6.8</link>
	  <guid>http://eehowto.com/howto/articles/creating-a-new-entry-in-ee-1.6.8#When:12:45:45Z</guid>
	  <description><![CDATA[<div>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="320" height="300" codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab">
 <param name="movie" value="http://shecodes_audio.s3.amazonaws.com/VideoPlayer.swf" />
	<param name="bgcolor" value="#FFFFFF" />
	<param name="wmode" value="transparent" />
	<param name="allowFullScreen" value="true" />
	<param name="allowScriptAccess" value="always" />
	<param name="flashVars" value="skin=http://shecodes_audio.s3.amazonaws.com/SkinUnderPlayStopSeekFullVol.swf&amp;border=false&amp;source=http://shecodes_audio.s3.amazonaws.com/6519266874529421.mp4&amp;color=3025964&amp;autoplay=false&amp;preload=false&amp;firstframe=http://shecodes_audio.s3.amazonaws.com/5051051815971732.png&amp;forward=&amp;frame=_self&amp;size=320&amp;hyperframe=_self&amp;hyperlinktext=&amp;hyperlink=" />
	<embed src="http://shecodes_audio.s3.amazonaws.com/VideoPlayer.swf" quality="high" bgcolor="#FFFFFF"	width="320" height="300" align="middle"	allowFullScreen="true" loop="false"	allowScriptAccess="always"	wmode="transparent"	flashVars="skin=http://shecodes_audio.s3.amazonaws.com/SkinUnderPlayStopSeekFullVol.swf&amp;border=false&amp;source=http://shecodes_audio.s3.amazonaws.com/6519266874529421.mp4&amp;color=3025964&amp;autoplay=false&amp;preload=false&amp;firstframe=http://shecodes_audio.s3.amazonaws.com/5051051815971732.png&amp;forward=&amp;frame=_self&amp;size=320&amp;hyperframe=_self&amp;hyperlinktext=&amp;hyperlink=" type="application/x-shockwave-flash"	pluginspage="http://www.adobe.com/go/getflashplayer">
	</embed>
	</object>
</div>

<p>Just a quick video.
</p>]]></description> 
	  <dc:subject>EE1.6 Only, HowTo, Videos,</dc:subject>
	  <dc:date>2010-01-01T12:45:45+00:00</dc:date>
	</item>

	<item>
	  <title>HowTo Create a Sticky Post</title>
	  <link>http://eehowto.com/howto/articles/howto-create-a-sticky-post</link>
	  <guid>http://eehowto.com/howto/articles/howto-create-a-sticky-post#When:12:34:51Z</guid>
	  <description><![CDATA[<p><span style="color:red;"><b>Question: </b></span>How can I make my forum topic sticky?</p>

<p><span style="color:green;"><b>Answer: </b></span>Take a look at this short video:</p>

<div><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="320" height="300" codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab"> <param name="movie" value="http://scvideos.s3.amazonaws.com/VideoPlayer.swf" />	<param name="bgcolor" value="#FFFFFF" />	<param name="wmode" value="transparent" />	<param name="allowFullScreen" value="true" />	<param name="allowScriptAccess" value="always" />	<param name="flashVars" value="skin=http://scvideos.s3.amazonaws.com/SkinUnderPlayStopSeekFullVol.swf&amp;border=false&amp;source=http://scvideos.s3.amazonaws.com:80/5208924636244774.mp4&amp;color=3355596&amp;autoplay=false&amp;preload=false&amp;firstframe=&amp;forward=&amp;frame=_self&amp;size=320&amp;hyperframe=_self&amp;hyperlinktext=&amp;hyperlink=" />	<embed src="http://scvideos.s3.amazonaws.com/VideoPlayer.swf" quality="high" bgcolor="#FFFFFF"	width="320" height="300" align="middle"	allowFullScreen="true" loop="false"	allowScriptAccess="always"	wmode="transparent"	flashVars="skin=http://scvideos.s3.amazonaws.com/SkinUnderPlayStopSeekFullVol.swf&amp;border=false&amp;source=http://scvideos.s3.amazonaws.com:80/5208924636244774.mp4&amp;color=3355596&amp;autoplay=false&amp;preload=false&amp;firstframe=&amp;forward=&amp;frame=_self&amp;size=320&amp;hyperframe=_self&amp;hyperlinktext=&amp;hyperlink=" type="application/x-shockwave-flash"	pluginspage="http://www.adobe.com/go/getflashplayer">	</embed>	</object></div>]]></description> 
	  <dc:subject>HowTo, Videos, Forum,</dc:subject>
	  <dc:date>2010-01-01T12:34:51+00:00</dc:date>
	</item>

	<item>
	  <title>HowTo Determine Memory Limits</title>
	  <link>http://eehowto.com/howto/articles/howto-determine-memory-limits</link>
	  <guid>http://eehowto.com/howto/articles/howto-determine-memory-limits#When:12:30:10Z</guid>
	  <description><![CDATA[<p>Question: How can I determine how much memory is allocated to PHP?</p>

<p>Answer: If you are able to login to your EE backend, navigate to Admin >&nbsp; Utilities > PHP Info (EE 1.6.8) </p>

<p>-or-</p>

<p>Tools > Utilities > PHP Info (EE 2.x) and search for:</p>

<p><strong>memory_limit</strong></p>

<p>The value(s) displayed there are what is allocated to PHP.</p>

<p>With EE2.x I recommend setting the memory limit to at least 64M.
</p>]]></description> 
	  <dc:subject>HowTo,</dc:subject>
	  <dc:date>2010-01-01T12:30:10+00:00</dc:date>
	</item>

	
	</channel>
</rss>