<?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>Froling Enterprises &#187; General Posts</title>
	<atom:link href="http://www.frolingenterprises.com.au/category/general/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.frolingenterprises.com.au</link>
	<description>Web development and hosting services, amongst other things.</description>
	<lastBuildDate>Mon, 23 Aug 2010 08:56:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Is Social Networking a Fad?</title>
		<link>http://www.frolingenterprises.com.au/is-social-networking-a-fad/</link>
		<comments>http://www.frolingenterprises.com.au/is-social-networking-a-fad/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 00:41:14 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[General Posts]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://www.frolingenterprises.com.au/?p=119</guid>
		<description><![CDATA[Some interesting figures! Watch this video and decide for yourself.]]></description>
			<content:encoded><![CDATA[<p></p><h2>Some interesting figures!</h2>
<p><object type="application/x-shockwave-flash" style="width:560px;height:340px" data="http://www.youtube.com/v/oalBUgzKaLw&amp;hl=en&amp;fs=1"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="quality" value="best" /><param name="wmode" value="transparent" /><param name="movie" value="http://www.youtube.com/v/oalBUgzKaLw&amp;hl=en&amp;fs=1" /><param name="pluginspage" value="http://www.macromedia.com/go/getflashplayer" />If you can see this, then you might need a Flash Player upgrade or you need to install Flash Player if it's missing. Get <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash Player</a> from Adobe.</object><br/>
		<!-- Valid XHTML flash object delivered by XHTML Video Embed. Get it at: http://saltwaterc.net/xhtml-video-embed -->
		</p>
]]></content:encoded>
			<wfw:commentRss>http://www.frolingenterprises.com.au/is-social-networking-a-fad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make one (or more) pages use https in WordPress</title>
		<link>http://www.frolingenterprises.com.au/make-one-or-more-page-use-https/</link>
		<comments>http://www.frolingenterprises.com.au/make-one-or-more-page-use-https/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 06:38:18 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[General Posts]]></category>
		<category><![CDATA[coding stuff]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.frolingenterprises.com.au/?p=69</guid>
		<description><![CDATA[I was trying to find an answer to the question of making one page use https:// and came across this thread on Wordpress.org. ]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.frolingenterprises.com.au/make-one-or-more-page-use-https/" title="Permanent link to Make one (or more) pages use https in WordPress"><img class="post_image alignleft frame" src="http://www.frolingenterprises.com.au/wp-content/uploads/2009/11/code.jpg" width="120" height="120" alt="Code Icon" /></a>
</p><p>I was trying to find an answer to the question of making one page use <strong>https </strong>and came across this thread</p>
<p><a href="http://wordpress.org/extend/ideas/topic.php?id=2138">http://wordpress.org/extend/ideas/topic.php?id=2138</a></p>
<p>Seems like I&#8217;m not the only one. Anyway, this is what I came up with. I&#8217;m not a programmer so if someone can give me a more efficient method, please do.</p>
<pre style="padding-left: 30px;"><code>add_action('wp', 'sslForPages');

function sslForPages(){
if ((is_page(453))||(is_page(430)) &amp;&amp; empty($_SERVER['HTTPS'])){
	$url = 'https://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
	header ("location: $url");
	}
}</code></pre>
<p>Obviously, change the page ID and add or remove pages or compare using different criteria to suit you needs.</p>
<p>I&#8217;ve expanded this to cater for links within the site that weren&#8217;t absolute (to get off https when not needed).</p>
<pre style="padding-left: 30px;"><code>function sslForPages(){
if ((is_page(453))||(is_page(430)) &amp;&amp; empty($_SERVER['HTTPS'])){
	$url = 'https://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
	header ("location: $url");
	} elseif </code><code>(!((is_page(453))||(is_page(430))) &amp;&amp; !empty($_SERVER['HTTPS']))</code>
<code>}</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.frolingenterprises.com.au/make-one-or-more-page-use-https/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What platform? WordPress + Thesis +/- effort.</title>
		<link>http://www.frolingenterprises.com.au/what-platform/</link>
		<comments>http://www.frolingenterprises.com.au/what-platform/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 14:01:54 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[General Posts]]></category>
		<category><![CDATA[Thesis]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.frolingenterprises.com.au/?p=45</guid>
		<description><![CDATA[I said I&#8217;d mention the technology. Well for those that really care, this site is built within  (or on) the excellent blog and CMS platform called WordPress. Couple this with a great theme you have winning combination. For me the theme is not so much the look and feel, there are hundreds if not thousands  [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.frolingenterprises.com.au/what-platform/" title="Permanent link to What platform? WordPress + Thesis +/- effort."><img class="post_image alignleft frame" src="http://www.frolingenterprises.com.au/wp-content/uploads/2009/11/blue-xl.png" width="250" height="250" alt="Wordpress Logo" /></a>
</p><p>I said I&#8217;d mention the technology. Well for those that really care, this site is built within  (or on) the excellent <abbr title="Short for Web Log,  'blog">blog</abbr> and <acronym title="Content Management System">CMS</acronym> platform called <em><a title="See the latest award for open source CMS" href="http://wordpress.org/development/2009/11/wordpress-wins-cms-award/" target="_blank">WordPress</a></em>.</p>
<p>Couple this with a great theme you have winning combination. For me the theme is not so much the look and feel, there are hundreds if not thousands  out there, many free and many commercial; but the way it enhances  and extends the functionality of <em>WordPress</em> itself.</p>
<p>This site, at the time of writing, is the basic out of the box <a title="Open Thesis in new window" href="http://diythemes.com/?a_aid=frolingenterprises" target="_blank"><em>Thesis</em> theme by Chris Pearson</a>. Simple, clean and functional. Thesis has a heap of layout possibilities, colour and font adjustment available just from its own control panel, without knowing a stitch of <acronym title="Hyper Text Markup Language">html</acronym> or <acronym title="Cascading Style Sheets">css</acronym>. <em>Thesis</em> is a commercial theme but worth every cent and I&#8217;ll tell you why I think so later.</p>
<p>Because most of my clients are not after a blog (at the beginning) &#8211; I often set their sites up with the main focus on the static pages and utilise the blog posts as latest news or testimonials. Changing the site to a blog, if required, is then just a simple progression.</p>
<p>The beauty of using <em>WordPress </em>as the basis of a website is the multitude of plugins that can extend and embellish and make it even more useful.  These include photo galleries, lightbox functionality, subscribers, mailing lists, <acronym title="Really Simple Sydication">RSS </acronym>feeds, e-commerce  and  social networking interaction etc. You can write your own plugins if coding&#8217;s your thing. The possibilities are endless.</p>
<p>Quickly, Thesis as a theme does a couple of things that I haven&#8217;t seen in other themes, (not that I&#8217;ve used a lot).</p>
<ol>
<li>It&#8217;s simple, neat, usable and very configurable straight out of the box.</li>
<li>Its extends the ability to easily customise your <em>WordPress </em>site a <em>heap</em>.</li>
<li>It is itself easily customised.</li>
<li>All of those customisations are stored in custom functions which &#8216;hook&#8217; into the theme and in custom style sheets. You don&#8217;t touch the theme files themselves at all.</li>
<li>These customisations and associated image files live in a folder named, you guessed it, &#8220;custom&#8221;. So, when the theme is upgraded, you just grab the &#8220;custom&#8221; folder and drop it into the new versions folder. Viola! 5 minutes NOT 5 hours.</li>
</ol>
<p>So that&#8217;s the basis for most of the sites I&#8217;ve developed for clients over nearly the last year or so.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.frolingenterprises.com.au/what-platform/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>www.froling.com.au</title>
		<link>http://www.frolingenterprises.com.au/www-froling-com-au/</link>
		<comments>http://www.frolingenterprises.com.au/www-froling-com-au/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 01:29:16 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[General Posts]]></category>

		<guid isPermaLink="false">http://www.frolingenterprises.com.au/?p=9</guid>
		<description><![CDATA[If you&#8217;re looking for the www.froling.com.au site, well look no further. Temporarily you&#8217;re here. Sorry, but I&#8217;ve disliked the old site for a while, so rather than just leave it there I&#8217;m going to have a think about what I want to do with these sites. Until then, well, here we are.]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.frolingenterprises.com.au/www-froling-com-au/" title="Permanent link to www.froling.com.au"><img class="post_image alignleft frame" src="http://www.frolingenterprises.com.au/wp-content/uploads/2009/11/old-site.jpg" width="392" height="346" alt="Froling Enterprises Old Website" /></a>
</p><p>If you&#8217;re looking for the <strong>www.froling.com.au site</strong>, well look no further. Temporarily you&#8217;re here.</p>
<p>Sorry, but I&#8217;ve disliked the old site for a while, so rather than just leave it there I&#8217;m going to have a think about what I want to do with these sites.</p>
<p>Until then, well, here we are.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.frolingenterprises.com.au/www-froling-com-au/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Server issues</title>
		<link>http://www.frolingenterprises.com.au/server-issues/</link>
		<comments>http://www.frolingenterprises.com.au/server-issues/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 01:56:38 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[General Posts]]></category>

		<guid isPermaLink="false">http://www.frolingenterprises.com.au/?p=3</guid>
		<description><![CDATA[I apologise for the issues we have been having with our OLD server, slightly out of our control. All of our clients&#8217; sites are up and running on a new server, hosted in an Adelaide data centre, and we are working on solving our current CMS dilemma. The solution might even be an improvement over [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I apologise for the issues we have been having with our OLD server, slightly out of our control.</p>
<p>All of our clients&#8217; sites are up and running on a new server, hosted in an Adelaide data centre, and we are working on solving our current CMS dilemma. The solution might even be an improvement over previous.</p>
<p>If you would like a <strong>John O&#8217;Dea</strong> CD please shoot us a line at <a href="mailto:sales@frolingenterprises.com.au">sales@frolingenterprises.com.au</a> (our online shop is the last thing that we are bringing across).</p>
<p><strong>By the way, John is playing up at Parachilna tonight with Mike Carr. Always a brilliant show with those two together!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.frolingenterprises.com.au/server-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

