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.
Welcome to jobberBase Developer Community!
You are not logged in. Please login or register.
We've just added a new category for forums dedicated to local communities.
If you're interested in starting a community in your country or even city, please write us at hello@jobberbase.com and we'll make it happen.
We're also looking for moderators on each local community -- so email us :).
jobberBase Community » Posts by navjotjsingh
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.
Added your theme on http://www.jobberbase.com/wiki/index.php/Themes Page.
Nice Theme.
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.
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.
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 …
Demo seems to be using a very old version of Jobberbase.
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.
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?
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/
You should contact evert for this. This is not a jobberbase bug since its related to the Jobberbased theme.
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]
OK...got your point. Sorry for misunderstanding and overlooking too much. This will be fixed in v1.9.
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]
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 )
Are you enclosing php codes in {php}{/php} tags?
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?
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.
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.
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.
I may try my hand at updating if I get time in few days from now.
Moreover, the category name is being displayed in the feed title. What are you trying to achieve here with this code?
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.
[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.
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/ ?
Did you try the putypuruty's last suggestion above?
Page [ 3 of 9 ] Posts by navjotjsingh [ 51 to 75 of 209 ]
jobberBase Community » Posts by navjotjsingh
Powered by FluxBB
[ Generated in 0.047 seconds, 4 queries executed ]