<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for dBaines.com</title>
	<atom:link href="http://dbaines.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://dbaines.com</link>
	<description>Portfolio and Blog of David Baines, South Australian Web Developer</description>
	<lastBuildDate>Wed, 16 May 2012 13:51:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on WordPress Custom Post Type Art Gallery Tutorial by john</title>
		<link>http://dbaines.com/blog/archive/wordpress-custom-post-type-art-gallery-tutorial/comment-page-1/#comment-59598</link>
		<dc:creator>john</dc:creator>
		<pubDate>Wed, 16 May 2012 13:51:12 +0000</pubDate>
		<guid isPermaLink="false">http://dbaines.com/?p=1920#comment-59598</guid>
		<description>Awesome Thanks for the help got it working with the echo. Also had to put that php inside an img  tag. LOL I am just learning but this was great to finally figure out how to do this.</description>
		<content:encoded><![CDATA[<p>Awesome Thanks for the help got it working with the echo. Also had to put that php inside an img  tag. <acronym title="Laughing out loud">LOL</acronym> I am just learning but this was great to finally figure out how to do this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Custom Post Type Art Gallery Tutorial by David</title>
		<link>http://dbaines.com/blog/archive/wordpress-custom-post-type-art-gallery-tutorial/comment-page-1/#comment-59597</link>
		<dc:creator>David</dc:creator>
		<pubDate>Wed, 16 May 2012 12:51:47 +0000</pubDate>
		<guid isPermaLink="false">http://dbaines.com/?p=1920#comment-59597</guid>
		<description>That shouldn&#039;t be a problem. The function you&#039;re looking for is get_post_meta, you can find more info about that function here: http://codex.wordpress.org/Custom_Fields
Right at the bottom of that page is a template function that you can use to echo the custom field instead of the post thumbnail. 

So say you set up your image using a custom field named &quot;Large Image&quot;, you would use echo get_post_meta($post-&gt;ID, &#039;Large Image&#039;, true);
I imagine this would only echo out the URL for the image or something, so you may need to wrap the echo inside an &lt;img /&gt; tag, you might need to experiment a little with it.</description>
		<content:encoded><![CDATA[<p>That shouldn't be a problem. The function you're looking for is get_post_meta, you can find more info about that function here: <a href="http://codex.wordpress.org/Custom_Fields" rel="nofollow">http://codex.wordpress.org/Custom_Fields</a><br />
Right at the bottom of that page is a template function that you can use to echo the custom field instead of the post thumbnail. </p>
<p>So say you set up your image using a custom field named "Large Image", you would use echo get_post_meta($post->ID, 'Large Image', true);<br />
I imagine this would only echo out the <acronym title="Uniform Resource Locator">URL</acronym> for the image or something, so you may need to wrap the echo inside an <img /> tag, you might need to experiment a little with it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Custom Post Type Art Gallery Tutorial by john</title>
		<link>http://dbaines.com/blog/archive/wordpress-custom-post-type-art-gallery-tutorial/comment-page-1/#comment-59592</link>
		<dc:creator>john</dc:creator>
		<pubDate>Tue, 15 May 2012 14:07:49 +0000</pubDate>
		<guid isPermaLink="false">http://dbaines.com/?p=1920#comment-59592</guid>
		<description>I use advanced custom fileds plugin for wordpress and i am using the code 
&lt;img src=&quot;&quot; alt=&quot;Property&quot; /&gt;
 to display a custom image field type I created.

Following this tutorial how could i get those images to display rather than the featured post image?</description>
		<content:encoded><![CDATA[<p>I use advanced custom fileds plugin for wordpress and i am using the code<br />
&lt;img src=&quot;" alt="Property" /&gt;<br />
 to display a custom image field type I created.</p>
<p>Following this tutorial how could i get those images to display rather than the featured post image?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Usenet Intranet Homepage by David</title>
		<link>http://dbaines.com/blog/archive/usenet-intranet-homepage/comment-page-1/#comment-59573</link>
		<dc:creator>David</dc:creator>
		<pubDate>Mon, 07 May 2012 10:47:51 +0000</pubDate>
		<guid isPermaLink="false">http://dbaines.com/?p=2016#comment-59573</guid>
		<description>It wasn&#039;t intended for external use but I don&#039;t see why it wouldn&#039;t work. As long as your host allows CURL and JSON from other IPs. It could be a XSS issue, does your developer console show any warnings or errors? 

The way I have mine set up is I have a server running in my spare room, all services (sickbeard, sabnzbd, couchpotato etc.) all run off that, along with a web server to run this homepage from. 

I&#039;ve added a debug setting in to the latest commit. This will output the URLs it&#039;s trying to load. If you copy and paste the URL in to your browser you will be able to see if the feeds it tries to load can be found. 

Unfortunately your set up is not the intended use. If you have everything set up to show externally, why not set up a small webserver (XAMPP for example) and run it locally as well?</description>
		<content:encoded><![CDATA[<p>It wasn't intended for external use but I don't see why it wouldn't work. As long as your host allows CURL and JSON from other IPs. It could be a XSS issue, does your developer console show any warnings or errors? </p>
<p>The way I have mine set up is I have a server running in my spare room, all services (sickbeard, sabnzbd, couchpotato etc.) all run off that, along with a web server to run this homepage from. </p>
<p>I've added a debug setting in to the latest commit. This will output the URLs it's trying to load. If you copy and paste the <acronym title="Uniform Resource Locator">URL</acronym> in to your browser you will be able to see if the feeds it tries to load can be found. </p>
<p>Unfortunately your set up is not the intended use. If you have everything set up to show externally, why not set up a small webserver (XAMPP for example) and run it locally as well?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Usenet Intranet Homepage by Danilo Cuellar</title>
		<link>http://dbaines.com/blog/archive/usenet-intranet-homepage/comment-page-1/#comment-59568</link>
		<dc:creator>Danilo Cuellar</dc:creator>
		<pubDate>Sun, 06 May 2012 17:07:23 +0000</pubDate>
		<guid isPermaLink="false">http://dbaines.com/?p=2016#comment-59568</guid>
		<description>Can you add an option to turn off the two sections that pull data on the page? I just deleted it from the index.php and the page loads fast. That is definitely the culprit.</description>
		<content:encoded><![CDATA[<p>Can you add an option to turn off the two sections that pull data on the page? I just deleted it from the index.php and the page loads fast. That is definitely the culprit.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Usenet Intranet Homepage by Danilo Cuellar</title>
		<link>http://dbaines.com/blog/archive/usenet-intranet-homepage/comment-page-1/#comment-59567</link>
		<dc:creator>Danilo Cuellar</dc:creator>
		<pubDate>Sun, 06 May 2012 16:41:52 +0000</pubDate>
		<guid isPermaLink="false">http://dbaines.com/?p=2016#comment-59567</guid>
		<description>Here is my setup.


I have a domain name on hostmonster that I&#039;m using. I have the files placed in the root of that domain. I&#039;ve redownloaded and reinstalled the script. The config files are using the IP address so I can access this remotely. Will it not work like this?

I tried using local IP addresses but that did not load the content on the home page either.

Am I missing something here?</description>
		<content:encoded><![CDATA[<p>Here is my setup.</p>
<p>I have a domain name on hostmonster that I'm using. I have the files placed in the root of that domain. I've redownloaded and reinstalled the script. The config files are using the <acronym title="Internet Protocol">IP</acronym> address so I can access this remotely. Will it not work like this?</p>
<p>I tried using local <acronym title="Internet Protocol">IP</acronym> addresses but that did not load the content on the home page either.</p>
<p>Am I missing something here?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Usenet Intranet Homepage by Danilo Cuellar</title>
		<link>http://dbaines.com/blog/archive/usenet-intranet-homepage/comment-page-1/#comment-59564</link>
		<dc:creator>Danilo Cuellar</dc:creator>
		<pubDate>Sun, 06 May 2012 06:21:01 +0000</pubDate>
		<guid isPermaLink="false">http://dbaines.com/?p=2016#comment-59564</guid>
		<description>Safari gave me the fishing. It only happened with urls that had the username and password added to the beginning of them.

I only removed the username and password from the joined link on functions.php. That only affects the url, right? I still have the user and pass set on the config.

I&#039;ve double checked the API&#039;s and they are correct.

I think the problem IS the fact that I am trying to access it using the IP address. I&#039;ve forwarded the ports though. The loading of the sickbeard, couchpotato, etc pages load fine and fast. It&#039;s just the loading of the content on the home page that is a problem. It&#039;s not loading anything.</description>
		<content:encoded><![CDATA[<p>Safari gave me the fishing. It only happened with urls that had the username and password added to the beginning of them.</p>
<p>I only removed the username and password from the joined link on functions.php. That only affects the url, right? I still have the user and pass set on the config.</p>
<p>I've double checked the <acronym title="Application Programming Interface">API</acronym>'s and they are correct.</p>
<p>I think the problem IS the fact that I am trying to access it using the <acronym title="Internet Protocol">IP</acronym> address. I've forwarded the ports though. The loading of the sickbeard, couchpotato, etc pages load fine and fast. It's just the loading of the content on the home page that is a problem. It's not loading anything.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Usenet Intranet Homepage by David</title>
		<link>http://dbaines.com/blog/archive/usenet-intranet-homepage/comment-page-1/#comment-59563</link>
		<dc:creator>David</dc:creator>
		<pubDate>Sun, 06 May 2012 01:55:40 +0000</pubDate>
		<guid isPermaLink="false">http://dbaines.com/?p=2016#comment-59563</guid>
		<description>Thanks man, I&#039;ve found the issue with the port you mentioned and pushed an update to Github. 

It shouldn&#039;t matter what speed your connection is as it should all be local, unless you&#039;re trying to connect to external computers or via your external IP. It sounds like it can&#039;t connect to your sickbeard and sabnzbd. This would be the cause for the long loading time, due to it trying to connect to something that isn&#039;t there or isn&#039;t accessible, and also the reason why those sections don&#039;t work. Make sure you have the sabnzbd and sickbeard connection settings as well as the API keys set correctly. If the links to sickbeard and sabnzbd work but those sections do not then it sounds like the API keys might not be correct. 

Which browser pops up the phishing warning? I did a quick test in Chrome and Firefox and didn&#039;t get a warning. Internet Explorer does not support URLs with authentication details in them, so that&#039;s obviously not going to work. It&#039;s possible that removing the usernames and passwords may have caused the issues you are experiencing with those sections not loading. 

Let me know if you have any questions or if I can help in any other way. If you know how to use Github feel free to fork and issue a pull request for any bugs you manage to find and fix :)</description>
		<content:encoded><![CDATA[<p>Thanks man, I've found the issue with the port you mentioned and pushed an update to Github. </p>
<p>It shouldn't matter what speed your connection is as it should all be local, unless you're trying to connect to external computers or via your external <acronym title="Internet Protocol">IP</acronym>. It sounds like it can't connect to your sickbeard and sabnzbd. This would be the cause for the long loading time, due to it trying to connect to something that isn't there or isn't accessible, and also the reason why those sections don't work. Make sure you have the sabnzbd and sickbeard connection settings as well as the <acronym title="Application Programming Interface">API</acronym> keys set correctly. If the links to sickbeard and sabnzbd work but those sections do not then it sounds like the <acronym title="Application Programming Interface">API</acronym> keys might not be correct. </p>
<p>Which browser pops up the phishing warning? I did a quick test in Chrome and Firefox and didn't get a warning. Internet Explorer does not support URLs with authentication details in them, so that's obviously not going to work. It's possible that removing the usernames and passwords may have caused the issues you are experiencing with those sections not loading. </p>
<p>Let me know if you have any questions or if I can help in any other way. If you know how to use Github feel free to fork and issue a pull request for any bugs you manage to find and fix <img src='http://dbaines.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Usenet Intranet Homepage by Danilo Cuellar</title>
		<link>http://dbaines.com/blog/archive/usenet-intranet-homepage/comment-page-1/#comment-59562</link>
		<dc:creator>Danilo Cuellar</dc:creator>
		<pubDate>Sat, 05 May 2012 23:51:51 +0000</pubDate>
		<guid isPermaLink="false">http://dbaines.com/?p=2016#comment-59562</guid>
		<description>I downloaded this and installed it. Looks very nice. It&#039;s not functioning as well as it should so I was wondering if I could ask a few questions and possibly request a few features.

First of all, I added target blanks to each of the icons so that I can always have it open since it is my homepage.

I also noticed that the link to couchpotato added the port twice to the end of the ip address. I managed to correct it.

What I&#039;m having trouble with now is with the loading time on this home page. It takes up to 3 minutes to load with a 40mbps down connection. It also will not load the &quot;Currently downloading&quot;, &quot;Recently finished&quot;, or the &quot;TV Today&quot; sections.

One more thing, I had to delete the joining for the username and password on the functions.php file because it popped up with a fishing warning. Not real sure how that works, but I really don&#039;t need to do that because the browser will remember the password.

If I could get you to help me with solving the loading time and those sections not loading I would greatly appreciate it. Thank you for all your hard work so far. It looks great.

Thanks,
Danilo Cuellar</description>
		<content:encoded><![CDATA[<p>I downloaded this and installed it. Looks very nice. It's not functioning as well as it should so I was wondering if I could ask a few questions and possibly request a few features.</p>
<p>First of all, I added target blanks to each of the icons so that I can always have it open since it is my homepage.</p>
<p>I also noticed that the link to couchpotato added the port twice to the end of the ip address. I managed to correct it.</p>
<p>What I'm having trouble with now is with the loading time on this home page. It takes up to 3 minutes to load with a 40mbps down connection. It also will not load the "Currently downloading", "Recently finished", or the "TV Today" sections.</p>
<p>One more thing, I had to delete the joining for the username and password on the functions.php file because it popped up with a fishing warning. Not real sure how that works, but I really don't need to do that because the browser will remember the password.</p>
<p>If I could get you to help me with solving the loading time and those sections not loading I would greatly appreciate it. Thank you for all your hard work so far. It looks great.</p>
<p>Thanks,<br />
Danilo Cuellar</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Custom Post Type Search by David</title>
		<link>http://dbaines.com/blog/archive/wordpress-custom-post-type-multiple-search/comment-page-1/#comment-59480</link>
		<dc:creator>David</dc:creator>
		<pubDate>Wed, 11 Apr 2012 02:33:04 +0000</pubDate>
		<guid isPermaLink="false">http://dbaines.com/?p=1551#comment-59480</guid>
		<description>The pagination seems to be working correctly on my website. I don&#039;t remember doing anything specifically to make it work but I have my template up on Github if you feel like looking through the code and seeing if anything jumps out at you: https://github.com/dbaines/dbaines2012-Wordpress-Theme

Sorry I couldn&#039;t be much more help.</description>
		<content:encoded><![CDATA[<p>The pagination seems to be working correctly on my website. I don't remember doing anything specifically to make it work but I have my template up on Github if you feel like looking through the code and seeing if anything jumps out at you: <a href="https://github.com/dbaines/dbaines2012-Wordpress-Theme" rel="nofollow">https://github.com/dbaines/dbaines2012-Wordpress-Theme</a></p>
<p>Sorry I couldn't be much more help.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic page generated in 0.424 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-05-17 02:21:54 -->
<!-- Compression = gzip -->
