<?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>UPWebDesign LLC</title>
	<atom:link href="http://www.upwebdesign.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.upwebdesign.com</link>
	<description>Grand Rapids Web Development and Web Design</description>
	<lastBuildDate>Mon, 13 Jun 2011 02:40:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Force WordPress to Upload Plugins and Themes without FTP</title>
		<link>http://www.upwebdesign.com/php/force-wordpress-to-upload-plugins-and-themes-without-ftp/</link>
		<comments>http://www.upwebdesign.com/php/force-wordpress-to-upload-plugins-and-themes-without-ftp/#comments</comments>
		<pubDate>Mon, 13 Jun 2011 02:40:49 +0000</pubDate>
		<dc:creator>Jesse Vista</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.upwebdesign.com/?p=177</guid>
		<description><![CDATA[So one day I was trying to upload a plugin to a new WordPress site and when I got the FTP screen I figured I could just go in and update a few permissions and all would be well.  NOPE.  I spent two nights trying to figure out why I could not install plugins without [...]]]></description>
		<wfw:commentRss>http://www.upwebdesign.com/php/force-wordpress-to-upload-plugins-and-themes-without-ftp/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Write a Module for osCommerce v3.0</title>
		<link>http://www.upwebdesign.com/oscommerce/how-to-write-a-module-for-oscommerce-v3-0/</link>
		<comments>http://www.upwebdesign.com/oscommerce/how-to-write-a-module-for-oscommerce-v3-0/#comments</comments>
		<pubDate>Wed, 26 Jan 2011 02:32:05 +0000</pubDate>
		<dc:creator>Jesse Vista</dc:creator>
				<category><![CDATA[OSCommerce]]></category>
		<category><![CDATA[boxes]]></category>
		<category><![CDATA[language definitions]]></category>
		<category><![CDATA[modules]]></category>
		<category><![CDATA[oscommerce admin]]></category>
		<category><![CDATA[oscommerce modules]]></category>
		<category><![CDATA[oscommerce v3.0]]></category>

		<guid isPermaLink="false">http://www.upwebdesign.com/?p=147</guid>
		<description><![CDATA[This article explains how to create an osCommerce 3.0 box or content module and the gotchas along the way... If you are struggling with modules in OSC3 this is a good read.]]></description>
		<wfw:commentRss>http://www.upwebdesign.com/oscommerce/how-to-write-a-module-for-oscommerce-v3-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jquery Function Check</title>
		<link>http://www.upwebdesign.com/javascript/jquery-function-check/</link>
		<comments>http://www.upwebdesign.com/javascript/jquery-function-check/#comments</comments>
		<pubDate>Thu, 30 Sep 2010 15:02:56 +0000</pubDate>
		<dc:creator>Jesse Vista</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[function]]></category>

		<guid isPermaLink="false">http://www.upwebdesign.com/?p=125</guid>
		<description><![CDATA[jQuery plug-in function check. Code inside...]]></description>
		<wfw:commentRss>http://www.upwebdesign.com/javascript/jquery-function-check/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Multiple Post Thumbnails</title>
		<link>http://www.upwebdesign.com/html/wordpress-multiple-post-thumbnails/</link>
		<comments>http://www.upwebdesign.com/html/wordpress-multiple-post-thumbnails/#comments</comments>
		<pubDate>Wed, 29 Sep 2010 17:20:47 +0000</pubDate>
		<dc:creator>Jesse Vista</dc:creator>
				<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://www.upwebdesign.com/?p=122</guid>
		<description><![CDATA[Found a real nice plug-in for WordPress which helps support a secondary featured image for your posts, pages or custom posts.  You can find it here: http://wordpress.org/extend/plugins/multiple-post-thumbnails/ Couple things to note: The site does not state where to add this code&#8230; add it to the bottom of your functions.php file in your theme. The code [...]]]></description>
		<wfw:commentRss>http://www.upwebdesign.com/html/wordpress-multiple-post-thumbnails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Term by Post Slug WordPress</title>
		<link>http://www.upwebdesign.com/html/get-term-by-post-slug-wordpress/</link>
		<comments>http://www.upwebdesign.com/html/get-term-by-post-slug-wordpress/#comments</comments>
		<pubDate>Wed, 22 Sep 2010 15:00:20 +0000</pubDate>
		<dc:creator>Jesse Vista</dc:creator>
				<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://www.upwebdesign.com/?p=118</guid>
		<description><![CDATA[Here is an example anyone can add in their functions.php file or plugins to get WordPress terms or taxonomies by the post slug.  Hope this helps some people out. /** * Get taxonomy from a post slug */ function get_term_by_post_slug($post_slug, $output = OBJECT) { global $wpdb; $strsql = &#8220;SELECT wp_terms.name &#8220;; $strsql .= &#8220;FROM wp_terms [...]]]></description>
		<wfw:commentRss>http://www.upwebdesign.com/html/get-term-by-post-slug-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search Box for Custom Post Types in WordPress</title>
		<link>http://www.upwebdesign.com/html/search-box-for-custom-post-types-in-wordpress/</link>
		<comments>http://www.upwebdesign.com/html/search-box-for-custom-post-types-in-wordpress/#comments</comments>
		<pubDate>Tue, 14 Sep 2010 20:21:02 +0000</pubDate>
		<dc:creator>Jesse Vista</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[form code]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.upwebdesign.com/?p=109</guid>
		<description><![CDATA[This took me hours to figure out, yet is it so simple. This needs to be documented more so I thought I would post about it. Here is the snipet that makes the whole thing work. &#60;form action="" id="searchform" method="get" role="search"&#62; &#60;input type="hidden" name="post_type" value="YOUR_POST_TYPE" /&#62; &#60;div&#62; &#60;label for="s" class="screen-reader-text"&#62;Search for:&#60;/label&#62; &#60;input type="text" id="s" name="s" [...]]]></description>
		<wfw:commentRss>http://www.upwebdesign.com/html/search-box-for-custom-post-types-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CRE Loaded/OSCommerce Email When MySQL Error Happens</title>
		<link>http://www.upwebdesign.com/html/cre-loadedoscommerce-email-when-mysql-error-happens/</link>
		<comments>http://www.upwebdesign.com/html/cre-loadedoscommerce-email-when-mysql-error-happens/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 04:04:43 +0000</pubDate>
		<dc:creator>Jesse Vista</dc:creator>
				<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://www.upwebdesign.com/?p=99</guid>
		<description><![CDATA[Just in case you ever wanted to know where the email gets sent when a MySQL error happens in CRE Loaded or OSCommerce it is in includes/functions/database.php around line 38! Good to know!]]></description>
		<wfw:commentRss>http://www.upwebdesign.com/html/cre-loadedoscommerce-email-when-mysql-error-happens/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plesk, vhost.conf, and Sub-Domains</title>
		<link>http://www.upwebdesign.com/rants/plesk-vhost-conf-and-sub-domains/</link>
		<comments>http://www.upwebdesign.com/rants/plesk-vhost-conf-and-sub-domains/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 02:47:09 +0000</pubDate>
		<dc:creator>Jesse Vista</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://www.upwebdesign.com/?p=16</guid>
		<description><![CDATA[If anyone that has server configuration knowledge and has tried to configure a server with Plesk installed, they probably had to go through a learning curve to get everything strait. Here is what I learned: When creating new sub-domains with a wildcard domain, each sub-domain needs its own hosting account. To do that you go [...]]]></description>
		<wfw:commentRss>http://www.upwebdesign.com/rants/plesk-vhost-conf-and-sub-domains/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AJAX with OK status but still throwing error</title>
		<link>http://www.upwebdesign.com/php/ajax-with-ok-status-but-still-throwing-error/</link>
		<comments>http://www.upwebdesign.com/php/ajax-with-ok-status-but-still-throwing-error/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 20:07:43 +0000</pubDate>
		<dc:creator>Jesse Vista</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.upwebdesign.com/?p=81</guid>
		<description><![CDATA[Just a quick note to say AJAX can be tricky and difficult to debug on occasion. When receiving an OK response from an AJAX request you would not expect an unsuccessful result.  This happens when using jQuery and a dataType for the response being XML and not setting the headers correctly to specify that you [...]]]></description>
		<wfw:commentRss>http://www.upwebdesign.com/php/ajax-with-ok-status-but-still-throwing-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Shipping Per Product CRE Loaded/OSCommerce</title>
		<link>http://www.upwebdesign.com/web-development/free-shipping-per-product-cre-loaded-oscommerce/</link>
		<comments>http://www.upwebdesign.com/web-development/free-shipping-per-product-cre-loaded-oscommerce/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 04:37:33 +0000</pubDate>
		<dc:creator>Jesse Vista</dc:creator>
				<category><![CDATA[CRE Loaded]]></category>
		<category><![CDATA[OSCommerce]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.upwebdesign.com/?p=64</guid>
		<description><![CDATA[So, one day I found a need to have free shipping &#8220;per product&#8221; for CRE Loaded/OSCommerce.  First I search for it and found a couple candidates that seemed like they would do the job.  They just seemed too complicated to even try to set up, so I decided to just figure this out on my [...]]]></description>
		<wfw:commentRss>http://www.upwebdesign.com/web-development/free-shipping-per-product-cre-loaded-oscommerce/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

