<?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>Green Billing Software Development</title>
	<atom:link href="http://greenbilling.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://greenbilling.com</link>
	<description>ASP.NET Web Application Development in Sydney</description>
	<lastBuildDate>Tue, 24 Jan 2012 01:05:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>WordPress &amp; Google Map Shows Blank</title>
		<link>http://greenbilling.com/wordpress-google-map-shows-blank/</link>
		<comments>http://greenbilling.com/wordpress-google-map-shows-blank/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 01:53:01 +0000</pubDate>
		<dc:creator>Donald Croswell</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Blank]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Maps]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://greenbilling.com/?p=143</guid>
		<description><![CDATA[I recently copied some code from an existing site and pasted it into a WordPress site and ended up with a simple problem. Everything works but the WordPress template style was stuffing up the display of the map. The div &#8230; <a href="http://greenbilling.com/wordpress-google-map-shows-blank/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I recently copied some code from an existing site and pasted it into a WordPress site and ended up with a simple problem. Everything works but the WordPress template style was stuffing up the display of the map. The div was there, it was just blank.</p>
<p>Feel free to use my code below but you will need to use your own <a href="http://http://mygeoposition.com/" target="_blank">Latitude, Longitude</a>, image, and you also need your own <a href="http://code.google.com/apis/maps/signup.html" target="_blank">Google Maps API Key</a>.</p>
<pre>
&lt;script type="text/javascript" src="http://maps.google.com/maps?file=api&amp;v=2&amp;sensor=false&amp;key=putyourkeyhere"&gt;&lt;/script&gt;
&lt;div id="map" style="width: 600px; height: 400px;"&gt;&lt;/div&gt;
&lt;script type="text/javascript"&gt;// &lt;![CDATA[
    function load() {
        if (GBrowserIsCompatible()) {
            var map = new GMap2(document.getElementById('map'));
            map.addControl(new GSmallMapControl());
            map.addControl(new GMapTypeControl());
            map.setCenter(new GLatLng(-33.885892, 151.211724), 12);
        }
        var point = new GLatLng(-33.885892, 151.211724);
        var icon = new GIcon();
        icon.image = 'pointer.png';
        icon.iconSize = new GSize(55, 24);
        icon.iconAnchor = new GPoint(0, 24);
        icon.infoWindowAnchor = new GPoint(0, 0);
        var markerOptions = { icon: icon, draggable: false };
        var marker = new GMarker(point, markerOptions);
        var html = '&lt;b&gt;Hello World!&lt;b&gt;';
        GEvent.addListener(marker, 'click', function () {
            marker.openInfoWindowHtml(html);
        });
        map.addOverlay(marker);
    }
    load();
//!
// ]]&gt;&lt;/script&gt;
</pre>
<p>If you get the map frame showing empty, you need to modify your css file in WordPress. Its location for me was root//wp-content/themes/twentyeleven/style.css</p>
<p>Open the file and remove the following style on line 838:</p>
<pre>
.entry-content img,
.comment-content img,
.widget img {
	max-width: 97.5%; /* Fluid images for posts, comments, and widgets
}
</pre>
<p>That should do it!</p>
]]></content:encoded>
			<wfw:commentRss>http://greenbilling.com/wordpress-google-map-shows-blank/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Home Page with One Post</title>
		<link>http://greenbilling.com/wordpress-home-page-with-one-post-only/</link>
		<comments>http://greenbilling.com/wordpress-home-page-with-one-post-only/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 00:09:03 +0000</pubDate>
		<dc:creator>Donald Croswell</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[limit posts]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://greenbilling.com/?p=52</guid>
		<description><![CDATA[Some of my posts are quite long so I decided I wanted to change my home page to display only one post rather than many. This made my home page look a bit neater and not so long. In order &#8230; <a href="http://greenbilling.com/wordpress-home-page-with-one-post-only/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Some of my posts are quite long so I decided I wanted to change my home page to display only one post rather than many. This made my home page look a bit neater and not so long.</p>
<p>In order to do this I simply logged in to my WordPress control centre and from the left hand side selected Appearance &gt;&gt; Editior.</p>
<p>From here view the left side and choose the index.php file.</p>
<p>At the very top of that file change the code from:<br />
&lt;?php get_header(); ?&gt;</p>
<p>to:<br />
&lt;?php get_header(); query_posts($query_string.&#8217;&amp;posts_per_page=1&#8242;); ?&gt;</p>
<p>VOILA! One post per page.</p>
<p>Good Luck.</p>
]]></content:encoded>
			<wfw:commentRss>http://greenbilling.com/wordpress-home-page-with-one-post-only/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing WordPress on GoDaddy</title>
		<link>http://greenbilling.com/hello-world/</link>
		<comments>http://greenbilling.com/hello-world/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 01:05:28 +0000</pubDate>
		<dc:creator>Donald Croswell</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[GoDaddy]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://greenbilling.com/?p=1</guid>
		<description><![CDATA[Since moving in to the Protein Studios and finishing off my last big project, work has considerably slowed for the Christmas and New Year period. I imagine most folks are putting off anything big until Jan of 2012. Therefore, I&#8217;ve &#8230; <a href="http://greenbilling.com/hello-world/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Since moving in to the Protein Studios and finishing off my last big project, work has considerably slowed for the Christmas and New Year period. I imagine most folks are putting off anything big until Jan of 2012. Therefore, I&#8217;ve decided to give WordPress a test drive.</p>
<p>I&#8217;ve had some experience with DotNetNuke and have reinvented the wheel with my work with Mitsubishi and World Blue (building my own content managers) but I&#8217;m always up for a challenge and I had three reasons to give it a go.</p>
<p>Although he hasn&#8217;t asked my opinion, my old business partner is currently looking at alternatives for content management. He currently useses a mix of the CMS I built for him in-house and his brother uses FrontPage for a few of his older sites. As his brother is moving on, he needs a way to manage mostly static content so I thought WordPress might be a good option.</p>
<p>Second, I&#8217;ve had a couple of chats with the guys at Protein and they have mentioned they always have WordPress work they can pass my way. I&#8217;m not counting my chickens yet, but it would be fun to do a few projects with them.</p>
<p>Finally, as I needed to update my website and there are so many built in &#8216;widgets&#8217;   for WordPress, I thought I&#8217;d rebuild it using a new technology. Real projects that will actually be used are always more interesting.</p>
<p>Below are my thoughts on the process.</p>
<h2>Installing WordPress</h2>
<p>Setup was a breeze as I&#8217;ve got my account hosted with GoDaddy.</p>
<p>Login to your GoDaddy account. Click on &#8216;Hosting &amp; Servers&#8217; then select Hosting Management at the bottom. If you have already purchased hosting with GoDaddy you should see the option to launch the control centre.<a href="http://greenbilling.com/wp-content/uploads/2012/01/Launch.png"><br />
</a><a href="http://greenbilling.com/wp-content/uploads/2012/01/Launch1.png"><img class="alignleft size-full wp-image-39" title="Launch" src="http://greenbilling.com/wp-content/uploads/2012/01/Launch1.png" alt="Launch Control Centre" width="600" height="160" /></a></p>
<p>Once you have launched the control centre, select the Hosting Connection under the &#8216;Content&#8217; menu.<br />
<a href="http://greenbilling.com/wp-content/uploads/2012/01/HostingConnection1.png"><img class="alignleft size-full wp-image-41" title="HostingConnection" src="http://greenbilling.com/wp-content/uploads/2012/01/HostingConnection1.png" alt="Hosting Connection" width="600" height="208" /></a></p>
<p>There you should see a list of content managers such as Joomla, WordPress and others with feedback and ratings for each. Select WordPress.</p>
<div class="mceTemp">
<dl id="attachment_38" class="wp-caption alignleft" style="width: 610px;">
<dt class="wp-caption-dt"><a href="http://greenbilling.com/wp-content/uploads/2012/01/WordPress.png"><img class="size-full wp-image-38" title="WordPress" src="http://greenbilling.com/wp-content/uploads/2012/01/WordPress.png" alt="Select WordPress" width="600" height="197" /></a></dt>
</dl>
</div>
<p>The next page should allow you the option to install WordPress.<br />
<a href="http://greenbilling.com/wp-content/uploads/2012/01/Install.png"><img class="alignleft size-full wp-image-43" title="Install" src="http://greenbilling.com/wp-content/uploads/2012/01/Install.png" alt="Install WordPress" width="600" height="264" /></a></p>
<p>I was given the option of where to install (I chose the root) and allowed to designate the username and password for administration of the site.</p>
<p>The install process then took around 15 minutes. I&#8217;m assuming it has some sort of manual process involved hence the delay. Once completed, I received an email saying it was ready to go. Completely painless so far!</p>
<h2>Administering WordPress</h2>
<p>If your DNS settings are already pointing to the GoDaddy hosting account then you should be able to navigate to your site and VOILA! There is a blogsite there with temporary info and the typical &#8216;Hello World&#8217; post (with a test reply). Nice.</p>
<p>To administer your site, go to the login screen by typing in your domain and then /wp-login.php. For example http://www.greenbilling.com/wp-login.php. (This is where you use the username and password you designated in the step above.)<br />
<a href="http://greenbilling.com/wp-content/uploads/2012/01/Login.png"><img class="alignleft size-full wp-image-47" title="Login" src="http://greenbilling.com/wp-content/uploads/2012/01/Login.png" alt="Login" width="391" height="414" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Wow, that was pretty easy. I&#8217;ll play around with adminstration and get the site setup. If I find any tricks or tips I&#8217;ll post them. Good luck with your install.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://greenbilling.com/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash Developer</title>
		<link>http://greenbilling.com/flash-developer/</link>
		<comments>http://greenbilling.com/flash-developer/#comments</comments>
		<pubDate>Wed, 09 Jan 2008 02:38:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://greenbilling.com/?p=12</guid>
		<description><![CDATA[Just got certified as a flash developer on brainbench&#8230;]]></description>
			<content:encoded><![CDATA[<p>Just got certified as a flash developer on brainbench&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://greenbilling.com/flash-developer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

