Re: PayPal hack for Jobberbase v1.9 [ Started by akanevsky in Tutorials : 11 replies ]

if you go to class.Job.php, and look for the block:

[code]
// Check if the poster of this post has posted before with this e-mail address
public function IsApprovedPosterEmail()
{
global $db;
$sql = 'SELECT poster_email FROM '.DB_PREFIX.'jobs
WHERE poster_email = "' . strtolower($this->mPosterEmail) . '" AND id <> ' . $this->mId . ' AND is_temp = 0
AND (is_active = 1 OR (is_active = 0 AND created_on < DATE_SUB(NOW(), INTERVAL 30 DAY)))';

$result = $db->query($sql);

$row = $result->fetch_assoc();
if (!empty($row['poster_email']))
{
return 1;
}
else
{
return 0;
}
}
[/code]

you can change the line:

[code]
return 1;
[/code]

to

[code]
return 0;
[/code]

this would always return false every time the job poster email is checked and gets auto-posted. didn't test this yet, but should work. let me know how it goes! …

Topic: Sub-Categories Module for jobberBase 1.9.1 [ Started by redjumpsuit in Feature requests : 0 replies ]

this module already existed in the previous bundled add-ons for jobberBase (1.8) that i created. i had some time this week to work on converting the code to jobberBase 1.9.1. i hope this will be a helpful module for those looking at extending jobberBase to accomodate sub-categories functionality.

Features:

* add as many sub-categories under your existing job categories in Admin panel
* delete sub-categories (will only delete when there are no existing jobs posted under it) in Admin panel
* supports sub-categories pagination
* post jobs with sub-categories selection
* show job details with link to job’s sub-category

Screenshots can be found here:

http://www.redjumpsuit.net/2011/05/20/sub-categories-module-for-jobberbase-1-9-1/

Re: Memory error in class.Job.php (version 1.8) [ Started by jobvark in General support : 5 replies ]

could be related to displaying all jobs or all company jobs

for 1.9.1, listing all company jobs throws a similar memory error as posted on my blog:

http://www.redjumpsuit.net/2011/03/17/paginating-list-of-company-jobs/

Re: feature upgrades for 1.9.1 [ Started by redjumpsuit in Feature requests : 1 replies ]

i've set up a demo site to show these bundled add-ons for jobberBase 1.9.1

feel free to try it at:

http://www.redjumpsuit.net/jb191/

Topic: Facebook-like font on default jobberBase template [ Started by redjumpsuit in Templates for jobberBase : 0 replies ]

anyone interested in using Facebook-like font on their default jobberBase templates, you can download from my blog the modified jobberBase default template's screen.css file

you can also see some screenshots here:

http://www.redjumpsuit.net/2011/04/22/facebook-like-font-on-default-jobberbase-template/

Topic: Comment Module for 1.9.1 [ Started by redjumpsuit in Feature requests : 0 replies ]

hi, in case anyone is interested in having a comment system integrated with their jobberBase job board, you can read about it here:

http://www.redjumpsuit.net/2011/04/17/comment-module-for-jobberbase-1-9-1/

requirement:

a successfully installed jobberBase 1.9.1

features include:

* comment posting for every job
* ability to flag inappropriate comment (deletes after a set number of flags)
* users can only flag a comment once with the same IP address
* job poster gets notified every time there is a new comment
* link for job poster to directly delete job
* link for job posters to manage all the comments in the job
* manage comments through the admin panel

Re: Easily switch themes [ Started by evertsemeijn in Tutorials : 5 replies ]

you can try passing the template variable to a session then use the session as your current template. you'll need some php programming knowledge but shouldn't be so hard

Re: Changing existing jobberbase features to work with new database field [ Started by grubix in General support : 2 replies ]

Did you update the code on the following?

page_company.php

[code]
$sql = 'SELECT DISTINCT org_type FROM '.DB_PREFIX.'jobs';
$comps = $db->QueryArray($sql);
foreach ($comps as $comp)
{
if ($sanitizer->sanitize_title_with_dashes($comp['org_type']) == $id)
{
$company = $comp['org_type'];
break;
}
}
$smarty->assign('jobs', $job->ApiGetJobsByCompany($company, false, false));
$smarty->assign('current_company', $company);
[/code]

/_includes/class.Job.php

[code]
// Get all jobs published by a company
public function ApiGetJobsByCompany($company = false, $limit = false, $for_feed = false)
{
global $db;

$jobs = array();
$conditions = '';

if ($company)
{
$conditions .= ' AND org_type LIKE "' . $db->real_escape_string($company) . '"';
}

if ($for_feed)
{
// job was posted more than 10 minutes ago
$conditions .= ' AND DATE_SUB(NOW(), INTERVAL 10 MINUTE) > created_on';
}

if($limit > 0)
$sql_limit = 'LIMIT ' . $limit;
else
$sql_l …

Re: Undefined variable: job_id in page_write.php on line 204 [ Started by PoOoOoZ in Bug reports : 4 replies ]

the solution was posted here:

http://www.jobberbase.com/forum/topic2020-undefined-variable-jobid.html

Re: Free script for backfilling [ Started by cloudczar in Feature requests : 2 replies ]

you can check hobo's links:

http://jobfeeds.me/downloads/userlistings/66.html

these are derivative work of the backfill script that i developed for his website

note that this is for jobberbase to jobberbase backfilling. if you need to backfill from indeed, simplyhired, etc. you will need to get a programmer to write a script for you.

Re: Delete Default jobs and job listing [ Started by sowhatever in General support : 4 replies ]

two ways,

1) you can delete from the Admin panel
2) you can delete from phpMyAdmin

using phpMyAdmin, run this sql script

[code]
TRUNCATE TABLE `hits`;
TRUNCATE TABLE `jobs`;
TRUNCATE TABLE `jobs_applications`;
TRUNCATE TABLE `spam_reports`;
[/code]

Re: How to add something to the new post Site [ Started by Zorro12516 in General support : 2 replies ]

are you referring to adding new fields when posting a new job? or just simply adding some texts to the "post jobs page?

if you need to add a new field when posting new jobs, you will need PHP programming and a good understanding of jobberBase (and how jobs are posted)

you can read a few tutorials that describes adding some fields (most are written for v1.8 though so you will need to convert it to 1.9.1 for it to work with the new version)

add address field (for using google maps)
http://www.redjumpsuit.net/2010/03/27/integrating-google-maps/

add salary range
http://www.redjumpsuit.net/2009/04/09/add-salary-range-when-posting-jobs/

Re: Blank White Site after Install & Fatal Error [ Started by 75020780 in General support : 2 replies ]

open /_config/config.php and comment out line 43 and uncomment line 45

Topic: Out-of-memory when listing jobs of a company [ Started by redjumpsuit in Bug reports : 0 replies ]

if you have a fairly large database of jobs, and you have companies that have over thousands of jobs, more or less you will probably be getting “Out of memory” error when trying to list all the jobs of these companies.

The fix is to paginate the list of jobs instead of listing all of the jobs all the same time.

you can read the fix here:

http://www.redjumpsuit.net/2011/03/17/paginating-list-of-company-jobs/

Re: Lost password for Admin panel and can't change it [ Started by libeti in General support : 2 replies ]

i replied to you ;)

Login to phpMyAdmin and choose the "admin" table of your jobberBase database. Then edit the row of the user "admin". On the password row on the second column is Functions, select MD5 in the dropdown list and then on the Value column type your new password and press Go.

This should change your password.

Re: info.php ? [ Started by netvalue in Bug reports : 4 replies ]

Are u running your jobberbase site with another website in the same root directory? There is no info.php file in jobberbase.

Topic: feature upgrades for 1.9.1 [ Started by redjumpsuit in Feature requests : 1 replies ]

anyone looking to ramp up their jobberBase 1.9.1 job boards should look into this [i]paid[/i] feature upgrade package.

Visit for more info: http://www.redjumpsuit.net/2011/02/28/save-21-on-feature-upgrades/

save up to $21 when you get this bundled feature upgrade instead of getting each of the add-ons individually.

[b]requirement:[/b]
- a successfully installed jobberBase 1.9.1 job board

the add-ons included in this feature upgrade are the following:

[url=http://www.redjumpsuit.net/2011/01/25/online-job-manager-for-jobberbase-1-9-1/]Online Job Manager[/url]

* job poster does not need to register for an account
* no need to login
* no forgetting passwords
* can manage (edit or delete) older posted jobs without accessing the job’s email
* job poster only needs the most recent email received when his/her job was posted
* will not affect any of your customizations
* supports pagination as well

[url=http://www.redjumpsuit.net/2011/02/13/cv-resume-viewer-f …

Re: How to ban a user? [ Started by kamalk in General support : 12 replies ]

this is for 1.8, if you are using it for v1.9.1 you will have to do some conversion

Re: Looking to change textile syntax with Tinymce [ Started by Gerry in Looking for jobberBase developers : 2 replies ]

there is already a solution for this. pls visit http://www.redjumpsuit.net to read about it.

Topic: New Jobs Email Subscription for v1.9.1 [ Started by redjumpsuit in Feature requests : 1 replies ]

i just finished converting an old module from jobberBase 1.8 to 1.9.1 to allow email subscriptions for new jobs posted, [b]New Jobs Email Subscription for jobberBase v1.9.1[/b]

features:
- applicants can subscribe to any of the categories
- applicant must confirm email address before getting notifications (to avoid bogus email addresses)
- automatic notification will be sent to the subscriber whenever a new job is posted for that job’s category
- on the notification sent to the subscribers, an unsubscribe link is provided in case users no longer want to receive emails for that job category
- new jobs email alert does not get sent until the job has been approved by the admin or the job poster’s email address has been previously approved (to avoid spamming)

read more:
http://www.redjumpsuit.net/2011/02/20/new-jobs-email-subscription-for-jobberbase-1-9-1/

Re: online job manager [ Started by redjumpsuit in Feature requests : 3 replies ]

by the way, there is already a new version for jobberBase 1.9.1 for this:

http://www.redjumpsuit.net/2011/01/25/online-job-manager-for-jobberbase-1-9-1/

Topic: CV/Resume Viewer for jobberBase 1.9.1 [ Started by redjumpsuit in Feature requests : 1 replies ]

i just put out a small customization to allow job posters and administrators the ability to view CVs/Resumes of the job's applicants online. no more losing job applications coz they got tagged as spam :) job posters can now view all the applications sent to the jobs they posted.

features:
- single link to view all job applications online
- supports pagination
- ability to download resume
- resumes uploaded are stored in a complex folder and is encoded for protection
- when the job is deleted by the admin, all related applications and resume are deleted as well

you can read more about it here:
http://www.redjumpsuit.net/2011/02/13/cv-resume-viewer-for-v1-9-1/

Re: Employer Portal [ Started by eoktown in Feature requests : 2 replies ]

you might want to try the add-on Online Job Manager for jobberBase 1.9.1

features include the following:

* job poster does not need to register for an account
* no need to login
* no forgetting passwords
* can manage (edit or delete) older posted jobs without accessing the job’s email
* job poster only needs the most recent email received when his/her job was posted
* will not affect any of your customizations
* supports pagination as well

http://www.redjumpsuit.net/2011/01/25/online-job-manager-for-jobberbase-1-9-1/

Re: difference between commercial version and FREE version? [ Started by PurpleCow in General discussion : 6 replies ]

the pro version did have a CV/Resume manager and PayPal integration, which are the 2 major modules most often looked for. these modules are not in the free version.

you can look at the wiki link for list of add-ons/customizations here:

http://wiki.jobberbase.com/customize/customization

Re: I'm searching a Developer for initial Work & maybe regular todos [ Started by Ralf in Looking for jobberBase developers : 2 replies ]

you can see screenshots of TinyMCE integration when posting jobs (front page and admin), in my site:

http://www.redjumpsuit.net/2011/01/31/tinymce-job-posting-for-jobberbase-1-9-1/