<?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>DeveloWare LLC</title>
	<atom:link href="http://www.develoware.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.develoware.com</link>
	<description>Websites, Internet Development, Enterprise Web Applications</description>
	<lastBuildDate>Wed, 10 Mar 2010 01:47:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Add smartjobboard admin notifications for applicants</title>
		<link>http://www.develoware.com/newsposts/add-smartjobboard-admin-notifications-for-applicants/309.php</link>
		<comments>http://www.develoware.com/newsposts/add-smartjobboard-admin-notifications-for-applicants/309.php#comments</comments>
		<pubDate>Wed, 10 Mar 2010 01:28:45 +0000</pubDate>
		<dc:creator>DeveloWare LLC</dc:creator>
				<category><![CDATA[Latest News]]></category>
		<category><![CDATA[Smart Job Board Help]]></category>

		<guid isPermaLink="false">http://www.develoware.com/?p=309</guid>
		<description><![CDATA[How to add&#160;a notification for the system admin to get a notification when an applicant applies for a job&#160;using smartjobboard software.
What I wanted was to be able to get a notification when an applicant applies to a job. As an admin you must know what is going on with the site.&#160; Any site for that [...]]]></description>
			<content:encoded><![CDATA[<h2>How to add&nbsp;a notification for the system admin to get a notification when an applicant applies for a job&nbsp;using smartjobboard software.</h2>
<p>What I wanted was to be able to get a notification when an applicant applies to a job. As an admin you must know what is going on with the site.&nbsp; Any site for that matter, but especialy with job boards. It is critical so you can know how to modify SEO campaigns and a whole host of other things. Here is the specs I want when the job is done:</p>
<p>1)&nbsp;Email should have the job seekers info on it.<br />
	2) Email should have the employer info on it.<br />
	3) Email should have the job info on it.</p>
<p><strong>To get started</strong> we first need to identify where in the source code we need to add the functionality. The first file we will need is<u> /system/user-scripts/classifieds/apply_now.php</u>. Inside that file search for &quot;Notifications::sendApplyNow&quot;, it should be around line 92.. It will look like this before we start modifications:<br />
	&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p><span style="color: #0000cd">if ( !Notifications::sendApplyNow($post,&quot;files/files/&quot;.$file_name,$listing_info, $current_user_sid, $notRegisterUserData) )<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$errors[&#39;SEND_ERROR&#39;] = true;</span><span style="color: #0000cd"><span _fck_bookmark="1" style="display: none">;;</span></span></p>
<p><span style="color: #0000cd"><span style="color: #000">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</span></span></p>
<p><span style="color: #0000cd"><span style="color: #000">PS: programmers out there, you should always bracket your if statements&#8230; It bugs the hell out me when ppl dont bracket there if statements!!!</span></span></p>
<p><span style="color: #0000cd"><span style="color: #000">Replace the lines above with the code below:</span></span></p>
<p><span style="color: #0000cd"><span style="color: #000">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</span></span></p>
<p><span style="color: #f00">&nbsp;&nbsp; if ( !Notifications::sendApplyNow($post,&quot;files/files/&quot;.$file_name,$listing_info, $current_user_sid, $notRegisterUserData) )<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $errors[&#39;SEND_ERROR&#39;] = true;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //send admin notification with info about who applied and to what job for what company<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //////////////////////////////////////////////////////////////////////////////////////<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AdminNotifications::sendAdminApplyNow($post,&quot;files/files/&quot;.$file_name,$listing_info, $current_user_sid, $notRegisterUserData);<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</span></p>
<p><span style="color: #0000cd"><span style="color: #000">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</span></span></p>
<p><span style="color: #0000cd"><span style="color: #000"><strong>Next open</strong> <u>/system/lib/miscelanious/AdminNotifications.php</u> and </span></span><span style="color: #0000cd"><span style="color: #000">add this line at the top of the page: <br />
	</span></span><span style="color: #0000cd"><span _fck_bookmark="1" style="display: none">&nbsp;</span>require_once(&quot;users/User/UserManager.php&quot;);&nbsp;</span><span style="color: #0000cd"><span style="color: #000"><span _fck_bookmark="1" style="display: none">&nbsp;</span></span></span></p>
<p>Then add this function in the class with the other functions. I added it at the bottom of the file&#8230; (inside the brackets like the rest of the functions)</p>
<p><span style="color: #0000cd"><span style="color: #000">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</span></span></p>
<p><span style="color: #0000cd"><span style="color: #000">&nbsp; <span style="color: #f00">function sendAdminApplyNow($info, $file = &#39;&#39;, $data_resume = array(), $current_user_sid = false, $notRegisterUserData = false, $companyData = array()) {<br />
	&nbsp;&nbsp;&nbsp; //get the job seekers email address<br />
	&nbsp;&nbsp;&nbsp; if($current_user_sid) {<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $user_info = UserManager::getUserInfoBySID($current_user_sid);<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $sender_email_address = $user_info[&#39;email&#39;];<br />
	&nbsp;&nbsp;&nbsp; } else {<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $sender_email_address = $notRegisterUserData[&#39;email&#39;];<br />
	&nbsp;&nbsp;&nbsp; }<br />
	&nbsp;&nbsp;&nbsp; //get the admin email address<br />
	&nbsp;&nbsp;&nbsp; $admin_email = Settings::getSettingByName(&#39;notification_email&#39;);</span></span></span></p>
<p><span style="color: #f00">&nbsp;&nbsp;&nbsp; //get the company info<br />
	&nbsp;&nbsp;&nbsp; $info[&#39;listing&#39;][&#39;empEmail&#39;] = $info[&#39;listing&#39;][&#39;user&#39;][&#39;email&#39;];<br />
	&nbsp;&nbsp;&nbsp; $info[&#39;listing&#39;][&#39;empName&#39;] = $info[&#39;listing&#39;][&#39;user&#39;][&#39;CompanyName&#39;];</span></p>
<p><span style="color: #f00">&nbsp;&nbsp;&nbsp; //get the template for the email<br />
	&nbsp;&nbsp;&nbsp; $email = new Email( $admin_email, &#39;../email_templates/admin_apply_now.tpl&#39;,<br />
	&nbsp;&nbsp;&nbsp; array(&#39;listing&#39; =&gt; $info[&#39;listing&#39;], &#39;seller_request&#39;=&gt;$info[&#39;submitted_data&#39;], &#39;data_resume&#39; =&gt; $data_resume) );<br />
	&nbsp;&nbsp;&nbsp; $email-&gt;setReplyTo($admin_email);<br />
	&nbsp;&nbsp;&nbsp; if ($file != &#39;&#39;)<br />
	&nbsp;&nbsp;&nbsp; $email-&gt;setFile($file);</span></p>
<p><span style="color: #f00">&nbsp;&nbsp;&nbsp; //send it out<br />
	&nbsp;&nbsp;&nbsp; return $email-&gt;send();<br />
	&nbsp; }</span></p>
<p><span style="color: #0000cd"><span style="color: #000"><span style="color: #0000cd"><span style="color: #000">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</span></span></span></span></p>
<p><strong>Finaly the last step besides testing&#8230;</strong></p>
<p>We need to create a template for the email to be sent with so we need to add a new template for it. Create a file in <u>/templates/_system/email_templates/ named admin_apply_now.tpl</u>. <br />
	All together the file and path should be like this:</p>
<p><u>/templates/_system/email_templates/admin_apply_now.tpl</u></p>
<p>Open your new empty file and paste the following code into it:</p>
<p><span style="color: #0000cd"><span style="color: #000"><span style="color: #0000cd"><span style="color: #000">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</span></span></span></span></p>
<p><span style="color: #f00">{subject}New Applicant for {$listing.empName}{/subject}</span></p>
<p><span style="color: #f00">{message}<br />
	&nbsp;An application to job posting &#39;{$listing.Title}&#39; was just submitted:&lt;br /&gt;<br />
	&nbsp; &lt;hr&gt;<br />
	&nbsp;Employer Information&lt;br /&gt;<br />
	&nbsp;Employer Name: {$listing.empName}&lt;br /&gt;<br />
	&nbsp;Employer Email: {$listing.empEmail}&lt;br /&gt;<br />
	&nbsp;Employer Link:&lt;br /&gt;<br />
	&nbsp;&lt;a href=&quot;http://www.yourdomain.com/search_results_jobs/?action=search&amp;username[equal]={$listing.empEmail}&quot;&gt;http://www.yourdomain.com/search_results_jobs/?action=search&amp;username[equal]={$listing.empEmail}&lt;/a&gt;</span></p>
<p><span style="color: #f00">&nbsp;&lt;hr&gt;<br />
	&nbsp;Job Information&lt;br /&gt;<br />
	&nbsp;Job ID: {$listing.id}&lt;br /&gt;<br />
	&nbsp;Job Link:&lt;br /&gt;<br />
	&nbsp;&lt;a href=&quot;http://www.yourdomain.com/display_job/{$listing.id}/&quot;&gt;http://www.yourdomain.com/display_job/{$listing.id}/&lt;/a&gt;</span></p>
<p><span style="color: #f00">&nbsp; &lt;hr&gt;<br />
	&nbsp;Job Seeker Information&lt;br /&gt;<br />
	&nbsp;Name: {$seller_request.name}&lt;br /&gt;<br />
	&nbsp;Username: {$seller_request.username}&lt;br /&gt;<br />
	&nbsp;Email: {$seller_request.email}&lt;br /&gt;<br />
	&nbsp;Cover Letter (optional): {$seller_request.comments}&lt;br/&gt;<br />
	&nbsp;User resume: &lt;a href=&quot;{$GLOBALS.site_url}/display_resume/{$data_resume.sid}&quot;&gt;{$data_resume.Title}&lt;/a&gt;&lt;br/&gt;<br />
	&nbsp;&lt;br /&gt;<br />
	{/message}</span></p>
<p><span style="color: #0000cd"><span style="color: #000"><span style="color: #0000cd"><span style="color: #000"><span style="color: #0000cd"><span style="color: #000"><span style="color: #0000cd"><span style="color: #000">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</span></span></span></span></span></span></span></span></p>
<p>In the code above you must replace yourdomain.com with whatever your domain is.&nbsp; Save your file now.</p>
<p>AND&#8230;.. &#8230;.. &#8230;.&nbsp;WA BAM! Your done. There you have it a customized admin notification for when applicants apply for a job.</p>
<p>Let me know if this helps anybody out there! I would love to hear from you.</p>
<p>Joe Mas</p>
<p>&nbsp;</p>
<p><span style="color: #0000cd"><span _fck_bookmark="1" style="display: none">PSPPPPPppooblkjbljPS&nbsp;</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.develoware.com/newsposts/add-smartjobboard-admin-notifications-for-applicants/309.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Handyman Website</title>
		<link>http://www.develoware.com/newsposts/handyman-website/304.php</link>
		<comments>http://www.develoware.com/newsposts/handyman-website/304.php#comments</comments>
		<pubDate>Tue, 09 Mar 2010 05:21:09 +0000</pubDate>
		<dc:creator>Joseph Mas</dc:creator>
				<category><![CDATA[Development Projects]]></category>
		<category><![CDATA[Sites by DeveloWare.com]]></category>

		<guid isPermaLink="false">http://www.develoware.com/?p=304</guid>
		<description><![CDATA[Ok, well today I just finished a very simple 4 page handyman&#160;website for a client. You can see it here: http://www.ExpertLocalHandyman.com.&#160;&#160;The client is completely out of his element when it comes to the web. This project was not the typical build a site and get paid for a couple reasons. First of all, I did [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, well today I just finished a very simple 4 page handyman&nbsp;website for a client. You can see it here: <a href="http://www.ExpertLocalHandyman.com">http://www.ExpertLocalHandyman.com</a>.&nbsp;&nbsp;The client is completely out of his element when it comes to the web. This project was not the typical build a site and get paid for a couple reasons. First of all, I did not build it soley for the money. This is evident by the fact that I barely even got paid for a half hour of time to do it, I basicly did it for free. I&nbsp;did it for no cost because the guy does great&nbsp;handyman work and his business is slow. That brings me to the point of the site&#8230; To get him more business! I truly believe that as a developer, if I can help lots and lots of&nbsp;others my business will grow over time. Its not about money at this point. I want to build a solid client base by providing a desperately needed service to the people out there busting there tails day in and day out to make a living. My skill set was aligned perfectly to help this guy.</p>
<p>What is your skill set and who are you helping?</p>
<p>&nbsp;</p>
<p>As we all know having a great site is absolutely worthless if people dont ever see it. It is like having a bad ass race car in the garage with no gas in it. What good is that? NONE! So phase two was to market his simple clean little site. But in this case we are going to market the site localy. He is a handyman so first thing I did was throw $20 worth of google adwords at it. I streamlined the ads to only show around his area he lives in, Sarasota, Venice, Nokomis, Englewood, Port Charlotte &#8230;.</p>
<p>Here is the method of madness I used on his adwords on some of his key words, all at&nbsp; $0.05 per click with a $2 a day limit:</p>
<p>sarasota handyman<br />
	venice handyman<br />
	nokomis handyman<br />
	&#8230;</p>
<p>then we threw in a few keywords for the skill of the trade:</p>
<p>venice home renovations<br />
	venice home repairs<br />
	venice remodeling contractors<br />
	&#8230;</p>
<p>By the time I was done I had 153 key words that all matched up to the content on his site and promoted his skill set in his demographics.</p>
<p>Now since money is a big issue because most people around here don&#39;t have it, we have to put on hold some of the things we would typicaly do to truly promote a company. However, I garantee this will bring him enough work to make a solid living. I can garantee it because I see it every day and I have not one unhappy client.</p>
<p>If money was no issue I would employ a service I can trust to submit a minimum of 100 press releases, 100 articals, and give him a few hundred social bookmarks. Now a days the market is saturated with companies that will perform this for just over a hundred dollars or so.&nbsp; It sure beats submitting them yourself which can take days upon days to do.</p>
<p>The site has a nice code frame work that is easily scalable. Want a blog installed?&#8230; No prob. Oh, you need a cataloging system?&#8230; No prob!&nbsp;</p>
<p>So there you have it in a nut shell.&nbsp; I don&#39;t want to minimize the work that went into it, and every site. There is a ton of other things that have been done also. Such as setting up google analytics, submitting to google and yahoo and ask &#8230;. and all the rest. I also built him a back end so he can update his own content. I set up a cpanel, his email server, database for page content, contact form that was customized in how it sends the information to him, not to mention I put in all the content myself. I don&#39;t typicaly do that. So he got a full blown SEO optimized site with content and hosting and site promotion for less than you spend on gas for a week.&nbsp;</p>
<p>I sometimes wonder &quot;what the hell am i helping all these people for?&quot; but it is what I felt led to do. So, I do it. I am called to help people help them selves &nbsp;:) I trust that God will keep me afloat if I just do His will.</p>
<p>Joe Mas</p>
<p>Check out the site and let me know what you think: <a href="http://www.ExpertLocalHandyman.com">http://www.ExpertLocalHandyman.com</a>. Just keep in mind its not the site we are looking at its the business it generates for the guy. So 3-10 extra phone calls from people inquiring about his handyman&nbsp;work will achieve the goal we were after.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.develoware.com/newsposts/handyman-website/304.php/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Positive Changes</title>
		<link>http://www.develoware.com/newsposts/positive-changes/302.php</link>
		<comments>http://www.develoware.com/newsposts/positive-changes/302.php#comments</comments>
		<pubDate>Tue, 02 Mar 2010 23:10:02 +0000</pubDate>
		<dc:creator>DeveloWare LLC</dc:creator>
				<category><![CDATA[Latest News]]></category>

		<guid isPermaLink="false">http://www.develoware.com/?p=302</guid>
		<description><![CDATA[News Flash!
Positive changes that have taken affect since my last post. As you probably know I was one of the co-founders of Virtual Automation the parent company of MyCollectionJobs.com, I took great pride in the service MCJ offered and spent hundreds of unpaid hours building the company along side of a couple dedicated others that [...]]]></description>
			<content:encoded><![CDATA[<p>News Flash!</p>
<p><strong>Positive changes</strong> that have taken affect since my last post. As you probably know I was one of the co-founders of Virtual Automation the parent company of MyCollectionJobs.com, I took great pride in the service MCJ offered and spent hundreds of unpaid hours building the company along side of a couple dedicated others that truly had the vision. MyCollectionJobs.com was started with a great business model and became very successful in a short period of time. </p>
<p>	After we had established the company it seemed some of the other co-owners had lost vision of the true purpose of the company. They have a great business model if you like everything automated and no service. I firmly believe in personal service to clients on a solid foundation of experience. As a result of these differences I have some great news for NCO Group, CIBC,&nbsp;and all of the debt and collections companies out there! </p>
<p>	I have since resigned from Virtual Automation and MyCollectionJobs to continue building my vision of a true service for the debt and collections industry. Some other highly experienced professionals also left and came on board with my company to put together <a href="http://www.ProCollectionJobs.com">http://www.ProCollectionJobs.com</a>. The product is better, the network of partner sites is bigger, the distribution of jobs is greater, and the tools we provide are more extensive. The service is truly personal and the prices are much more competitive, as our main goal is to provide a service, not quick monetary gains. But best of all, we are set up to be the largest debt and collections job board in Canada.</p>
<p>Check out our site today!</p>
<p><a href="http://www.ProCollectionJobs.com">http://www.ProCollectionJobs.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.develoware.com/newsposts/positive-changes/302.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just finished RSS feeds for TheVetteNet.com</title>
		<link>http://www.develoware.com/newsposts/just-finished-rss-feeds-for-thevettenet-com/298.php</link>
		<comments>http://www.develoware.com/newsposts/just-finished-rss-feeds-for-thevettenet-com/298.php#comments</comments>
		<pubDate>Wed, 24 Feb 2010 02:53:55 +0000</pubDate>
		<dc:creator>Joseph Mas</dc:creator>
				<category><![CDATA[Development Projects]]></category>
		<category><![CDATA[Latest News]]></category>

		<guid isPermaLink="false">http://www.develoware.com/?p=298</guid>
		<description><![CDATA[Just finished RSS feeds for TheVetteNet.com. I really like this site. It is simple and clean. We also got the rss feeds hooked up to facebook.com and twitter.com. We also submitted them to over 100 feed agrigators.
Check out the RSS feeds for TheVetteNet.com here: http://www.TheVetteNet.com/feeds/
With just a little more than $400 dollars invested in marketing&#160;the [...]]]></description>
			<content:encoded><![CDATA[<p>Just finished RSS feeds for TheVetteNet.com. I really like this site. It is simple and clean. We also got the rss feeds hooked up to facebook.com and twitter.com. We also submitted them to over 100 feed agrigators.</p>
<p>Check out the RSS feeds for TheVetteNet.com here: <a href="http://www.TheVetteNet.com/feeds/">http://www.TheVetteNet.com/feeds/</a></p>
<p>With just a little more than $400 dollars invested in marketing&nbsp;the site has seen an increase in revenue/profit of more than $15,000/month. We have adwords and a couple other&nbsp;banner ads running for it now. In less than 3 months traffic has increased from less than 100&nbsp;unique&nbsp;visitors a&nbsp;day to around 200 &#8211; 500 currently.</p>
<p>Targeted Visitors=Revenue</p>
]]></content:encoded>
			<wfw:commentRss>http://www.develoware.com/newsposts/just-finished-rss-feeds-for-thevettenet-com/298.php/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Edit smartjobboard registration email template</title>
		<link>http://www.develoware.com/newsposts/edit-smartjobboard-registration-email-template/295.php</link>
		<comments>http://www.develoware.com/newsposts/edit-smartjobboard-registration-email-template/295.php#comments</comments>
		<pubDate>Wed, 24 Feb 2010 01:50:04 +0000</pubDate>
		<dc:creator>Joseph Mas</dc:creator>
				<category><![CDATA[Smart Job Board Help]]></category>

		<guid isPermaLink="false">http://www.develoware.com/?p=295</guid>
		<description><![CDATA[I needed to be able to see a users information when the register for the job board. This goes for Job seekers and employers. The default only give you the user name and email. That wasn&#39;t enough because the client needed to know all the registration info without logging into the system to provide better [...]]]></description>
			<content:encoded><![CDATA[<p>I needed to be able to see a users information when the register for the job board. This goes for Job seekers and employers. The default only give you the user name and email. That wasn&#39;t enough because the client needed to know all the registration info without logging into the system to provide better customer service.</p>
<p>So here was my quick fix for it&#8230;</p>
<p>First find these three files:</p>
<p>1) /system/lib/miscellaneous/AdminNotifications.php</p>
<p>2) /templates/_system/email_templates/admin_user_registration_email.tpl</p>
<p>3) /system/user-scripts/users/registration.php</p>
<p>&nbsp;Now open the file you found earlier,&nbsp;/system/lib/miscellaneous/AdminNotifications.php</p>
<p>Look for the function named &quot;<span style="color: #0000cd">sendAdminUserRegistrationLetter</span>&quot;&nbsp;and replace it with the code below:</p>
<p>&nbsp;<span style="color: #0000cd">function sendAdminUserRegistrationLetter($user_id,$otherInfo=&quot;&quot;) {</span></p>
<p><span style="color: #0000cd">&nbsp;&nbsp;$admin_email = Settings::getSettingByName(&#39;notification_email&#39;);<br />
	&nbsp;&nbsp;$system_tpl = System::getSystemSettings(&#39;SYSTEM_TEMPLATE_DIR&#39;);</span></p>
<p><span style="color: #0000cd">&nbsp;&nbsp;$userInfo = UserManager::getUserInfoBySID($user_id);<br />
	&nbsp;&nbsp;$email = new Email($admin_email, &#39;../email_templates/admin_user_registration_email.tpl&#39;, array(&#39;user&#39; =&gt; $userInfo,&#39;otherInfo&#39; =&gt; $otherInfo));</span></p>
<p><span style="color: #0000cd">&nbsp;&nbsp;return $email-&gt;send();</span></p>
<p><span style="color: #0000cd">&nbsp;}</span></p>
<p><span style="color: #0000cd"><span style="color: #000">Now open the other file you found earlier named /templates/_system/email_templates/admin_user_registration_email.tpl.</span></span></p>
<p><span style="color: #0000cd"><span style="color: #000">Replace&nbsp;the entire contents&nbsp;with this code below. You can alter it any way you may need. I filter on all my email based on the&nbsp;subject. So, the subject line is important to me:</span></span></p>
<p><span style="color: #0000cd"><span _fck_bookmark="1" style="display: none">&nbsp;</span>{subject}New {if $user.user_group_sid==&#39;41&#39;}Employer{else}Job Seeker{/if} Registration{/subject}</span></p>
<p><span style="color: #0000cd">{message}</span></p>
<p><span style="color: #0000cd">&lt;p&gt;New user has just registered at {$GLOBALS.site_url}&lt;/p&gt;</span></p>
<p><span style="color: #0000cd">User ID:{$user.sid}&lt;br /&gt;<br />
	User Name:{$user.username}&lt;br /&gt;</span></p>
<p><span style="color: #0000cd">{$otherInfo}<br />
	{/message}</span><span style="color: #0000cd"><span style="color: #000"><span _fck_bookmark="1" style="display: none">&nbsp;</span></span></span></p>
<p><span style="color: #0000cd"><span style="color: #000">Finaly, open the file /system/user-scripts/users/registration.php. Find the line that has the following&nbsp;if statement&nbsp;on it. It should&nbsp;start around line 68 or so:</span></span></p>
<p><span style="color: #b22222">if (AdminNotifications::isAdminNotifiedOnUserRegistration()) { </span></p>
<p><span style="color: #b22222">&nbsp;&#8230; bunch of code in here</span></p>
<p><span style="color: #b22222">}</span></p>
<p><span style="color: #0000cd"><span style="color: #000">Replace the entire if statement&nbsp;(from bracket to bracket)&nbsp;this code:</span></span></p>
<p><span style="color: #0000cd"><span _fck_bookmark="1" style="display: none">&nbsp;</span>&nbsp;&nbsp;if (AdminNotifications::isAdminNotifiedOnUserRegistration()) {</span></p>
<p><span style="color: #0000cd">&nbsp;&nbsp;&nbsp; foreach($_POST as $k=&gt;$v)<br />
	&nbsp;&nbsp;&nbsp; {<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if(is_array($v))<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; foreach ($v as $kk=&gt;$vv)<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if($kk != &#39;original&#39;) {$otherInfo .= ucfirst($k).&quot;: $vv&lt;br /&gt;\n&quot;;}<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; else<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $otherInfo .= &quot;$k: $v&lt;br /&gt;\n&quot;;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br />
	&nbsp;&nbsp;&nbsp; }<br />
	&nbsp;&nbsp;&nbsp;AdminNotifications::sendAdminUserRegistrationLetter($user-&gt;getSID(),$otherInfo);</span><span style="color: #0000cd"><br />
	&nbsp;&nbsp;}</span><span style="color: #0000cd"><span style="color: #000"><span _fck_bookmark="1" style="display: none">&nbsp;</span></span></span></p>
<p><span style="color: #0000cd"><span style="color: #000">This last piece of code grabs the users posted information from the registration form and&nbsp;passes it to the notifications class. The&nbsp;form fields captured in the posted registration are then&nbsp;added to the&nbsp;email template before being sent to the admin.&nbsp; </span></span></p>
<p><span style="color: #0000cd"><span style="color: #000">And wa la&#8230; there you have it.&nbsp; Let me know if this helps anybody out there.</span></span></p>
<p><span style="color: #0000cd"><span style="color: #000">Joe</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.develoware.com/newsposts/edit-smartjobboard-registration-email-template/295.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add a module to your smartjobboard software.</title>
		<link>http://www.develoware.com/newsposts/how-to-add-a-module-to-your-smartjobboard-software/293.php</link>
		<comments>http://www.develoware.com/newsposts/how-to-add-a-module-to-your-smartjobboard-software/293.php#comments</comments>
		<pubDate>Wed, 24 Feb 2010 00:38:15 +0000</pubDate>
		<dc:creator>Joseph Mas</dc:creator>
				<category><![CDATA[Smart Job Board Help]]></category>

		<guid isPermaLink="false">http://www.develoware.com/?p=293</guid>
		<description><![CDATA[1. go into the system/modules/whatevercategory and edit the config to add the module into the array
	example:
	/system/modules/miscellaneous/config.php
	add
	&#39;contact_form&#39; =&#62; array
	&#160; (
	&#160;&#160; &#39;display_name&#39; =&#62; &#39;Contact Form&#39;,
	&#160;&#160; &#39;script&#39;&#160; =&#62; &#39;contact_form.php&#39;,
	&#160;&#160; &#39;type&#39;&#160;&#160; =&#62; &#39;user&#39;,
	&#160;&#160; &#39;access_type&#39; =&#62; array(&#39;user&#39;),
	&#160; ),

	2. Now in the system/user-scripts directory add the php file to do the work
	example:
	system/users-cripts
	create and add contact_us.php with the code for processing

	3. Now [...]]]></description>
			<content:encoded><![CDATA[<p>1. go into the system/modules/whatevercategory and edit the config to add the module into the array<br />
	example:<br />
	/system/modules/miscellaneous/config.php<br />
	add<br />
	&#39;contact_form&#39; =&gt; array<br />
	&nbsp; (<br />
	&nbsp;&nbsp; &#39;display_name&#39; =&gt; &#39;Contact Form&#39;,<br />
	&nbsp;&nbsp; &#39;script&#39;&nbsp; =&gt; &#39;contact_form.php&#39;,<br />
	&nbsp;&nbsp; &#39;type&#39;&nbsp;&nbsp; =&gt; &#39;user&#39;,<br />
	&nbsp;&nbsp; &#39;access_type&#39; =&gt; array(&#39;user&#39;),<br />
	&nbsp; ),</p>
<p>
	2. Now in the system/user-scripts directory add the php file to do the work<br />
	example:<br />
	system/users-cripts<br />
	create and add contact_us.php with the code for processing</p>
<p>
	3. Now in templates add the template: probably best to copy one and modify it.<br />
	example:<br />
	create and add templates/_system/miscellaneous/contact_form.tpl<br />
	email_control.tpl -&gt;copied from contactus<br />
	email_control.php -&gt;copied from contactus<br />
	EmialControlForm.php -&gt;copied from contactus <br />
	AdminNotifications.php -&gt; added function for notification<br />
	admin_email_control_form_message.tpl -&gt; copied from the contactus template<br />
	ObjectMother.php -&gt; added CreateTemplate function</p>
]]></content:encoded>
			<wfw:commentRss>http://www.develoware.com/newsposts/how-to-add-a-module-to-your-smartjobboard-software/293.php/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ProCollectionJobs.com</title>
		<link>http://www.develoware.com/newsposts/procollectionjobs-com/281.php</link>
		<comments>http://www.develoware.com/newsposts/procollectionjobs-com/281.php#comments</comments>
		<pubDate>Fri, 19 Feb 2010 02:33:13 +0000</pubDate>
		<dc:creator>DeveloWare LLC</dc:creator>
				<category><![CDATA[Sites by DeveloWare.com]]></category>

		<guid isPermaLink="false">http://www.develoware.com/?p=281</guid>
		<description><![CDATA[Another site by DeveloWare LLC
About ProCollectionJobs.com
Whether you&#8217;re looking for a collections career or want to know the latest debt and collections news in the debt collections industry, ProCollectionJobs.com provides the collection firms and collections professionals with the tools needed to excell.&#160; With the many years of combined experience in the accounts receivable, debt collection, and [...]]]></description>
			<content:encoded><![CDATA[<h2>Another site by DeveloWare LLC</h2>
<h3>About ProCollectionJobs.com</h3>
<p>Whether you&rsquo;re looking for a collections career or want to know the latest debt and collections news in the debt collections industry, ProCollectionJobs.com provides the collection firms and collections professionals with the tools needed to excell.&nbsp; With the many years of combined experience in the accounts receivable, debt collection, and credit industry, ProCollectionJobs.com has the tools and resources to provide you with the most efficient way to advance your career or company by connection professional collectors and companies.</p>
<h3>Collection Professionals</h3>
<p>ProCollectionJobs.com is a job search engine for collection related professionals looking for career advancement opportunities in the collections industry. With thousands clients and partner relations, we provide up to date job openings and information to help professional individuals achieve their employment goals. Professional collections specialist can post their resume on-line and have collection firms find them, or they can search the collection job postings on their own. Collection specialist can start a free account today and post online for immediate exposure.</p>
<h3>Collection Companies</h3>
<p>ProCollectionJobs.com also serves a collection of resumes specifically targeted in the debt collection industry. Collection firms can choose from several different plans. You will find a package that will allow firms to search the ProCollectionJobs.com database for a professional that fits your needs. Quality canididates will cut training expenses dramaticly. Collection firms can also choose to create a job posting and have professional collectors in there respective field find them. We also provide collection firms an opportunity to advertise their collections &amp; financial related business or organization through sponsorships, logos, banner ads, and free press releases as well.</p>
<p>
	&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.develoware.com/newsposts/procollectionjobs-com/281.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TheVetteNet.com</title>
		<link>http://www.develoware.com/newsposts/thevettenet-com/275.php</link>
		<comments>http://www.develoware.com/newsposts/thevettenet-com/275.php#comments</comments>
		<pubDate>Fri, 19 Feb 2010 02:08:51 +0000</pubDate>
		<dc:creator>DeveloWare LLC</dc:creator>
				<category><![CDATA[Sites by DeveloWare.com]]></category>

		<guid isPermaLink="false">http://www.develoware.com/?p=275</guid>
		<description><![CDATA[Another site by DeveloWare LLC
Nationwide Corvette Brokerage Network

THE VETTE NET &#8211; Nationwide Corvette Brokerage Network was created in 1998 in order to provide a solution for buyers and sellers of Corvettes throughout the country.
With over 2500 transactions accomplished and thousands of satisfied Vette fans all over the country and the world, we employ a unique [...]]]></description>
			<content:encoded><![CDATA[<h2>Another site by DeveloWare LLC</h2>
<h3>Nationwide Corvette Brokerage Network</h3>
<p><img align="right" alt="Find your dream corvette today at TheVetteNet.com" border="0" hspace="5" id="placeholder" src="http://thevettenet.com/images/listings/11_1262830006.jpg" style="width: 244px; height: 184px;" vspace="5" /></p>
<p><a href="http://www.thevettenet.com">THE VETTE NET</a> &#8211; Nationwide Corvette Brokerage Network was created in 1998 in order to provide a solution for buyers and sellers of Corvettes throughout the country.</p>
<p>With over 2500 transactions accomplished and thousands of satisfied Vette fans all over the country and the world, we employ a unique and exclusive system where buyers and sellers connect in a professional manner.&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.develoware.com/newsposts/thevettenet-com/275.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pro-Medical-Jobs.com</title>
		<link>http://www.develoware.com/newsposts/pro-medical-jobs-com/273.php</link>
		<comments>http://www.develoware.com/newsposts/pro-medical-jobs-com/273.php#comments</comments>
		<pubDate>Fri, 19 Feb 2010 02:04:04 +0000</pubDate>
		<dc:creator>DeveloWare LLC</dc:creator>
				<category><![CDATA[Sites by DeveloWare.com]]></category>

		<guid isPermaLink="false">http://www.develoware.com/?p=273</guid>
		<description><![CDATA[Another website by DeveloWare LLC
Medical Professionals:
Find a medical&#160;job, post your&#160;resume, research healthcare and medical careers at featured companies, compare healthcare&#160;medical medical&#160;salaries and get medical&#160;career advicee on Pro-Medical-Jobs.com!&#160; Start your medical&#160;job search now on Pro-Medical-Jobs.com&#160;where Medical&#160;jobs&#160;are listed daily.
Medical Employers:
Post your Job&#160;with&#160;the #1 rated&#160;Medical Job Board! Posting your open medical position&#160;with&#160;Pro-Medical-Jobs.com is fast, flexible and easy. Pro-Medical-Jobs.com [...]]]></description>
			<content:encoded><![CDATA[<h2>Another website by DeveloWare LLC</h2>
<h3>Medical Professionals:</h3>
<p>Find a medical&nbsp;job, post your&nbsp;resume, research healthcare and medical careers at featured companies, compare healthcare&nbsp;medical medical&nbsp;salaries and get medical&nbsp;career advicee on Pro-Medical-Jobs.com!&nbsp; Start your medical&nbsp;<a href="http://www.pro-medical-jobs.com/find_jobs/" target="_self" ywaonclickoverride="true">job search</a> now on <a href="http://Pro-Medical-Jobs.com">Pro-Medical-Jobs.com</a>&nbsp;where Medical&nbsp;jobs&nbsp;are listed daily.</p>
<h3>Medical Employers:</h3>
<p>Post your Job&nbsp;with&nbsp;the #1 rated&nbsp;Medical Job Board!<span style="font-size: larger;"><strong><span style="color: rgb(153, 204, 0);"> Posting your open medical position&nbsp;with&nbsp;Pro-Medical-Jobs.com is <em>fast</em>, <em>flexible</em> and <em>easy.</em></span></strong></span><em> </em>Pro-Medical-Jobs.com provides you with the resources to present your opportunity to active job seekers.&nbsp;&nbsp;<em>&nbsp; </em>Three&nbsp;simple steps&nbsp;and cost effective:</p>
<p style="text-align: justify;">1) Create a company profile.<br />
	2) Select&nbsp;a posting package.<br />
	3) Post your job<br />
	&nbsp;<strong>IT&#39;S&nbsp;THAT&nbsp;SIMPLE!</strong></p>
<p><a alt="create a company profile" href="http://www.pro-medical-jobs.com/registration/" title="create a company profile"><span style="color: rgb(255, 0, 0);">Create&nbsp;a company profile!</span></a>&nbsp;| <a href="http://www.pro-medical-jobs.com/pricing/" target="_self" title="View our pricing schedule"><span style="color: rgb(255, 0, 0);">View pricing schedule!</span></a>&nbsp;|&nbsp;<a href="http://www.pro-medical-jobs.com/price_comparison/" target="_self"><span style="color: rgb(255, 0, 0);">Compare&nbsp;Prices!</span></a></p>
<p><span style="color: rgb(153, 204, 0);">Pro-MedicalJobs.com offers the same paid service as Monster and Career Builder at 1/4 the cost!</span></p>
<p style="text-align: justify;">Within just a few hours after&nbsp;your&nbsp;medical ad is posted&nbsp;our proprietary&nbsp;technology distributes your job to tens of thousands of&nbsp;job seekers.&nbsp; Your&nbsp;medical job listing is not confined to just this website, it will show up on our extensive&nbsp;network&nbsp;partner sites as well as&nbsp;the major&nbsp;job search engines such as Indeed.com, SimplyHired.com and many others. Our distribution of your listing ensures you will find the talent you desire &#8211;Fast.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.develoware.com/newsposts/pro-medical-jobs-com/273.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MyPrayerToday.com</title>
		<link>http://www.develoware.com/newsposts/myprayertoday-com/271.php</link>
		<comments>http://www.develoware.com/newsposts/myprayertoday-com/271.php#comments</comments>
		<pubDate>Fri, 19 Feb 2010 01:57:20 +0000</pubDate>
		<dc:creator>DeveloWare LLC</dc:creator>
				<category><![CDATA[Sites by DeveloWare.com]]></category>

		<guid isPermaLink="false">http://www.develoware.com/?p=271</guid>
		<description><![CDATA[Another site by DeveloWare LLC
MyPrayerToday.com &#8211; Prayer of the day daily Christian prayers give you a daily devotion to ponder on for the day. Prayer of the day in your email or on your cell phone is great for people with little time or on the run. Christian inspirational Prayer from MyPrayerToday.com can alter the [...]]]></description>
			<content:encoded><![CDATA[<h2>Another site by DeveloWare LLC</h2>
<p><a href="http://www.MyPrayerToday.com"><strong>MyPrayerToday.com</strong></a> &#8211; Prayer of the day daily Christian prayers give you a daily devotion to ponder on for the day. Prayer of the day in your email or on your cell phone is great for people with little time or on the run. Christian inspirational Prayer from <a href="http://www.MyVerseToday.com/">MyPrayerToday.com</a> can alter the entire course of your life. God speaks straight to your heart with a simple a devotional prayer of the day. Sign up to get prayers daily that you can trust are rooted the Truth. A small devotional prayer based on Gods daily Word will guide you through your toughest work day. God will change our hearts one day at a time with each message. We keep the prayer of the day motivational simple and small. If you have ever had the thought &quot;I need help&quot; or &quot;I need hope&quot; then this is the prayer of the day service for you. The prayer you will receive tomorrow will hinder satan in his work to steal, kill, and destroy. Christian inspiration through daily prayer by receiving small christian devotions is becoming more important for our lives by the day. Satan does not want you to have the daily prayer service you are looking at right now.&nbsp; The devotional prayer of day we send out each day is a tool to keep you in touch daily. If you are searching for a devotional prayer of the day, everyday, the subscribe to MyPrayerToday.com. Our prayer of the day is never cluttered with spam and the prayers are small so they can be easily read. <a href="http://MyPrayerToday.com/share.php">MyPrayerToday.com</a> serves religious prayers that are rooted ONLY from the Christian Bible.&nbsp;</p>
<p>This site is about to undertake a major overhaul with the help of DeveloWare LLC. DeveloWare LLC created the first version as a proof of concept. Since its inception it has exploded with subscribers. Phase two of development will begin shortly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.develoware.com/newsposts/myprayertoday-com/271.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
