Re: Installation [ Started by simon in General support : 5 replies ]

This is not related to jobberbase, you will need to search google - there are plenty of walkthroughs and videos on how to install PHP and MySQL on server environments.

Re: Jobswhite 0.1 - Feedback [ Started by maxxu in Templates for jobberBase : 6 replies ]

Added your theme on http://www.jobberbase.com/wiki/index.php/Themes Page.

Nice Theme.

Re: RSS Feed with Google CHROME 3.0.32 [ Started by rxnohadd in Bug reports : 1 replies ]

Wrong place to report. And its not a bug. Problem is that Google Chrome does not recognise RSS feeds. You may have to wait for it to have that feature in a future version.

I am closing the thread. If you have any other issue, open a new thread.

Topic: [BUG FIX] Solution if Most Applied Jobs being set to 0 does not work [ Started by navjotjsingh in Bug reports : 1 replies ]

In Jobberbase v1.8 (No idea if it was present before) there is a bug that you can's set Most Applied Jobs from Settings>>Search/Pagination Settings to 0. If you set it to 0 you get this error:

[code]
Notice: Undefined variable: sql_limit in F:\server\xampp\htdocs\www\jobberbase\trunk\public\_includes\class.Job.php on line 591
[/code]

And if you have turned error reporting off, no error will be shown and it will still show Most applied to Jobs.

This is due to a small logical bug being introduced in class.Job.php. Open class.Job.php and find this line:

find this line:

[code]
if($limit > 0 )
{
$sql_limit = 'LIMIT ' . $limit;
}
[/code]

and change it to

[code]
$sql_limit = 'LIMIT ' . $limit;
[/code]

This should fix the bug.

Re: Fake Jobs on the admin Section [ Started by elgreco in Tutorials : 5 replies ]

This should work in v1.8 albeit with a few tweaks (required only if you have customised job url structure or using database prefix)

Everything remains the same except use this page_spam.php:

[code]
<?php
class Spam
{
function __construct()
{ }

public function Reports()
{
global $db;

$sql = 'SELECT count(distinct job_id) AS totalNumberOfReports
FROM '.DB_PREFIX.'spam_reports';
$result = $db->query($sql);
$row = $result->fetch_assoc();
$totalNumberOfReports = $row['totalNumberOfReports'];

$sql = 'SELECT DISTINCT b.title AS title, b.company AS company, a.job_id AS job_id,sp.counter as counter
FROM '.DB_PREFIX.'spam_reports a join '.DB_PREFIX.'jobs b
on a.job_id = b.id
join (
select job_id,count(*) as counter from '.DB_PREFIX.'spam_reports
group by job_id) as sp …

Re: Simple Login System for Companies [ Started by redjumpsuit in Feature requests : 24 replies ]

Demo seems to be using a very old version of Jobberbase.

Re: Is it possible? [ Started by khokongeo in General discussion : 1 replies ]

Yes its possible. It will require extensive coding to create employer and employee accounts. You can contact redjumpsuit.net for that. He already provides such services.

Re: Problems with RSS v1.8 ,blank white page [ Started by dre in General support : 3 replies ]

Does your job board resides at http://localhost/1/ ? If yes here is how it should be:

1. http://localhost/1/rss/ - should point to a page containing list of all RSS feeds.
2. http://localhost/1/rss/all/ - should point to combined feed of all jobs which you can subscribe to.
3. http://localhost/1/rss/categoryurl/ - should point to feed of specified category only which you can subscribe to.

Make sure when you select category feeds or all feeds (2 and 3rd case), you are checking it via Feed readers or a browser which can detect feeds. Which browser you are using?

Re: Template modification tutorial v 1.8 [ Started by dre in Tutorials : 9 replies ]

About Page can be modified by Visiting Admin Section...check for Pages menu there. And if you are using v1.8, Widgets page can be modified from _templates/default/widgets.tpl file and if you are using v1.7 and below, you will need to modifiy it from Database only...modifying it from Admin section will damage it.

Post Job is a image and if you want to modify, check for code in screen.css file - you can modify its look from there.

And please keep the url intact. It should always point to www.yourjobboard.com/post/

Re: Fake you ad and Refer to a friend error [ Started by rwin2007 in Bug reports : 2 replies ]

You should contact evert for this. This is not a jobberbase bug since its related to the Jobberbased theme.

Re: Replace job-category-name with Job Category Name in rss feed title [ Started by hobo in Tutorials : 5 replies ]

BTW in your code, this line can be done away with:

[code]
$this->mCategoryVarName = $category;
[/code]

And instead of this line:

[code]
var $mCategoryVarName = false;
[/code]

it should be

[code]
var $mCategoryName = false;
[/code]

Re: Replace job-category-name with Job Category Name in rss feed title [ Started by hobo in Tutorials : 5 replies ]

OK...got your point. Sorry for misunderstanding and overlooking too much. This will be fixed in v1.9.

Re: 1.8 Cities tag cloud improvements [ Started by cheesypeas in General support : 3 replies ]

For your first query, Jobberbase shows 'Other Cities' in Tag cloud against its count where the city or location was customised. If you are getting blank there than pls open these two files:

/_templates/default/cities.tpl and check whether the following line is intact:

[code]
<a href="{$BASE_URL}jobs-in-other-cities/">{$translations.jobscity.other_cities} ({$jobs_count_in_other_cities})</a>
[/code]

And also open _includes/translations.ini and find whether this line exists:

[code]
other_cities = "Other cities"
[/code]

The above code should be under a section which starts with
[code]
[jobscity]
[/code]

Re: How i can activate php language in tpl files? [ Started by munch in General support : 4 replies ]

Yes you can use that way. But if your code is regarding interacting with Jobberbase core, you will need to study the jobberbase code and learn smarty's basics. ( smarty.net )

Re: How i can activate php language in tpl files? [ Started by munch in General support : 4 replies ]

Are you enclosing php codes in {php}{/php} tags?

Re: Name And E-mail Address in The Main Email Section [ Started by david_farren in General support : 4 replies ]

Application is send directly to the employer and employer can see the Applicant's name and email id. I don't feel why there is the need to display the information in the text box?

Re: 2 questions about jobberbase and wordpress [ Started by maorb in General support : 12 replies ]

Well yes you can - there are two ways, either you copy paste the manual html code of sidebar in your jobberBase theme or you can include this file from your wordpress installation using require command: wp-blog-header.php

Once you include wp-blog-header.php in your template, you can invoke all wordpress related template functions and tags.

Re: 2 questions about jobberbase and wordpress [ Started by maorb in General support : 12 replies ]

The only easy out to integrate Jobberbase with Wordpress is to make their themes as same and Add links to job board in wordpress page menus. This way, job board will look as a part of Wordpress.

Re: allthejobs.org - powered by jobberBase [ Started by wtrevino in Show off : 10 replies ]

Indeed specifically has a program which allows you to import their jobs. And it is legal, since Indeed is itself importing jobs from many job sites with which it has agreement. And Indeed has a affiliate program using which you can import jobs to any Job site.

Re: Jobberbased release [ Started by evertsemeijn in Templates for jobberBase : 19 replies ]

I may try my hand at updating if I get time in few days from now.

Re: Replace job-category-name with Job Category Name in rss feed title [ Started by hobo in Tutorials : 5 replies ]

Moreover, the category name is being displayed in the feed title. What are you trying to achieve here with this code?

Re: job offer [ Started by bnataraja in jobberBase developers looking for jobs : 1 replies ]

This is not a forum to advertise your job boards which is not even using Jobberbase. Closing the post, removing signature and banning you for 7 days.

Re: Jobberbased release [ Started by evertsemeijn in Templates for jobberBase : 19 replies ]

[quote=Ben-1]Hallo Evert

Is jouw template al weer beschikbaar?
De opgegeven urls zijn allemaal dood.

met vriendelijke groet,
Albert[/quote]

Here is a alternative link to Jobberbased - http://cid-8e5287c7715550d7.skydrive.live.com/self.aspx/navjotjsingh%20Folder/jobberbased.zip

[b]Note:[/b] - This Theme will work only on 1.7 version and not on 1.8 version.

Re: problem with .htaccess file on installation [ Started by hakaii in General support : 11 replies ]

Oops...thanks for clarifying. Pls turn on error reporting in config.php and then report the error and also share your job board url if possible.

And have you checked http://www.jobberbase.com/wiki/ ?

Re: problem with .htaccess file on installation [ Started by hakaii in General support : 11 replies ]

Did you try the putypuruty's last suggestion above?