<?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 on: Generating bit.ly URL in jobberBase</title>
	<atom:link href="http://www.redjumpsuit.net/2009/08/08/generating-bitly-url-in-jobberbase/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.redjumpsuit.net/2009/08/08/generating-bitly-url-in-jobberbase/</link>
	<description>jobberBase custom development and support</description>
	<lastBuildDate>Thu, 29 Jul 2010 21:33:30 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Weblicator</title>
		<link>http://www.redjumpsuit.net/2009/08/08/generating-bitly-url-in-jobberbase/comment-page-1/#comment-558</link>
		<dc:creator>Weblicator</dc:creator>
		<pubDate>Thu, 01 Jul 2010 21:01:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.redjumpsuit.net/?p=619#comment-558</guid>
		<description>Making this work for version 1.9 requires the following changes (please note, I have not refactored 

any code, all changes are merely additions to the existing code.

The step numbers refer to those listed in the post.

#3 - If you have changed the name of the &#039;jobs&#039; table
        before: ALTER TABLE `jobs` ADD `bitly` VARCHAR( 100 ) NULL;
        after: ALTER TABLE `[your table name]` ADD `bitly` VARCHAR( 100 ) NULL;

#4 - Add APP_PATH to this line:
        before: require_once &#039;_includes/bitly.php&#039;;
        after: require_once APP_PATH . &#039;_includes/bitly.php&#039;;

#5 - Add DB_PREFIX to these lines:
        before: $sql = &#039;SELECT bitly FROM jobs...
        after: $sql = &#039;SELECT bitly FROM &#039;.DB_PREFIX.&#039;jobs...
        
        before: $sqlu = &#039;UPDATE jobs SET bitly...
        after: $sqlu = &#039;UPDATE &#039;.DB_PREFIX.&#039;jobs SET bitly...

#6 - Add URL_JOB to this line:
        before: $joburl = BASE_URL . &#039;job/&#039; . $id . &#039;/&#039;;
        after: $joburl = BASE_URL . URL_JOBS .&#039;/&#039; . $id . &#039;/&#039;;

#7 - Add URL_JOB to this line:
        before: $joburl = BASE_URL_ORIG . &#039;job/&#039; . $id . &#039;/&#039;;
        after: $joburl = BASE_URL_ORIG . URL_JOBS . $id . &#039;/&#039;;

To kick this feature up a notch, I&#039;m going to try to introduce the Twitter API into this code for an automated Tweet of every new job posting.</description>
		<content:encoded><![CDATA[<p>Making this work for version 1.9 requires the following changes (please note, I have not refactored </p>
<p>any code, all changes are merely additions to the existing code.</p>
<p>The step numbers refer to those listed in the post.</p>
<p>#3 &#8211; If you have changed the name of the &#8216;jobs&#8217; table<br />
        before: ALTER TABLE `jobs` ADD `bitly` VARCHAR( 100 ) NULL;<br />
        after: ALTER TABLE `[your table name]` ADD `bitly` VARCHAR( 100 ) NULL;</p>
<p>#4 &#8211; Add APP_PATH to this line:<br />
        before: require_once &#8216;_includes/bitly.php&#8217;;<br />
        after: require_once APP_PATH . &#8216;_includes/bitly.php&#8217;;</p>
<p>#5 &#8211; Add DB_PREFIX to these lines:<br />
        before: $sql = &#8216;SELECT bitly FROM jobs&#8230;<br />
        after: $sql = &#8216;SELECT bitly FROM &#8216;.DB_PREFIX.&#8217;jobs&#8230;</p>
<p>        before: $sqlu = &#8216;UPDATE jobs SET bitly&#8230;<br />
        after: $sqlu = &#8216;UPDATE &#8216;.DB_PREFIX.&#8217;jobs SET bitly&#8230;</p>
<p>#6 &#8211; Add URL_JOB to this line:<br />
        before: $joburl = BASE_URL . &#8216;job/&#8217; . $id . &#8216;/&#8217;;<br />
        after: $joburl = BASE_URL . URL_JOBS .&#8217;/&#8217; . $id . &#8216;/&#8217;;</p>
<p>#7 &#8211; Add URL_JOB to this line:<br />
        before: $joburl = BASE_URL_ORIG . &#8216;job/&#8217; . $id . &#8216;/&#8217;;<br />
        after: $joburl = BASE_URL_ORIG . URL_JOBS . $id . &#8216;/&#8217;;</p>
<p>To kick this feature up a notch, I&#8217;m going to try to introduce the Twitter API into this code for an automated Tweet of every new job posting.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: E.J. Semeijn</title>
		<link>http://www.redjumpsuit.net/2009/08/08/generating-bitly-url-in-jobberbase/comment-page-1/#comment-191</link>
		<dc:creator>E.J. Semeijn</dc:creator>
		<pubDate>Thu, 03 Sep 2009 13:16:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.redjumpsuit.net/?p=619#comment-191</guid>
		<description>I tried using the bit.ly url instead of the regular one, but can&#039;t get it to work. Any help/ tips would be appreciated :)</description>
		<content:encoded><![CDATA[<p>I tried using the bit.ly url instead of the regular one, but can&#8217;t get it to work. Any help/ tips would be appreciated <img src='http://www.redjumpsuit.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
