Joblite releases new recruitment software

Joblite has just released a scaled down version of the Joblite software specifically aimed at recruiters and recruitment companies wishing to establish a online presence and advertise their own job vacancies online.

For more information please visit http://www.joblite.co.uk/content9/recruitment_software.html

Posted in Annoucements | Leave a comment

New Streamlined Admin Interface

Joblite now comes complete with a new streamlined admin interface making it much easier for you to control and manage your job board.

To view a example of this, please visit our demo software at http://www.onlinejobhunt.com/siteadmin
username: admin
password: demo

Posted in Upgrades | 1 Comment

Multilingual Translator

Joblite is now integrated with Google Translator. This will allow users to translate the Joblite software into their desired language on the fly. You do not need to add additional language packs and you do not need to spend time translating any files.

To view a example of this, please visit our demo software at http://www.onlinejobhunt.com/ and test the translator just below the top banner.

Posted in Upgrades | 2 Comments

Multiple Keyword Search

We have upgraded the job search function on the Joblite software to allow multiple keywords. Users can now search using multiple keywords which will make the job search function more easy to use and also more precise.

To view a example of this, please visit http://www.onlinejobhunt.com/ and test the search jobs function.

To upgrade this on your website simply replace the code on the following files:

results.php
results2.php
jobseekers/results.php
jobseekers/results2.php

Replace:

if (!empty($kw))
{
$sch[] = “(jobref like ‘%$kw%’ || country like ‘%$kw%’ || subcounty like ‘%$kw%’ || contract like ‘%$kw%’ || hour like ‘%$kw%’ || position like ‘%$kw%’ || category like ‘%$kw%’ || description like ‘%$kw%’ || salary like ‘%$kw%’)”;
}

With:

if (!empty($kw))
{
$pos = strpos($kw, ‘,’);
if ($pos === false)
{
$sch[] = “(jobref like ‘%$kw%’ || country like ‘%$kw%’ || subcounty like ‘%$kw%’ || subcity like ‘%$kw%’ || contract like ‘%$kw%’ || hour like ‘%$kw%’ || position like ‘%$kw%’ || category like ‘%$kw%’ || subcategory like ‘%$kw%’ || description like ‘%$kw%’ || salary like ‘%$kw%’)”;

}
else
{
$kwArr = explode(“,”,$kw);
for($k=0;$k<=sizeof($kwArr);$k++)
{
$sch[] = “(jobref like ‘%$kwArr[$k]%’ || country like ‘%$kwArr[$k]%’ || subcounty like ‘%$kwArr[$k]%’ || subcity like ‘%$kwArr[$k]%’ || contract like ‘%$kwArr[$k]%’ || hour like ‘%$kwArr[$k]%’ || position like ‘%$kwArr[$k]%’ || category like ‘%$kwArr[$k]%’ || subcategory like ‘%$kwArr[$k]%’ || description like ‘%$kwArr[$k]%’ || salary like ‘%$kwArr[$k]%’)”;

}
}

}

If you have any problems with this, please email us at info@joblite.co.uk

Posted in Upgrades | Leave a comment

Error updating jobseeker and employer email address

A customer has brought to our attention that there is a problem when trying to update a job seekers or employers email address from the ‘update details’ page in their members section. When they try to update the email address, it saves correctly but then looses the session and you need to log out, and log back in with the new email address.

In order to resolve this issue so that you can update a email address without loosing the session and without logging out and logging back in you need to change the following pages:

employers/update.php

$message = “information saved”;

to

$message = “information saved”;
$_SESSION[ename] = $ename2;

jobseekers/update.php

$message = “information saved”;

to

$message = “information saved”;
$_SESSION[uname] = $uname2;

If you have further queries regarding this issue, please email us at info@joblite.co.uk

Posted in Bug Fixes | 1 Comment

Jobs counter for categories and locations

If you wish to display a jobs counter by each category and location on your homepage, then this upgrade is for you.
To view a example of the counter, please see below:

To upgrade, simply modify the pages as below:

tab2/category.html

Change:

<img src=’images/l1.png’ border=’0′ /> <a href=”<?=$fullurl?>/category/<?=$string?>.html”><?=$aqm['category']?></a>

to

<img src=’images/l1.png’ border=’0′ /> <a href=”<?=$fullurl?>/category/<?=$string?>.html”><?=$aqm['category']?></a> (<?    $f = “SELECT jobid, COUNT(*) FROM jobs WHERE category like ‘%$aqm[category]%’ and status = ’0′ GROUP BY jobid”;$g = mysql_query($f) or die(mysql_error());$h = mysql_num_rows($g); $row2 = mysql_fetch_row($g); echo “$h”; ?>)

tab2/location.html

Change:

<td height=”5″ width=”30%” valign=”middle”><?
$string = “$aqm[country]“;
$string = str_replace (” “, “_”, $string);

$string = strtolower($string);
?>
<img src=’images/l1.png’ border=’0′ /> <a href=”<?=$fullurl?>/location/<?=$string?>.html”><b><?=$aqm['country']?></b></a><br><table cellpadding=”1″ cellspacing=”1″ width=”100%”><?$i2 = -1;$qm2 = “select * from subcounties where toplevelcountry = ‘$aqm[country]‘ order by subcounty”;$rqm2 = mysql_query($qm2) or die(mysql_error());while($aqm2=mysql_fetch_array($rqm2)){$i2++;if($i2/3 == intval($i2/3)){?><tr><?}?><td height=”5″ width=”30%” valign=”middle” onMouseOver=this.style.backgroundColor=’#DDDDDD’ onMouseOut=this.style.backgroundColor=’#FFFFFF’><?
$string2 = “$aqm2[subcounty]“;
$string2 = str_replace (” “, “_”, $string2);

$string2 = strtolower($string2);
?>
<img src=’images/l1.png’ border=’0′ /> <a href=”<?=$fullurl?>/2_all/<?=$string?>/<?=$string2?>.html”><?=$aqm2['subcounty']?></a><br></td><?if(($i2+1)/3 == intval(($i2+1)/3)){?></tr><?}}?></table><br></td>

to

<td height=”5″ width=”30%” valign=”middle”><?
$string = “$aqm[country]“;
$string = str_replace (” “, “_”, $string);

$string = strtolower($string);
?>
<img src=’images/l1.png’ border=’0′ /> <a href=”<?=$fullurl?>/location/<?=$string?>.html”><b><?=$aqm['country']?></b></a> (<?    $f = “SELECT jobid, COUNT(*) FROM jobs WHERE country like ‘%$aqm[country]%’ and status = ’0′ GROUP BY jobid”;$g = mysql_query($f) or die(mysql_error());$h = mysql_num_rows($g); $row2 = mysql_fetch_row($g); echo “$h”; ?>)<br><table cellpadding=”1″ cellspacing=”1″ width=”100%”><?$i2 = -1;$qm2 = “select * from subcounties where toplevelcountry = ‘$aqm[country]‘ order by subcounty”;$rqm2 = mysql_query($qm2) or die(mysql_error());while($aqm2=mysql_fetch_array($rqm2)){$i2++;if($i2/3 == intval($i2/3)){?><tr><?}?><td height=”5″ width=”30%” valign=”middle” onMouseOver=this.style.backgroundColor=’#DDDDDD’ onMouseOut=this.style.backgroundColor=’#FFFFFF’><?
$string2 = “$aqm2[subcounty]“;
$string2 = str_replace (” “, “_”, $string2);

$string2 = strtolower($string2);
?>
<img src=’images/l1.png’ border=’0′ /> <a href=”<?=$fullurl?>/2_all/<?=$string?>/<?=$string2?>.html”><?=$aqm2['subcounty']?></a> (<?    $f = “SELECT jobid, COUNT(*) FROM jobs WHERE subcounty like ‘%$aqm2[subcounty]%’ and status = ’0′ GROUP BY jobid”;$g = mysql_query($f) or die(mysql_error());$h = mysql_num_rows($g); $row2 = mysql_fetch_row($g); echo “$h”; ?>)<br></td><?if(($i2+1)/3 == intval(($i2+1)/3)){?></tr><?}}?></table><br></td>

tab2/tab.php

Change:

<img src=’images/l1.png’ border=’0′ /> <a href=”<?=$fullurl?>/category/<?=$string?>.html”><?=$aqm['category']?></a>

to

<img src=’images/l1.png’ border=’0′ /> <a href=”<?=$fullurl?>/category/<?=$string?>.html”><?=$aqm['category']?></a> (<?    $f = “SELECT jobid, COUNT(*) FROM jobs WHERE category like ‘%$aqm[category]%’ and status = ’0′ GROUP BY jobid”;$g = mysql_query($f) or die(mysql_error());$h = mysql_num_rows($g); $row2 = mysql_fetch_row($g); echo “$h”; ?>)

If you have further queries regarding this issue, please email us at info@joblite.co.uk

Posted in Upgrades | Leave a comment

Captcha Made Simple

A customer has brought to our attention that the Captcha system on the Joblite software is too complicated and hard to read. A quick fix for this is to turn the Captcha into ‘Sum only’ instead of ‘Sum and Phrases’.

In order to resolve this issue, you will need to replace the following code in the following file: class/captchaZDR.php

case 1 : $image = $this->task_string(); break;
case 2 : $image = $this->task_sum(); break;
case 3 : $image = $this->task_deduction(); break;

default : $image = $this->task_string(); break;

To

case 1 : $image = $this->task_sum(); break;
case 2 : $image = $this->task_sum(); break;
case 3 : $image = $this->task_sum(); break;

default : $image = $this->task_sum(); break;

If you have further queries regarding this issue, please email us at info@joblite.co.uk

Posted in Bug Fixes | 1 Comment

Employers registration page mysql bug fix

A customer has brought to our attention that there is a problem with the employers registration page. When a employer registers and inputs the character ‘ in the Company Description box, the registration page throws up a mysql error.

In order to resolve this issue, you will need to replace the following code in the following file: employers/registration.php

$q1 = “insert into employers set
regdate = \”$EXmonth/$EXday/$EXyear\”,
ename = \”$ename\”,
epass = \”$epass\”,
companyname = \”$companyname\”,
contactname = \”$contactname\”,
code = \”$key\”,
address = \”$address\”,
zip = \”$zip\”,
country = \”$country\”,
phone = \”$phone\”,
companywww = \”$companywww\”,
companydesc = \”$companydesc\”";

TO

$content=stripslashes($_POST['companydesc']);//remove slashes (/) $content=ereg_replace(“‘”,”&#39;”,$content);//fix SQL

$q1 = “insert into employers set
regdate = ‘$EXmonth/$EXday/$EXyear’,
ename = ‘$ename’, 
epass = ‘$epass’,
companyname = ‘$companyname’,
contactname = ‘$contactname’, 
code = ‘$key’,
address = ‘$address’,
zip = ‘$zip’, 
country = ‘$country’,
phone = ‘$phone’, 
companywww = ‘$companywww’,
companydesc = ‘$content’”;

If you have further queries regarding this issue, please email us at info@joblite.co.uk

Posted in Bug Fixes | 2 Comments

Joblite is now compatible with most third party multi job posting and applicant tracking services.

Joblite is now compatible with most third party multi job posting services: The new multi post plugin will enable your job board to be compatible with the following multi job posting services and applicant tracking services:

Multi Post Plugin
Purchase Price: £125

To purchase, please contact us via the Joblite Contact Form

Posted in Upgrades | Leave a comment

Joblite Upgrades/Bug Fixes blog launched!

We have now launched our very own blog dedicated to module upgrades and bug fixes for the Joblite software. Once a new upgrade/bug fix is available for release, we will post it online.

Posted in Annoucements | 1 Comment