<?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>Puremedia</title>
	<atom:link href="http://www.puremedia.com.au/feed" rel="self" type="application/rss+xml" />
	<link>http://www.puremedia.com.au</link>
	<description>Website Design &#38; Development Brisbane, Sunshine Coast &#38; Gold Coast</description>
	<lastBuildDate>Mon, 12 Dec 2011 22:50:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Globequip</title>
		<link>http://www.puremedia.com.au/globequip</link>
		<comments>http://www.puremedia.com.au/globequip#comments</comments>
		<pubDate>Mon, 12 Dec 2011 22:48:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[corporate identity]]></category>
		<category><![CDATA[database development]]></category>
		<category><![CDATA[forklift]]></category>
		<category><![CDATA[globequip]]></category>
		<category><![CDATA[kalmar]]></category>
		<category><![CDATA[logo design]]></category>
		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://www.puremedia.com.au/?p=221</guid>
		<description><![CDATA[Globequip Pty Ltd is a Kalmar equipment agent and used materials handling equipment dealer.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.puremedia.com.au/wp-content/uploads/2011/12/globequip.jpg"><img class="alignnone size-full wp-image-222" title="Globequip - Kalmar Agent" src="http://www.puremedia.com.au/wp-content/uploads/2011/12/globequip.jpg" alt="" width="684" height="254" /></a></p>
<p>Globequip Pty Ltd is a <a title="Kalmar Equipment" href="http://www.globequip.com.au" target="_blank">Kalmar equipment</a> agent and used materials handling equipment dealer. Globequip have more than 40 years experience in the materials handling industry and deal in equipment sales throughout the pacific.</p>
<p>Puremedia developed Globequip&#8217;s website &amp; corporate identity (including the logo, colour scheme and business stationary).</p>
<p>The website consists of a custom solution for the team and includes:</p>
<ul>
<li>the ability to add, edit and remove used equipment listings, and</li>
<li>an online quoting system with pdf and email capabilities</li>
</ul>
<p><a href="http://www.globequip.com.au">http://www.globequip.com.au</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.puremedia.com.au/globequip/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fontis GetPrice XML Feed fix for Magento on cPanel</title>
		<link>http://www.puremedia.com.au/fontis-getprice-xml-feed-fix-for-magento-on-cpanel</link>
		<comments>http://www.puremedia.com.au/fontis-getprice-xml-feed-fix-for-magento-on-cpanel#comments</comments>
		<pubDate>Mon, 04 Jul 2011 11:20:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[fontis]]></category>
		<category><![CDATA[getprice]]></category>
		<category><![CDATA[magneto]]></category>
		<category><![CDATA[xml feed]]></category>

		<guid isPermaLink="false">http://www.puremedia.com.au/?p=216</guid>
		<description><![CDATA[After installing the Fontis Australia extension for Magento the comparison feed generators were not working correctly. The xml files were created however they were not being populated with products. The source of the problem was that the path to PHP needed to be define within the cron.php files for the extension. Eg. Line 43 of [...]]]></description>
			<content:encoded><![CDATA[<p>After installing the Fontis Australia extension for Magento the comparison feed generators were not working correctly.</p>
<p>The xml files were created however they were not being populated with products.</p>
<p>The source of the problem was that the path to PHP needed to be define within the cron.php files for the extension.</p>
<p>Eg. Line 43 of /app/code/community/Fontis/Australia/Model/Getprice/cron.php</p>
<p>Original : $data = shell_exec(\&#8221;php \&#8221; . Mage::getBaseDir() . \&#8221;/app/code/community/Fontis/Australia/Model/Getprice/Child.php \&#8221; .</p>
<p>Modified: $data = shell_exec(\&#8221;/user/bin/local/php \&#8221; . Mage::getBaseDir() . \&#8221;/app/code/community/Fontis/Australia/Model/Getprice/Child.php \&#8221; .</p>
<p>Following this change the products are now being populated within the xml file.</p>
<p>Hosting Environment: WHM/cPanel 11.30.0<br />
Magento: 1.4.1.1<br />
Fontis Australia Extension 2.0.7</p>
<p>We also used this php snippet inside a php file in the root directory to generate the feeds straight away rather than waiting for the cron job to run.</p>
<div id="_mcePaste">&lt;?php</div>
<div id="_mcePaste">// Kick-start the Magento stack</div>
<div id="_mcePaste">require_once &#8216;/home/cpanel-account-name/public_html/app/Mage.php&#8217;;</div>
<div id="_mcePaste">Mage::app();</div>
<div id="_mcePaste">// Initialise and trigger the MyShopping feed</div>
<div id="_mcePaste">$model = Mage::getModel(&#8216;australia/myshopping_cron&#8217;);</div>
<div id="_mcePaste">$model-&gt;nonstatic();</div>
<div id="_mcePaste">// Initialise and trigger the GetPrice feed</div>
<div id="_mcePaste">$model = Mage::getModel(&#8216;australia/getprice_cron&#8217;);</div>
<div id="_mcePaste">$model-&gt;nonstatic();</div>
<div id="_mcePaste">// Initialise and trigger the Shopbot feed</div>
<div id="_mcePaste">$model = Mage::getModel(&#8216;australia/shopbot_cron&#8217;);</div>
<div id="_mcePaste">$model-&gt;nonstatic();</div>
<div id="_mcePaste">?&gt;</div>
<div></div>
<div>Reference: http://www.magentocommerce.com/boards/viewthread/177452/P15/</div>
]]></content:encoded>
			<wfw:commentRss>http://www.puremedia.com.au/fontis-getprice-xml-feed-fix-for-magento-on-cpanel/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pelvic Exercises</title>
		<link>http://www.puremedia.com.au/pelvic-exercises</link>
		<comments>http://www.puremedia.com.au/pelvic-exercises#comments</comments>
		<pubDate>Sat, 18 Jun 2011 06:28:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wp e-commerce]]></category>

		<guid isPermaLink="false">http://www.puremedia.com.au/?p=206</guid>
		<description><![CDATA[Puremedia has just completed a re-design of expert Physiotherapist Michelle Kenway's website and online store. The website, Pelvic Exercises focuses on informative articles and products concerning pelvic health.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.puremedia.com.au/pelvic-exercises"><img class="alignnone size-full wp-image-207" title="pelvic-floor-exercises" src="http://www.puremedia.com.au/wp-content/uploads/2011/06/pelvic-floor-exercises.jpg" alt="" width="684" height="254" /></a></p>
<p>Puremedia has just completed a re-design and development of expert Physiotherapist Michelle Kenway&#8217;s website and online store.</p>
<p>The website, Pelvic Exercises focuses on informative articles and products concerning <a title="Pelvic Floor Exercises" href="http://www.pelvicexercises.com.au">pelvic floor exercises</a> and pelvic health.</p>
<p>The platform Puremedia selected for the website upgrade is WordPress combined with an HTML5 custom designed and developed template. The website also includes the open source shopping cart WP e-Commerce.</p>
<p><a title="Pelvic Floor Exercises" href="http://www.pelvicexercises.com.au" target="_blank">http://www.pelvicexercises.com.au</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.puremedia.com.au/pelvic-exercises/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Missing Categories</title>
		<link>http://www.puremedia.com.au/wordpress-missing-categories</link>
		<comments>http://www.puremedia.com.au/wordpress-missing-categories#comments</comments>
		<pubDate>Sat, 18 Jun 2011 05:26:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[categories]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.puremedia.com.au/?p=203</guid>
		<description><![CDATA[Have you lost your categories and tags in your WordPress website? If you are using WordPress for your website and your categories are missing this article may help you. We received a call from one of our clients (a national law firm with offices in Brisbane) troubled by missing categories. These were the points surrounding the [...]]]></description>
			<content:encoded><![CDATA[<h2>Have you lost your categories and tags in your WordPress website?</h2>
<p>If you are using WordPress for your website and your categories are missing this article may help you.</p>
<p>We received a call from one of our clients (a national law firm with offices in Brisbane) troubled by missing categories.</p>
<p>These were the points surrounding the issue:</p>
<ul>
<li>WordPress 3.1.1 installation</li>
<li>Multiple blogs within the single WordPress install</li>
<li>12 or so plugins installed</li>
<li>Failed automatic upgrade notice within the dashboard</li>
<li>Category totals were present however the categories themseleves were not displaying</li>
<li>Posts were all set to &#8216;uncategorized&#8217;</li>
<li>Website hosted with Melbourne IT</li>
</ul>
<p>Systematically we upgraded WordPress and plugins to rule any issues out with the failed automatic upgrade.</p>
<p>Looking then at the database structure we could see that all the categories were still present in the database.</p>
<h2>Solution</h2>
<p>The issue in this instance was that MySQL required restarting. After a restart, all categories were restored.</p>
<p>As we didn&#8217;t have direct control over the MySQL server we were not able to verify the reason MySQL needed restarting. It could possible be related to memory allocations or query caching.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.puremedia.com.au/wordpress-missing-categories/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kevin Hayes Architects</title>
		<link>http://www.puremedia.com.au/kevin-hayes-architects</link>
		<comments>http://www.puremedia.com.au/kevin-hayes-architects#comments</comments>
		<pubDate>Wed, 23 Jun 2010 22:44:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.puremedia.com.au/?p=188</guid>
		<description><![CDATA[We designed and developed the Kevin Hayes Architects website around five years ago. The company is now moving into an exciting new phase including a new website.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.puremedia.com.au/wp-content/uploads/2010/06/kharch.jpg"><img class="alignnone size-full wp-image-187" title="Kevin Hayes Architects" src="http://www.puremedia.com.au/wp-content/uploads/2010/06/kharch.jpg" alt="" width="684" height="254" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.puremedia.com.au/kevin-hayes-architects/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jirsch Sutherland IP</title>
		<link>http://www.puremedia.com.au/jirsch-sutherland-ip</link>
		<comments>http://www.puremedia.com.au/jirsch-sutherland-ip#comments</comments>
		<pubDate>Wed, 23 Jun 2010 09:47:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.puremedia.com.au/?p=184</guid>
		<description><![CDATA[A new web design and development for Sydney based Intellectual Property Lawyers, Jirsch Sutherland. Created for search engine optimisation and built on the open source CMS, Joomla.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.puremedia.com.au/wp-content/uploads/2010/06/jsip.jpg"><img class="alignnone size-full wp-image-185" title="Jirsch Sutherland Intellectual Property Lawyers" src="http://www.puremedia.com.au/wp-content/uploads/2010/06/jsip.jpg" alt="" width="684" height="254" /></a></p>
<p><a href="http://www.jsip.com.au" target="_blank">http://www.jsip.com.au</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.puremedia.com.au/jirsch-sutherland-ip/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wintergarden Web Design Revision</title>
		<link>http://www.puremedia.com.au/wintergarden-web-design</link>
		<comments>http://www.puremedia.com.au/wintergarden-web-design#comments</comments>
		<pubDate>Wed, 23 Jun 2010 07:18:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.puremedia.com.au/?p=181</guid>
		<description><![CDATA[The Wintergarden's website has been re-created inline with the new branding &#038; re-development of the complex. We worked with the Wintergarden's design agency to implement their fresh new design into the flash based website.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.puremedia.com.au/wp-content/uploads/2010/06/wintergarden.jpg"><img class="alignnone size-full wp-image-182" title="Wintergarden Web Design" src="http://www.puremedia.com.au/wp-content/uploads/2010/06/wintergarden.jpg" alt="" width="684" height="254" /></a></p>
<p><a href="http://www.wgarden.com.au" target="_blank">http://www.wgarden.com.au</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.puremedia.com.au/wintergarden-web-design/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Arkhefield</title>
		<link>http://www.puremedia.com.au/arkhefield</link>
		<comments>http://www.puremedia.com.au/arkhefield#comments</comments>
		<pubDate>Wed, 07 Apr 2010 03:10:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.puremedia.com.au/?p=132</guid>
		<description><![CDATA[http://www.arkhefield.com.au]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.puremedia.com.au/arkhefield"><img class="alignnone size-full wp-image-133" title="Arkhefield - Website Re-Development" src="http://www.puremedia.com.au/wp-content/uploads/2010/04/arkhefield.jpg" alt="" width="684" height="254" /></a></p>
<p><a href="http://www.arkhefield.com.au" target="_blank">http://www.arkhefield.com.au</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.puremedia.com.au/arkhefield/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Langes+</title>
		<link>http://www.puremedia.com.au/langes</link>
		<comments>http://www.puremedia.com.au/langes#comments</comments>
		<pubDate>Wed, 07 Apr 2010 00:52:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.puremedia.com.au/?p=125</guid>
		<description><![CDATA[Website: http://www.langes.com.au &#8220;Aaron took the time to understand what we wanted to achieve and designed a website that satisfied our objectives, on time and on budget.&#8221; David Jacobson &#8211;  Partner Langes+   Sydney / Adelaide / Brisbane]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.puremedia.com.au/langes"><img class="alignnone size-full wp-image-126" title="Langes+ Commercial Lawyers" src="http://www.puremedia.com.au/wp-content/uploads/2010/04/langes.jpg" alt="" width="684" height="254" /></a></p>
<p>Website: <a href="http://www.langes.com.au" target="_blank">http://www.langes.com.au</a></p>
<p>&#8220;Aaron took the time to understand what we wanted to achieve and designed a website that satisfied our objectives, on time and on budget.&#8221; David Jacobson &#8211;  Partner Langes+   Sydney / Adelaide / Brisbane</p>
]]></content:encoded>
			<wfw:commentRss>http://www.puremedia.com.au/langes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wineaway</title>
		<link>http://www.puremedia.com.au/wineaway</link>
		<comments>http://www.puremedia.com.au/wineaway#comments</comments>
		<pubDate>Tue, 06 Apr 2010 23:39:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured]]></category>

		<guid isPermaLink="false">http://www.puremedia.com.au/?p=113</guid>
		<description><![CDATA[The Wineaway website features a custom built content management system, an e-commerce store for online sales, a client login area to manage cellared wine and a complete administration system for inventory, invoicing and MYOB data export.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.puremedia.com.au/wineaway"><img class="alignnone size-full wp-image-114" title="wineaway" src="http://www.puremedia.com.au/wp-content/uploads/2010/04/wineaway.jpg" alt="" width="684" height="254" /></a></p>
<p><a href="http://www.wineaway.com.au/app/shop.php?cat=2" target="_blank">http://www.wineaway.com.au</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.puremedia.com.au/wineaway/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

