<?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>RedJumpsuit</title>
	<atom:link href="http://www.redjumpsuit.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.redjumpsuit.net</link>
	<description>jobberBase custom development and support</description>
	<lastBuildDate>Thu, 04 Mar 2010 14:55:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>reCaptcha on Contact Form</title>
		<link>http://www.redjumpsuit.net/2010/01/06/recaptcha-on-contact-form/</link>
		<comments>http://www.redjumpsuit.net/2010/01/06/recaptcha-on-contact-form/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 09:20:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[jobberBase]]></category>
		<category><![CDATA[anti spam]]></category>
		<category><![CDATA[contact]]></category>
		<category><![CDATA[contact form recaptcha]]></category>
		<category><![CDATA[jobberbase anti spam]]></category>
		<category><![CDATA[recaptcha]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[spam blocking]]></category>

		<guid isPermaLink="false">http://www.redjumpsuit.net/?p=1123</guid>
		<description><![CDATA[our website Obitwaryo.net has started getting spam messages from bots sending through the contact form, and obviously the easiest way to minimize (if not all together stop) is to just enable reCaptcha on the contact form. by default, jobberBase only has reCaptcha enabled when posting a new job and applying for a job. so here&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.redjumpsuit.net/wp-content/uploads/2010/01/contact-us.png" alt="contact-us" title="contact-us" width="356" height="232" class="alignleft size-full wp-image-1125" />our website <a href="http://obitwaryo.net">Obitwaryo.net</a> has started getting spam messages from bots sending through the contact form, and obviously the easiest way to minimize (if not all together stop) is to just enable reCaptcha on the contact form. by default, jobberBase only has reCaptcha enabled when posting a new job and applying for a job. so here&#8217;s how you can implement reCaptcha on the Contact Form as well.</p>
<p>open <strong>page_page.php</strong> on the root folder and add this before the first line:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$smarty</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">assign</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'the_captcha'</span><span style="color: #339933;">,</span> recaptcha_get_html<span style="color: #009900;">&#40;</span>CAPTCHA_PUBLIC_KEY<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$smarty</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">assign</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'ENABLE_RECAPTCHA'</span><span style="color: #339933;">,</span> ENABLE_RECAPTCHA<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>on the same file, before these lines:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$contact_name</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$errors</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'contact_name'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$translations</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'contact'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'name_error'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>add this:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">// validation</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>ENABLE_RECAPTCHA<span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$resp</span> <span style="color: #339933;">=</span> recaptcha_check_answer<span style="color: #009900;">&#40;</span>CAPTCHA_PRIVATE_KEY<span style="color: #339933;">,</span>
	<span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;REMOTE_ADDR&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> 
	<span style="color: #000088;">$_POST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;recaptcha_challenge_field&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span>
	<span style="color: #000088;">$_POST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;recaptcha_response_field&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #000088;">$resp</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">is_valid</span><span style="color: #009900;">&#41;</span> 
	<span style="color: #009900;">&#123;</span>
		<span style="color: #000088;">$errors</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'captcha'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$translations</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'captcha'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'captcha_error'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>that should take care of generating the reCaptcha field. and then next, open /_includes/default/page.tpl and before the submit field</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>input type<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;submit&quot;</span> name<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;submit&quot;</span> id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;submit&quot;</span> value<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;{<span style="color: #006699; font-weight: bold;">$translations</span>.contact.submit}&quot;</span> <span style="color: #339933;">/&gt;</span></pre></div></div>

<p>add this block:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #009900;">&#123;</span><span style="color: #b1b100;">if</span> <span style="color: #000088;">$ENABLE_RECAPTCHA</span><span style="color: #009900;">&#125;</span>
<span style="color: #339933;">&lt;</span>label<span style="color: #339933;">&gt;</span>Anti<span style="color: #339933;">-</span>Spam<span style="color: #339933;">:&lt;/</span>label<span style="color: #339933;">&gt;&lt;</span>br <span style="color: #339933;">/&gt;</span>
	<span style="color: #009900;">&#123;</span>literal<span style="color: #009900;">&#125;</span>
	<span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span>
	  <span style="color: #000000; font-weight: bold;">var</span> RecaptchaOptions <span style="color: #339933;">=</span> <span style="color: #009900;">&#123;</span>
		theme <span style="color: #339933;">:</span> <span style="color: #0000ff;">'white'</span><span style="color: #339933;">,</span>
		tabindex <span style="color: #339933;">:</span> <span style="color: #cc66cc;">9</span>
	  <span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
	<span style="color: #000000; font-weight: bold;">&lt;/script&gt;</span>
	<span style="color: #009900;">&#123;</span><span style="color: #339933;">/</span>literal<span style="color: #009900;">&#125;</span>
	<span style="color: #009900;">&#123;</span><span style="color: #000088;">$the_captcha</span><span style="color: #009900;">&#125;</span> <span style="color: #339933;">&lt;</span>span <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;validation-error&quot;</span><span style="color: #339933;">&gt;</span><span style="color: #009900;">&#123;</span><span style="color: #b1b100;">if</span> <span style="color: #000088;">$smarty</span><span style="color: #339933;">.</span>session<span style="color: #339933;">.</span>apply_errors<span style="color: #339933;">.</span>captcha<span style="color: #009900;">&#125;</span>
	<span style="color: #339933;">&lt;</span>img src<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;<span style="color: #006699; font-weight: bold;">{$BASE_URL}</span>_templates/<span style="color: #006699; font-weight: bold;">{$THEME}</span>/img/icon-delete.png&quot;</span> alt<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;&quot;</span> <span style="color: #339933;">/&gt;</span> <span style="color: #009900;">&#123;</span><span style="color: #000088;">$errors</span><span style="color: #339933;">.</span>captcha<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#123;</span><span style="color: #339933;">/</span><span style="color: #b1b100;">if</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">&lt;/</span>span<span style="color: #339933;">&gt;</span>
	<span style="color: #339933;">&lt;</span>br <span style="color: #339933;">/&gt;&lt;</span>br <span style="color: #339933;">/&gt;</span>
<span style="color: #009900;">&#123;</span><span style="color: #339933;">/</span><span style="color: #b1b100;">if</span><span style="color: #009900;">&#125;</span></pre></div></div>

<form action="https://www.paypal.com/cgi-bin/webscr" method="post"><div class="paypal-donations"><input type="hidden" name="cmd" value="_donations" /><input type="hidden" name="business" value="myredjumpsuit@gmail.com" /><input type="hidden" name="item_name" value="reCaptcha on Contact Form" /><input type="hidden" name="currency_code" value="USD" /><input type="image" src="http://www.redjumpsuit.net/wp-content/uploads/2010/02/btn_donate_LG.gif" name="submit" alt="PayPal - The safer, easier way to pay online." /><img alt="" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1" /></div></form>
]]></content:encoded>
			<wfw:commentRss>http://www.redjumpsuit.net/2010/01/06/recaptcha-on-contact-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Online Job Manager for jobberBase v1.8</title>
		<link>http://www.redjumpsuit.net/2010/01/04/online-job-manager-for-jobberbase-1-8/</link>
		<comments>http://www.redjumpsuit.net/2010/01/04/online-job-manager-for-jobberbase-1-8/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 18:43:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[jobberBase]]></category>
		<category><![CDATA[employer panel]]></category>
		<category><![CDATA[job manager]]></category>
		<category><![CDATA[jobberbase company login]]></category>
		<category><![CDATA[manage jobs online]]></category>

		<guid isPermaLink="false">http://www.redjumpsuit.net/?p=1087</guid>
		<description><![CDATA[how would you like to allow your job posters to be able to manage their jobs online, and not just through the emails sent to them? took a while before i was able to put together this script, but it&#8217;s finally done! i have been playing how to write this code on my mind probably [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><img class="size-full wp-image-1093 aligncenter" title="list" src="http://www.redjumpsuit.net/wp-content/uploads/2010/01/list.png" alt="list" width="575" height="329" />how would you like to allow your job posters to be able to manage their jobs online, and not just through the emails sent to them? took a while before i was able to put together this script, but it&#8217;s finally done! i have been playing how to write this code on my mind probably since i began writing hacks for jobberBase. i&#8217;d actually consider it an <strong>ultra-lite version</strong> of <a href="http://www.redjumpsuit.net/2009/09/23/jobberbase-v18-w-company-login-system/">company/employer login add-on</a>.</p>
<p style="text-align: center;"><img class="size-full wp-image-1092 aligncenter" title="manage" src="http://www.redjumpsuit.net/wp-content/uploads/2010/01/manage.png" alt="manage" width="575" height="384" /></p>
<p><strong>features include the following:</strong></p>
<ul>
<li> job poster does not need to register for an account</li>
<li> no need to login</li>
<li> no forgetting passwords</li>
<li> can manage (edit or delete) older posted jobs without accessing the job&#8217;s email</li>
<li> job poster only needs the most recent email received when his/her job was posted</li>
<li> will not affect any of your customizations</li>
<li> supports pagination as well</li>
</ul>
<p>this hack is a sort of workaround so that people would no longer need to keep their old publish job confirmation just so they can edit or deactivate their jobs, the most recent publish email would be enough to access all the job poster&#8217;s previous job ads (where the job poster used the same email address to post.)</p>
<p>if you are interested in this hack, <strong>simply make a PayPal donation</strong> (US$10 and up preferably) to this post (if you have benefited from any of my previous work) and you will receive the full source code and installation instructions. </p>
<p> <img src='http://www.redjumpsuit.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><form action="https://www.paypal.com/cgi-bin/webscr" method="post"><div class="paypal-donations"><input type="hidden" name="cmd" value="_donations" /><input type="hidden" name="business" value="myredjumpsuit@gmail.com" /><input type="hidden" name="item_name" value="Online Job Manager for jobberBase 1.8" /><input type="hidden" name="currency_code" value="USD" /><input type="image" src="http://www.redjumpsuit.net/wp-content/uploads/2010/02/btn_donate_LG.gif" name="submit" alt="PayPal - The safer, easier way to pay online." /><img alt="" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1" /></div></form><br />
Please read the <a href="http://www.redjumpsuit.net/software-license/">license agreement</a> before making a donation (#3 not applicable here but the rest is.)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.redjumpsuit.net/2010/01/04/online-job-manager-for-jobberbase-1-8/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>jobberBase Hosting Tips</title>
		<link>http://www.redjumpsuit.net/2009/12/29/jobberbase-hosting/</link>
		<comments>http://www.redjumpsuit.net/2009/12/29/jobberbase-hosting/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 15:54:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[jobberBase]]></category>
		<category><![CDATA[help installing]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[in motion]]></category>
		<category><![CDATA[inmotion]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[installation problems]]></category>
		<category><![CDATA[installing]]></category>
		<category><![CDATA[JOBS]]></category>
		<category><![CDATA[just host]]></category>
		<category><![CDATA[justhost]]></category>
		<category><![CDATA[rewrite]]></category>
		<category><![CDATA[shared hosting]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.redjumpsuit.net/?p=973</guid>
		<description><![CDATA[the last few weeks i have been working a lot with people who have had difficulties and issues installing jobberBase on their hosting services. supposedly, jobberBase should work as it is without a hitch. i have done several hundred different installations and i haven&#8217;t encountered many major issues than with the last few days.
i am [...]]]></description>
			<content:encoded><![CDATA[<p>the last few weeks i have been working a lot with people who have had difficulties and issues installing jobberBase on their hosting services. supposedly, jobberBase should work as it is without a hitch. i have done several hundred different installations and i haven&#8217;t encountered many major issues than with the last few days.</p>
<p>i am here to save you all the headaches of installing jobberBase by recommending the Top 2 Hosting services that I have personal experience with installing numerous jobberBase websites without a problem.</p>
<p><a href="http://www.awesomejobsites.com/recommend.php?who=inmotion" target="_blank"><strong>InMotion</strong></a><a href="http://www.awesomejobsites.com/recommend.php?who=inmotion"><br />
<img class="alignnone" title="In Motion" src="http://www.redjumpsuit.net/wp-content/uploads/2009/12/inmotion.gif" alt="In Motion" width="210" height="66" /></a></p>
<ul>
<li>Fast email with SPAM blocking</li>
<li>Different levels of hosting so you can grow</li>
<li>90 day money back guarantee (best I know of)</li>
<li>Very reliable with 99.9% Uptime</li>
<li>Easy to use control panel and a premium web site builder</li>
<li>Unlimited disk space and Unlimited monthly traffic (Business plan)</li>
<li>Very helpful, probably best known for top technical support</li>
</ul>
<p><a href="http://www.awesomejobsites.com/recommend.php?who=justhost" target="_blank"><strong>JustHost</strong></a><br />
<a href="http://www.awesomejobsites.com/recommend.php?who=justhost"><img title="Just Host" src="http://www.redjumpsuit.net/wp-content/uploads/2009/12/justhost.png" alt="Just Host" width="256" height="62" /></a></p>
<ul>
<li>FREE Domain For Life &amp; FREE Instant Setup</li>
<li>No Hidden Fees</li>
<li>Unlimited GBs of Web Space</li>
<li>Unlimited GBs of Transfer</li>
<li>Unlimited Domain Hosting</li>
<li>Unlimited E-Mail Accounts</li>
<li>Unlimited MySQL Databases</li>
<li>SSL, FTP, Stats CGI, Ruby (RoR), Perl, PHP, MySQL</li>
</ul>
<p>if you do sign-up on any of these hosting services, let me know and i will even do a free installation for you<span style="color: #ff0000;">*</span></p>
<p><span style="color: #000000; font-weight: bold; font-size:1.2em;">Installing jobberBase on a sub-directory called &#8216;/jobs&#8217;</span><br />
this has been a very common issue on people installing jobberBase on a sub-directory called &#8216;/jobs&#8217;, this is an issue because jobberBase uses the &#8216;/jobs&#8217; URL (not directory) when publishing jobs and this gets in conflict when the folder also has the same name of &#8216;jobs&#8217;. to resolve the issue you can try the following:</p>
<p>on your site&#8217;s <strong>/jobs/.htaccess</strong> file, update the content to this:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># AddType x-mapp-php5 .php
</span><span style="color: #666666; font-style: italic;"># AddHandler x-mapp-php5 .php
</span>
RewriteEngine on
Options <span style="color: #339933;">+</span>FollowSymlinks
&nbsp;
RewriteBase <span style="color: #339933;">/</span>jobs
&nbsp;
RewriteCond <span style="color: #339933;">%</span><span style="color: #009900;">&#123;</span>REQUEST_FILENAME<span style="color: #009900;">&#125;</span> <span style="color: #339933;">!-</span>f
RewriteCond <span style="color: #339933;">%</span><span style="color: #009900;">&#123;</span>REQUEST_FILENAME<span style="color: #009900;">&#125;</span> <span style="color: #339933;">!-</span>d
RewriteRule <span style="color: #339933;">.</span> index<span style="color: #339933;">.</span>php <span style="color: #009900;">&#91;</span>L<span style="color: #009900;">&#93;</span>
&nbsp;
ErrorDocument <span style="color: #cc66cc;">404</span> <span style="color: #339933;">/</span>page<span style="color: #339933;">-</span>unavailable<span style="color: #339933;">/</span>
&nbsp;
<span style="color: #339933;">&lt;</span>files ~ <span style="color: #0000ff;">&quot;\.tpl$&quot;</span><span style="color: #339933;">&gt;</span>
order deny<span style="color: #339933;">,</span>allow
allow from none
deny from all
<span style="color: #339933;">&lt;/</span>files<span style="color: #339933;">&gt;</span></pre></div></div>

<p>and on your site&#8217;s <strong>/jobs/admin/.htaccess</strong> file, update the content to this:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">RewriteEngine on
Options <span style="color: #339933;">+</span>FollowSymlinks
&nbsp;
RewriteBase <span style="color: #339933;">/</span>jobs<span style="color: #339933;">/</span>admin
&nbsp;
RewriteCond <span style="color: #339933;">%</span><span style="color: #009900;">&#123;</span>REQUEST_FILENAME<span style="color: #009900;">&#125;</span> <span style="color: #339933;">!-</span>f
RewriteCond <span style="color: #339933;">%</span><span style="color: #009900;">&#123;</span>REQUEST_FILENAME<span style="color: #009900;">&#125;</span> <span style="color: #339933;">!-</span>d
RewriteRule <span style="color: #339933;">.</span> index<span style="color: #339933;">.</span>php <span style="color: #009900;">&#91;</span>L<span style="color: #009900;">&#93;</span>
&nbsp;
ErrorDocument <span style="color: #cc66cc;">404</span> <span style="color: #339933;">/</span>page<span style="color: #339933;">-</span>unavailable<span style="color: #339933;">/</span></pre></div></div>

<p>personally, i <strong>DO NOT</strong> recommend installing jobberBase on a &#8216;/jobs&#8217; sub-directory as the URL the jobs will be on will be pretty redundant, like:</p>
<p><code><strong>http://www.somewebsite.com/jobs/job/1/web-developer-needed-at-foo-inc/</strong></code></p>
<p>instead if you really want to use the &#8216;jobs&#8217; word, i&#8217;d recommend installing jobberBase on a sub-domain instead, like:</p>
<p><code><strong>http://jobs.somewebsite.com/job/1/web-developer-needed-at-foo-inc/</strong></code></p>
<p><em><span style="color: #ff0000;">*</span> free installation is offered only when the links from this site is used to sign-up for a hosting plan.</em></p>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post"><div class="paypal-donations"><input type="hidden" name="cmd" value="_donations" /><input type="hidden" name="business" value="myredjumpsuit@gmail.com" /><input type="hidden" name="item_name" value="jobberBase Hosting Tip" /><input type="hidden" name="currency_code" value="USD" /><input type="image" src="http://www.redjumpsuit.net/wp-content/uploads/2010/02/btn_donate_LG.gif" name="submit" alt="PayPal - The safer, easier way to pay online." /><img alt="" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1" /></div></form>
]]></content:encoded>
			<wfw:commentRss>http://www.redjumpsuit.net/2009/12/29/jobberbase-hosting/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Squarely &#8211; Free jobberBase Template</title>
		<link>http://www.redjumpsuit.net/2009/12/16/squarely-free-jobberbase-template/</link>
		<comments>http://www.redjumpsuit.net/2009/12/16/squarely-free-jobberbase-template/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 06:03:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[jobberBase]]></category>
		<category><![CDATA[free jobberbase template]]></category>
		<category><![CDATA[free jobberbase theme]]></category>
		<category><![CDATA[jobberbase template]]></category>
		<category><![CDATA[jobberbase templates]]></category>
		<category><![CDATA[jobberbase theme]]></category>
		<category><![CDATA[jobberbase themes]]></category>

		<guid isPermaLink="false">http://www.redjumpsuit.net/?p=963</guid>
		<description><![CDATA[
Squarely is a template I found on Free CSS Templates website some time ago that I actually converted to jobberBase, was for v1.7 back then. You can now download both the v1.7 and v1.8 of this template.
Download and unzip the files and read the installation notes. Enjoy!
Download Squarely jobberBase template for v1.7
Download Squarely jobberBase template [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-1135 alignnone" title="squarely17" src="http://www.redjumpsuit.net/wp-content/uploads/2009/12/squarely17.png" alt="squarely17" width="400" height="383" /><br />
Squarely is a template I found on <a href="http://www.redjumpsuit.net/recommend.php?who=4templates" target="_blank">Free CSS Templates</a> website some time ago that I actually converted to jobberBase, was for v1.7 back then. You can now download both the v1.7 and v1.8 of this template.</p>
<p>Download and unzip the files and read the <a href="http://www.redjumpsuit.net/2009/12/29/jobberbase-hosting/">installation</a> notes. Enjoy!</p>
<p><a href="http://www.redjumpsuit.net/wp-content/uploads/files/squarely17.zip">Download Squarely jobberBase template for v1.7</a></p>
<p><a href="http://www.redjumpsuit.net/wp-content/uploads/files/squarely18.zip">Download Squarely jobberBase template for v1.8</a></p>
<p>Check out also these other themes:</p>
<p><a href="http://www.redjumpsuit.net/2009/11/10/simple-themes-pack-for-jobberbase-v1-8/"><strong>Simple Themes Pack for jobberBase v1.8</strong></a></p>
<p><a href="http://redjumpsuit.net/2009/05/14/simple-grey-theme/"><strong>Simple Grey Theme</strong></a></p>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post"><div class="paypal-donations"><input type="hidden" name="cmd" value="_donations" /><input type="hidden" name="business" value="myredjumpsuit@gmail.com" /><input type="hidden" name="item_name" value="Squarely - Free jobberBase Template" /><input type="hidden" name="currency_code" value="USD" /><input type="image" src="http://www.redjumpsuit.net/wp-content/uploads/2010/02/btn_donate_LG.gif" name="submit" alt="PayPal - The safer, easier way to pay online." /><img alt="" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1" /></div></form>
]]></content:encoded>
			<wfw:commentRss>http://www.redjumpsuit.net/2009/12/16/squarely-free-jobberbase-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cron to Deactivate Older Jobs</title>
		<link>http://www.redjumpsuit.net/2009/12/14/cron-to-deactivate-older-jobs/</link>
		<comments>http://www.redjumpsuit.net/2009/12/14/cron-to-deactivate-older-jobs/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 04:38:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[jobberBase]]></category>
		<category><![CDATA[deactivate jobs]]></category>
		<category><![CDATA[delete older jobs using cron]]></category>
		<category><![CDATA[jobberbase cron]]></category>
		<category><![CDATA[jobberbase cron job]]></category>
		<category><![CDATA[jobberbase delete jobs]]></category>

		<guid isPermaLink="false">http://www.redjumpsuit.net/?p=919</guid>
		<description><![CDATA[if you are using the cron maintenance job default on jobberBase, you will find out that the active jobs are actually not deleting from the system. and the reason for that is the cron job is only deleting temporary jobs (is_temp=1) and not the active jobs.

// delete temporary posts older than 2 days
$janitor-&#62;DeleteTemporaryJobs&#40;&#41;;

To automatically delete [...]]]></description>
			<content:encoded><![CDATA[<p>if you are using the cron maintenance job default on jobberBase, you will find out that the active jobs are actually not deleting from the system. and the reason for that is the cron job is only deleting temporary jobs (is_temp=1) and not the active jobs.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">// delete temporary posts older than 2 days</span>
<span style="color: #000088;">$janitor</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">DeleteTemporaryJobs</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>To automatically delete older jobs using cron, just create another function in the class.Maintenance.php file with this:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">// delete active posts older than 40 days</span>
<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">function</span> DeleteActiveJobs<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$db</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$sql</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'DELETE FROM jobs WHERE DATEDIFF(NOW(), created_on) &gt; 40 AND is_temp = 0 AND is_active = 1'</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$db</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">Execute</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$sql</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>and add this function on the cron_maintenance.php file</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">// delete active posts older than 40 days</span>
<span style="color: #000088;">$janitor</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">DeleteActiveJobs</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Check out my related post to automatically expire jobs with notification <a href="http://www.redjumpsuit.net/2009/01/21/send-notification-when-ads-are-expiring/">here</a>.</p>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post"><div class="paypal-donations"><input type="hidden" name="cmd" value="_donations" /><input type="hidden" name="business" value="myredjumpsuit@gmail.com" /><input type="hidden" name="item_name" value="Cron to Deactivate Older Jobs" /><input type="hidden" name="currency_code" value="USD" /><input type="image" src="http://www.redjumpsuit.net/wp-content/uploads/2010/02/btn_donate_LG.gif" name="submit" alt="PayPal - The safer, easier way to pay online." /><img alt="" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1" /></div></form>
]]></content:encoded>
			<wfw:commentRss>http://www.redjumpsuit.net/2009/12/14/cron-to-deactivate-older-jobs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Displaying Current Date</title>
		<link>http://www.redjumpsuit.net/2009/11/29/displaying-current-date/</link>
		<comments>http://www.redjumpsuit.net/2009/11/29/displaying-current-date/#comments</comments>
		<pubDate>Sun, 29 Nov 2009 10:53:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[jobberBase]]></category>
		<category><![CDATA[jobberbase smarty]]></category>
		<category><![CDATA[jobberbase smarty template]]></category>
		<category><![CDATA[jobberbase template]]></category>
		<category><![CDATA[smarty current date]]></category>
		<category><![CDATA[smarty date]]></category>
		<category><![CDATA[smarty template]]></category>

		<guid isPermaLink="false">http://www.redjumpsuit.net/?p=862</guid>
		<description><![CDATA[if you want to display the current date on your website (as shown on obitwaryo.net) you can use this script.

&#123;$smarty.now&#124;date_format:&#34;%A, %B %e, %Y&#34;&#125;

and it will show:

Sunday, November 29, 2009

you can place it on header.tpl or footer.tpl or sidebar.tpl whichever you prefer.
]]></description>
			<content:encoded><![CDATA[<p>if you want to display the current date on your website (as shown on <a href="http://www.obitwaryo.net" target="_blank">obitwaryo.net</a>) you can use this script.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #009900;">&#123;</span><span style="color: #000088;">$smarty</span><span style="color: #339933;">.</span>now<span style="color: #339933;">|</span>date_format<span style="color: #339933;">:</span><span style="color: #0000ff;">&quot;%A, %B <span style="color: #009933; font-weight: bold;">%e</span>, %Y&quot;</span><span style="color: #009900;">&#125;</span></pre></div></div>

<p>and it will show:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">Sunday<span style="color: #339933;">,</span> November <span style="color: #cc66cc;">29</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">2009</span></pre></div></div>

<p>you can place it on header.tpl or footer.tpl or sidebar.tpl whichever you prefer.</p>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post"><div class="paypal-donations"><input type="hidden" name="cmd" value="_donations" /><input type="hidden" name="business" value="myredjumpsuit@gmail.com" /><input type="hidden" name="item_name" value="Displaying Current Date" /><input type="hidden" name="currency_code" value="USD" /><input type="image" src="http://www.redjumpsuit.net/wp-content/uploads/2010/02/btn_donate_LG.gif" name="submit" alt="PayPal - The safer, easier way to pay online." /><img alt="" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1" /></div></form>
]]></content:encoded>
			<wfw:commentRss>http://www.redjumpsuit.net/2009/11/29/displaying-current-date/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The elusive http://</title>
		<link>http://www.redjumpsuit.net/2009/11/26/the-elusive-http/</link>
		<comments>http://www.redjumpsuit.net/2009/11/26/the-elusive-http/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 17:54:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[jobberBase]]></category>
		<category><![CDATA[jobberbase fix]]></category>
		<category><![CDATA[jobberbase http]]></category>
		<category><![CDATA[jobberbase problem]]></category>
		<category><![CDATA[jobberbase redirect]]></category>
		<category><![CDATA[jobberbase workaround]]></category>

		<guid isPermaLink="false">http://www.redjumpsuit.net/?p=854</guid>
		<description><![CDATA[some people in the forum recently started asking for a workaround on the website URL redirecting issue when the site provided in the job ad lacks the http:// (the site will think you are redirecting from a page within the site) by default jobberBase should be adding this at the beginning of the URL but [...]]]></description>
			<content:encoded><![CDATA[<p>some people in the forum recently started asking for a workaround on the website URL redirecting issue when the site provided in the job ad lacks the <code>http://</code> (the site will think you are redirecting from a page within the site) by default jobberBase should be adding this at the beginning of the URL but sometimes it does and sometimes it doesn&#8217;t (still have to sit down and re-check why this is happening.) and just merely appending <code>http://</code> on the URL in the job-details.tpl file will not always work. here is a script i created that tightly checks the URL provided in the job ad, whether <code>http://</code> should be added or not (hasn&#8217;t failed me yet so far!)</p>
<p>open up page_job.php, after this line</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$smarty</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">assign</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'job'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$info</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>add this block:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$info</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'url'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">7</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;http://&quot;</span> AND <span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$info</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'url'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;.&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$smarty</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">assign</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'job_url'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$info</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'url'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #b1b100;">elseif</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$info</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'url'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">7</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">!=</span> <span style="color: #0000ff;">&quot;http://&quot;</span> AND <span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$info</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'url'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;.&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$smarty</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">assign</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'job_url'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'http://'</span><span style="color: #339933;">.</span> <span style="color: #000088;">$info</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'url'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>then open the file job-details.tpl from your templates folder and use this line to display the job poster&#8217;s URL.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #009900;">&#123;</span><span style="color: #b1b100;">if</span> <span style="color: #000088;">$job_url</span> <span style="color: #339933;">!=</span> <span style="color: #0000ff;">''</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">&lt;</span>a href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;<span style="color: #006699; font-weight: bold;">{$job_url}</span>&quot;</span> target<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;_blank&quot;</span><span style="color: #339933;">&gt;</span><span style="color: #009900;">&#123;</span><span style="color: #000088;">$job</span><span style="color: #339933;">.</span>company<span style="color: #009900;">&#125;</span><span style="color: #339933;">&lt;/</span>a<span style="color: #339933;">&gt;</span><span style="color: #009900;">&#123;</span><span style="color: #b1b100;">else</span><span style="color: #009900;">&#125;</span><span style="color: #009900;">&#123;</span><span style="color: #000088;">$job</span><span style="color: #339933;">.</span>company<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#123;</span><span style="color: #339933;">/</span><span style="color: #b1b100;">if</span><span style="color: #009900;">&#125;</span></pre></div></div>

<p>if you&#8217;ve tried this and encountered error, let me know. i would be interested to find out!</p>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post"><div class="paypal-donations"><input type="hidden" name="cmd" value="_donations" /><input type="hidden" name="business" value="myredjumpsuit@gmail.com" /><input type="hidden" name="item_name" value="The elusive http" /><input type="hidden" name="currency_code" value="USD" /><input type="image" src="http://www.redjumpsuit.net/wp-content/uploads/2010/02/btn_donate_LG.gif" name="submit" alt="PayPal - The safer, easier way to pay online." /><img alt="" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1" /></div></form>
]]></content:encoded>
			<wfw:commentRss>http://www.redjumpsuit.net/2009/11/26/the-elusive-http/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>jobberBase cron job workaround</title>
		<link>http://www.redjumpsuit.net/2009/11/15/jobberbase-cron-job-workaround/</link>
		<comments>http://www.redjumpsuit.net/2009/11/15/jobberbase-cron-job-workaround/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 12:35:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[jobberBase]]></category>
		<category><![CDATA[cron job]]></category>
		<category><![CDATA[jobberbase cron]]></category>
		<category><![CDATA[jobberbase cron job]]></category>
		<category><![CDATA[linux cron job]]></category>
		<category><![CDATA[linux hosting]]></category>
		<category><![CDATA[online cron job]]></category>

		<guid isPermaLink="false">http://www.redjumpsuit.net/?p=847</guid>
		<description><![CDATA[if you find yourself wondering why the heck the jobberBase cron job doesn&#8217;t work on a linux hosting, you are not alone! i&#8217;ve struggled with this cron job issue for a while now. well, finally i was able to sit down and try to figure out how to work around this bug. yes i say [...]]]></description>
			<content:encoded><![CDATA[<p>if you find yourself wondering why the heck the jobberBase cron job doesn&#8217;t work on a linux hosting, you are not alone! i&#8217;ve struggled with this cron job issue for a while now. well, finally i was able to sit down and try to figure out how to work around this bug. yes i say it&#8217;s a bug coz if i use an online cron job service, the php file executes just fine but if it&#8217;s run through the cron job on a linux hosting, it just flatly fails.</p>
<p>the solution is in the config.php file. i would recommend creating another instance of the config.php (i renamed mine to config2.php) and look for the lines below.</p>
<p>replace this</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #990000;">die</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'[config.php] Cannot determine APP_MAIN_DIR, please set manual and comment this line'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>with this:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">//die('[config.php] Cannot determine APP_MAIN_DIR, please set manual and comment this line');</span>
<span style="color: #000088;">$app_main_dir</span> <span style="color: #339933;">=</span> <span style="color: #990000;">rtrim</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">dirname</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'PHP_SELF'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'/\\'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>	
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'_APP_MAIN_DIR'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$app_main_dir</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>then replace this:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #990000;">die</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'[config.php] Cannot determine BASE_URL, please set manual and comment this line'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>with this:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">//die('[config.php] Cannot determine BASE_URL, please set manual and comment this line');</span>
<span style="color: #990000;">define</span> <span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'BASE_URL'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'http://yourwebsitename.com/'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>now how&#8217;s that for a workaround? <img src='http://www.redjumpsuit.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post"><div class="paypal-donations"><input type="hidden" name="cmd" value="_donations" /><input type="hidden" name="business" value="myredjumpsuit@gmail.com" /><input type="hidden" name="item_name" value="jobberBase cron job workaround" /><input type="hidden" name="currency_code" value="USD" /><input type="image" src="http://www.redjumpsuit.net/wp-content/uploads/2010/02/btn_donate_LG.gif" name="submit" alt="PayPal - The safer, easier way to pay online." /><img alt="" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1" /></div></form>
]]></content:encoded>
			<wfw:commentRss>http://www.redjumpsuit.net/2009/11/15/jobberbase-cron-job-workaround/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Themes Pack for jobberBase v1.8</title>
		<link>http://www.redjumpsuit.net/2009/11/10/simple-themes-pack-for-jobberbase-v1-8/</link>
		<comments>http://www.redjumpsuit.net/2009/11/10/simple-themes-pack-for-jobberbase-v1-8/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 15:32:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[jobberBase]]></category>
		<category><![CDATA[jobberbase 1.8]]></category>
		<category><![CDATA[jobberbase new themes]]></category>
		<category><![CDATA[jobberbase template]]></category>
		<category><![CDATA[jobberbase templates]]></category>
		<category><![CDATA[jobberbase theme]]></category>
		<category><![CDATA[jobberbase themes]]></category>
		<category><![CDATA[jobberbase themes pack]]></category>
		<category><![CDATA[templates]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://www.redjumpsuit.net/?p=836</guid>
		<description><![CDATA[I came out with a Simple Grey Theme back in May and have seen many sites using the theme since then. This time,  for a small fee I am offering a similar theme but now with six different color selections and corresponding images put together in one themes pack. The only folders you need to [...]]]></description>
			<content:encoded><![CDATA[<p>I came out with a <a href="http://www.redjumpsuit.net/2009/05/14/simple-grey-theme/" target="_blank">Simple Grey Theme</a> back in May and have seen many sites using the theme since then. This time,  for a small fee I am offering a similar theme but now with six different color selections and corresponding images put together in one themes pack. The only folders you need to change on your theme to use any of the themes in this pack is your &#8216;css&#8217; and &#8216;img&#8217; folders.</p>
<p>Below are the themes included in this Simple Themes Pack for jobberBase v1.8:</p>
<p><strong>DarkBlue</strong><br />
<img src="http://www.redjumpsuit.net/wp-content/uploads/themes/300_darkblue-screen-front.png" alt="" /><br />
<img src="http://www.redjumpsuit.net/wp-content/uploads/themes/300_darkblue-screen-inside.png" alt="" /></p>
<p><strong>GreenBrown</strong><br />
<img src="http://www.redjumpsuit.net/wp-content/uploads/themes/300_greenbrown-screen-front.png" alt="" /><br />
<img src="http://www.redjumpsuit.net/wp-content/uploads/themes/300_greenbrown-screen-inside.png" alt="" /></p>
<p><strong>Maroon</strong><br />
<img src="http://www.redjumpsuit.net/wp-content/uploads/themes/300_maroon-screen-front.png" alt="" /><br />
<img src="http://www.redjumpsuit.net/wp-content/uploads/themes/300_maroon-screen-inside.png" alt="" /></p>
<p><strong>Green</strong><br />
<img src="http://www.redjumpsuit.net/wp-content/uploads/themes/300_green-screen-front.png" alt="" /><br />
<img src="http://www.redjumpsuit.net/wp-content/uploads/themes/300_green-screen-inside.png" alt="" /></p>
<p><strong>LightGreen</strong><br />
<img src="http://www.redjumpsuit.net/wp-content/uploads/themes/300_lightgreen-screen-front.png" alt="" /><br />
<img src="http://www.redjumpsuit.net/wp-content/uploads/themes/300_lightgreen-screen-inside.png" alt="" /></p>
<p><strong>Orange</strong><br />
<img src="http://www.redjumpsuit.net/wp-content/uploads/themes/300_orange-screen-front.png" alt="" /><br />
<img src="http://www.redjumpsuit.net/wp-content/uploads/themes/300_orange-screen-inside.png" alt="" /></p>
<p><span style="color: #000000; font-size: 16px;"><br />
<strong>Simple Themes Pack for jobberBase v1.8<br />
US$25.00 only</strong></p>
<form onsubmit="return confSubmit(this);" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="9585236">
<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!"></form>
<p>Please read the <span style="text-decoration: underline;"><a href="http://www.redjumpsuit.net/software-license/">license agreement</a></span> before making a purchase. Note that the themes are provided as is.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.redjumpsuit.net/2009/11/10/simple-themes-pack-for-jobberbase-v1-8/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Simple Job Board for WordPress</title>
		<link>http://www.redjumpsuit.net/2009/11/09/simple-job-board-for-wordpress/</link>
		<comments>http://www.redjumpsuit.net/2009/11/09/simple-job-board-for-wordpress/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 14:26:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Others]]></category>
		<category><![CDATA[awesome job site]]></category>
		<category><![CDATA[awesome job sites]]></category>
		<category><![CDATA[job board]]></category>
		<category><![CDATA[job site]]></category>
		<category><![CDATA[job site wordpress]]></category>
		<category><![CDATA[job sites]]></category>
		<category><![CDATA[wordpress job board]]></category>

		<guid isPermaLink="false">http://www.redjumpsuit.net/?p=830</guid>
		<description><![CDATA[I recently launched a WordPress website called AwesomeJobSites

and I wanted to add a simple job board in the site for those who are looking for developers and designers specializing on job board customizations. Of course the first thing I thought of was to use jobberBase (why wouldn&#8217;t I, right?) but then again that will mean [...]]]></description>
			<content:encoded><![CDATA[<p>I recently launched a WordPress website called <strong><a href="http://www.awesomejobsites.com" target="_blank">AwesomeJobSites</a></strong></p>
<p style="text-align: center;"><a href="http://www.awesomejobsites.com" target="_blank"><img class="aligncenter" src="http://www.redjumpsuit.net/wp-content/uploads/2009/11/ajs-logo.png" alt="AJS Logo" /></a></p>
<p>and I wanted to add a simple job board in the site for those who are looking for developers and designers specializing on job board customizations. Of course the first thing I thought of was to use jobberBase (why wouldn&#8217;t I, right?) but then again that will mean managing multiple admins since it will be a separate installation and customizing the templates, etc. So even if I have never tried customizing a WordPress, I ventured into researching how I could implement a very simple job board for my site. The first things I tried to resolve are the following:</p>
<p>1) Allow people to submit a job advertisement without registering for an account<br />
2) Create a PayPal payment link so that job posters can pay for their ads<br />
3) Moderate the submitted job ads and approve the job post when payment is received from PayPal (no IPN integration or anything, just manual approval)<br />
4) Display the content separately from all the website content (meaning the job post should not appear on any of the posts or categories)</p>
<p>After spending several hours researching on the web, I was able to figure out the 4 things I wanted to do for the simple job board that I wanted (for the most part of this customization I used <a href="http://wordpress.org/extend/plugins/tdo-mini-forms/" target="_blank">TDO Mini Forms</a>, <a href="http://wordpress.org/extend/plugins/advanced-category-excluder/" target="_blank">Advanced Category Excluder</a> and hacking some of the PHP files in the theme that I was using.) There were a few other things I want to do after this, but so far I was pretty pleased with how the job board turned out.</p>
<p>Here&#8217;s how the <strong><a href="http://awesomejobsites.com/post-a-job/" target="_blank">Post a Job</a></strong> page looks like:</p>
<p style="text-align: center;"><img class="aligncenter" src="http://www.redjumpsuit.net/wp-content/uploads/2009/11/post-a-job.png" alt="Post a Job" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.redjumpsuit.net/2009/11/09/simple-job-board-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
