<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>www.pokeroconnor.com &#187; Wordpress</title>
	<atom:link href="http://www.pokeroconnor.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pokeroconnor.com</link>
	<description></description>
	<lastBuildDate>Fri, 19 Aug 2011 18:59:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Quick Guide to New WordPress Install</title>
		<link>http://www.pokeroconnor.com/quick-guide-to-new-wordpress-install/</link>
		<comments>http://www.pokeroconnor.com/quick-guide-to-new-wordpress-install/#comments</comments>
		<pubDate>Mon, 06 Jun 2011 19:50:55 +0000</pubDate>
		<dc:creator>PokerOConnor</dc:creator>
				<category><![CDATA[hosting]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.pokeroconnor.com/?p=424</guid>
		<description><![CDATA[http://codex.wordpress.org/Installing_WordPress Logon to your server, and cd document_root_name wget http://wordpress.org/latest.tar.gz tar -xzvf latest.tar.gz cd wordpress cp -r * ../ cd .. rm -r wordpress rm latest.tar.gz http://codex.wordpress.org/Installing_WordPress#Using_phpMyAdmin sudo chown www-data document_root_name/ http://example.com/wp-admin/install.php http://codex.wordpress.org/Changing_The_Site_URL. This is followed if you want to change the WordPress site name from example.com to www.example.com. You may need to add update_option(&#8216;siteurl&#8217;,'http://example.com/blog&#8217;); [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li><a href="http://codex.wordpress.org/Installing_WordPress">http://codex.wordpress.org/Installing_WordPress</a></li>
<li>Logon to your server, and <em>cd document_root_name</em></li>
<li>wget http://wordpress.org/latest.tar.gz</li>
<li>tar -xzvf latest.tar.gz</li>
<li>cd wordpress</li>
<li>cp -r * ../</li>
<li>cd ..</li>
<li>rm -r wordpress</li>
<li>rm latest.tar.gz</li>
<li>http://codex.wordpress.org/Installing_WordPress#Using_phpMyAdmin</li>
<li>sudo chown www-data document_root_name/</li>
<li>http://example.com/wp-admin/install.php</li>
<li><a href="http://codex.wordpress.org/Changing_The_Site_URL">http://codex.wordpress.org/Changing_The_Site_URL</a>. This is followed if you want to <a href="http://www.pokeroconnor.com/wordpress-site-redirect/">change the WordPress site name </a>from example.com to www.example.com. You may need to add update_option(&#8216;siteurl&#8217;,'http://example.com/blog&#8217;); and update_option(&#8216;home&#8217;,'http://example.com/blog&#8217;); to the theme functions.php file. Then reload site, then DELETE these two lines from theme functions.php file.</li>
<li>Change default theme to custom theme, so future updates don&#8217;t wipe your changes: cp -r twentyten/ customtheme</li>
<li>Run script as defined on http://www.pokeroconnor.com/recursive-sed-script/ to change all previous theme name mentions</li>
</ol>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pokeroconnor.com/quick-guide-to-new-wordpress-install/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add New Header Image to Theme</title>
		<link>http://www.pokeroconnor.com/add-new-header-image-to-theme/</link>
		<comments>http://www.pokeroconnor.com/add-new-header-image-to-theme/#comments</comments>
		<pubDate>Mon, 06 Jun 2011 14:24:09 +0000</pubDate>
		<dc:creator>PokerOConnor</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.pokeroconnor.com/?p=418</guid>
		<description><![CDATA[In WordPress, for example in the TwentyTen theme, you may want to add a new header image to the default options available. This is useful for example if you are copying this theme, to use as the basis for a new theme. To do so, first upload the image you want to use, and a [...]]]></description>
			<content:encoded><![CDATA[<p>In WordPress, for example in the TwentyTen theme, you may want to add a new header image to the default options available. This is useful for example if you are copying this theme, to use as the basis for a new theme.</p>
<p>To do so, first upload the image you want to use, and a thumbnail of it to the <strong><em>wp-content/themes/NEW_THEME_NAME/images/headers</em></strong> directory.</p>
<p>Then, in <em>wp-content/themes/NEW_THEME_NAME/</em><strong><em>functions.php</em></strong> edit the<strong><em> </em>register_default_headers </strong>function<strong><em></em></strong>, to replace &#8216;sunset&#8217; below with your new image details:<br />
<code><br />
'sunset' =&gt; array(<br />
'url' =&gt; '%s/images/headers/sunset.jpg',<br />
'thumbnail_url' =&gt; '%s/images/headers/sunset-thumbnail.jpg',<br />
/* translators: header image description */<br />
'description' =&gt; __( 'Sunset', 'copied_twenty_theme' )<br />
),<br />
</code></p>
<p>Then go to Appearance -&gt; Theme -&gt; Headers in your Admin panel, and you should be able to select the new image as header.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pokeroconnor.com/add-new-header-image-to-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Visual Editor Missing</title>
		<link>http://www.pokeroconnor.com/wordpress-visual-editor-missing/</link>
		<comments>http://www.pokeroconnor.com/wordpress-visual-editor-missing/#comments</comments>
		<pubDate>Wed, 04 May 2011 22:20:48 +0000</pubDate>
		<dc:creator>PokerOConnor</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.pokeroconnor.com/?p=412</guid>
		<description><![CDATA[This is an annoying issue that happened to me lately, whereby the WordPress visual editor had its buttons and icons missing. I trawled various forums, and got the usual &#8220;do a full re-install&#8221; etc, or disable and re-enable all plugins blah blah blah. The solution is here &#8211; its elegant, simple and a one-liner: add [...]]]></description>
			<content:encoded><![CDATA[<p>This is an annoying issue that happened to me lately, whereby the WordPress visual editor had its buttons and icons missing.</p>
<p>I trawled various forums, and got the usual &#8220;do a full re-install&#8221; etc, or disable and re-enable all plugins blah blah blah.</p>
<p>The solution is <a href="http://wordpress.org/support/topic/visual-post-editor-not-working-only-html-post-editor">here</a> &#8211; its elegant, simple and a one-liner: add the below line to your wp-config.php file.</p>
<p><strong><em>define(&#8216;CONCATENATE_SCRIPTS&#8217;, false );</em></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.pokeroconnor.com/wordpress-visual-editor-missing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress site redirect</title>
		<link>http://www.pokeroconnor.com/wordpress-site-redirect/</link>
		<comments>http://www.pokeroconnor.com/wordpress-site-redirect/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 18:01:51 +0000</pubDate>
		<dc:creator>PokerOConnor</dc:creator>
				<category><![CDATA[hosting]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.pokeroconnor.com/?p=297</guid>
		<description><![CDATA[I had the following problem lately: I added the typical rules to htaccess to redirect example.com/anything to www.example.com/anything, e.g. RewriteEngine On RewriteCond %{HTTP_HOST} ^example.com [NC] RewriteRule (.*)$ http://www.example.com/$1 [L,NC,R=301] RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] But when I went to example.com I got infinite redirects&#8230;reason being I had the [...]]]></description>
			<content:encoded><![CDATA[<p>I had the following problem lately: I added the typical rules to htaccess to redirect example.com/anything to www.example.com/anything, e.g.</p>
<p><code> </code></p>
<p><code>RewriteEngine On</code></p>
<p><code>RewriteCond %{HTTP_HOST} ^example.com [NC]<br />
RewriteRule (.*)$ http://www.example.com/$1 [L,NC,R=301]</code></p>
<p><code> </code></p>
<p><code>RewriteBase /<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule . /index.php [L]</p>
<p></code></p>
<p>But when I went to example.com I got infinite redirects&#8230;reason being I had the siteurl field in the wp_options table of the database set to http://example.com.</p>
<p>So, you need to change that to http://<strong>www</strong>.example.com, and <strong>also edit wp-config.php</strong> as follows:<br />
<code><br />
define('WP_HOME','http://www.example.com');<br />
define('WP_SITEURL','http://www.example.com');</code></p>
<p>That should be it -<a href="http://codex.wordpress.org/Changing_The_Site_URL"> see here if not</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pokeroconnor.com/wordpress-site-redirect/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress Helpers</title>
		<link>http://www.pokeroconnor.com/wordpress-helpers/</link>
		<comments>http://www.pokeroconnor.com/wordpress-helpers/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 23:05:31 +0000</pubDate>
		<dc:creator>PokerOConnor</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.pokeroconnor.com/?p=23</guid>
		<description><![CDATA[Here&#8217;s some useful WordPress stuff &#8211; let&#8217;s get the ball rolling: WordPress Developer&#8217;s Toolbox &#124; Developer&#8217;s Toolbox &#124; Smashing Magazine Notepad Chaos: A Free WordPress Theme &#124; Freebies &#124; Smashing Magazine Lightbox 2.0 for WordPress Bluesome &#124; Exec-PHP plugin for WordPress Collapsable, Foldable, Expandable Page Menus for WordPress: The Fold Page List Plugin WordPress › [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s some useful WordPress stuff &#8211; let&#8217;s get the ball rolling:</p>
<ul>
<li><a href="http://www.smashingmagazine.com/2008/09/15/wordpress-developers-toolbox/">WordPress Developer&#8217;s Toolbox | Developer&#8217;s Toolbox | Smashing Magazine</a></li>
<li><a href="http://www.smashingmagazine.com/2008/08/20/notepad-chaos-a-free-wordpress-theme/">Notepad Chaos: A Free WordPress Theme | Freebies | Smashing Magazine</a></li>
<li><a href="http://zeo.unic.net.my/notes/lightbox2-for-wordpress/">Lightbox 2.0 for WordPress</a></li>
<li><a href="http://bluesome.net/post/2005/08/18/50/">Bluesome | Exec-PHP plugin for WordPress</a></li>
<li><a href="http://www.webspaceworks.com/resources/wordpress/30/">Collapsable, Foldable, Expandable Page Menus for WordPress: The Fold Page List Plugin</a></li>
<li><a href="http://wordpress.org/extend/plugins/sms-text-message/">WordPress › SMS Text Message « WordPress Plugins</a></li>
<li><a href="http://wordpress.org/extend/plugins/nextgen-gallery/">WordPress › NextGEN Gallery « WordPress Plugins</a></li>
<li><a href="http://thezengeek.com/index.php/computers/zen-geek-tip-of-the-day-how-to-add-google-analytics-code-to-wordpress/">Adding google analytic trackers to WordPress installs</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.pokeroconnor.com/wordpress-helpers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

