Re: Error installing [ Started by singular in General support : 2 replies ]

Hi!

Please try this: open the root .htaccess file and add the following line somewhere
[code]RewriteBase /~singular/job[/code]

Hope it helps!

Re: How to retrieve a resume that someone has submitted? [ Started by waynegreen6 in General support : 1 replies ]

Hi!

As it is currently implemented, only the person that has posted the jobs receives the resume; the site's admin doesn't receive an email when someone applies to a job. But this can be changed, of course, by adapting the code a little bit.

Re: Fatal Error: Uncaught exception 'Exception' with message [ Started by eyeplan in General support : 4 replies ]

Hi!

Did you actually import the jobberbase.sql file into the database?

Re: Want to put Job Title in subject line of email to user [ Started by davidmcc3 in General support : 4 replies ]

Hi!

In order to do this, you have to make the following changes:

- in _templates/default/_translations/_emails/emails_en.xml, on line 70, replace [i]Your ad on {SITE_NAME} was published [/i] with [i]Your ad {JOB_TITLE} has been published[/i]

- in _includes/class.EmailTranslator.php, on line 109, replace [i]public function GetPublishToUserSubject()[/i] with [i]public function GetPublishToUserSubject($title)[/i] and add [i]$msg = str_replace('{JOB_TITLE}',$title, $msg);[/i] after the line [i]$msg = (string)$this->xml->PublishToUser->subject;[/i]

- in _includes/class.Postman.php, on line 138, replace [i]$subject = $this->emailTranslator->GetPublishToUserSubject();[/i] with [i]$subject = $this->emailTranslator->GetPublishToUserSubject($data['title']);[/i]

That should do it!

Re: HELP: clicking any link in admin pabel -> page unavailable [ Started by Dr. Shanawany in General support : 11 replies ]

Hi!
In the .htaccess file from the admin folder, can you also try to add this line:
[code]DirectoryIndex index.php [/code]

Re: HELP: clicking any link in admin pabel -> page unavailable [ Started by Dr. Shanawany in General support : 11 replies ]

Hi

In the .htaccess file from your admin folder, can you try adding the line
[code] RewriteBase /admin[/code]
after the line
[code]RewriteEngine on[/code]?

Re: Help! How do you change or delete a job posting? [ Started by jobbank in General support : 2 replies ]

Hi!

You can edit or delete jobs from the admin section. It is located at www.yourjobberbase.com/admin. Default username and password are admin/admin.

Re: fatal error plaease help [ Started by bhargav in General support : 2 replies ]

Hi,

Can you make sure that you followed these steps from the installation guide?
[code]Fatal error: Call to a member function query() on a non-object in /XXX/XXX/XXX/_includes/class.Job.php on line 1025 (note that the line number might differ in your case) or Access denied for user 'yourusername'@'yourdatabasehost' (using password: YES)

There are multiple reasons why you could have these errors:

- be sure that your user name and password (the ones defined in DB_USER and DB_PASS in config.php) are correct - a lot of people misspell them

- be sure that you have imported the jobberbase.sql file and that you have set the correct database name in the DB_NAME constant[/code]

Re: White Page [ Started by Vladzrik in General support : 10 replies ]

Hi!

No, it doesn't work with Wordpress templates and it's not using any SEO plugin from Wordpress. Jobberbase and Wordpress aren't connected in any way.

Re: White Page [ Started by Vladzrik in General support : 10 replies ]

Hi!

Can you try checking what's written at this point into the installation guide?

[code]Fatal error: Call to a member function query() on a non-object in /XXX/XXX/XXX/_includes/class.Job.php on line 1025 (note that the line number might differ in your case) or Access denied for user 'yourusername'@'yourdatabasehost' (using password: YES)

There are multiple reasons why you could have these errors:

- be sure that your user name and password (the ones defined in DB_USER and DB_PASS in config.php) are correct - a lot of people misspell them

- be sure that you have imported the jobberbase.sql file and that you have set the correct database name in the DB_NAME constant
[/code]

Re: no theme showin [ Started by hammour in General support : 5 replies ]

Hi!

You have to set the 'app_url' => '', to 'app_url' => 'http://www.bidgot.com/',

Hope it helps!

Re: My Jobberbase Installation does not Work at all [ Started by andrewsegawa in General support : 9 replies ]

Hi!

For [i]$__instances['local'][/i] , please change [code]'prefix' => 'bestugandajobs.com/',[/code] to [code]'prefix' => 'localhost',[/code]

Let us know if that helped!

Re: How to add "addthis" code? [ Started by er in Templates for jobberBase : 2 replies ]

Hi!

In _templates/default/header.tpl, before <div id="the_feed">, add the following:
[code]
<div style="position:absolute; top:78px; right: 150px;">
{literal}
CODE_FROM_ADDTHIS
{/literal}
</div>
[/code]

Hope it helps!

Re: Anyone to Help with Jobberbase INSTALL ? [ Started by netvalue in Looking for jobberBase developers : 12 replies ]

Hi,

Yes, you should copy the files/folders to the public_html folder. In your case, that is the root now :)

Hope this helps!

Re: Install problem - Front page and Admin page looks great, but dont work [ Started by Dawyck in General support : 13 replies ]

@andyshephard I've sent you an email, also :)

Re: Install problem - Front page and Admin page looks great, but dont work [ Started by Dawyck in General support : 13 replies ]

I sent you an email, not sure you got it

Re: Install problem - Front page and Admin page looks great, but dont work [ Started by Dawyck in General support : 13 replies ]

No, the problem is for sure in the .htaccess file.

Can you try leaving just the following lines in the root .htaccess:
[code]Options +FollowSymlinks

RewriteBase /jersey-jobs

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
[/code]

Re: Install problem - Front page and Admin page looks great, but dont work [ Started by Dawyck in General support : 13 replies ]

Hi,

Can you please try now to add the comment to the line:
[code]Options +FollowSymlinks[/code]?

Re: I think it's a htaccess problem but I can't seem to fix it [ Started by roelb88 in General support : 4 replies ]

Hi,

Could you try adding the following line to your .htaccess file:

[i]RewriteBase /vacatures[/i]

After the line:

[i]RewriteEngine on[/i]

Re: help with localhost install [ Started by Glenn in General support : 11 replies ]

I sent you an email

Re: help with localhost install [ Started by Glenn in General support : 11 replies ]

You don't have to restart apache every time you modify .htaccess.

Have you also tried

RewriteBase /

?

Re: help with localhost install [ Started by Glenn in General support : 11 replies ]

No, the problem is not there. JobberBase works ok using apache on windows.

Did you try to comment the line:

RewriteBase /jobs

from the .htaccess?

You can comment it by placing a # in front of the line.

Re: Piwik Integration [ Started by Ralf in General support : 2 replies ]

Hi,

Put the code between {literal}{/literal} tags, so:
[code]{literal}
<!-- Piwik -->
<script type="text/javascript">
var pkBaseURL = (("https:" == document.location.protocol) ? "https://THIS_USED_TO_BE_THE_PIWIK_DOMAIN/" : "http://THIS_USED_TO_BE_THE_PIWIK_DOMAIN/");
document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E"));
</script><script type="text/javascript">
try {
var piwikTracker = Piwik.getTracker(pkBaseURL + "piwik.php", 1);
piwikTracker.trackPageView();
piwikTracker.enableLinkTracking();
} catch( err ) {}
</script><noscript><p><img src="http://THIS_USED_TO_BE_THE_PIWIK_DOMAIN/piwik.php?idsite=1" style="border:0" alt="" /></p></noscript>
<!-- End Piwik Tracking Tag -->
{/literal}
[/code] …

Re: I have several errors that occur while trying to install [ Started by roelb88 in General support : 5 replies ]

Hi!

First of all make sure that, in config/config.envs.php, in $__instances['live'], the 'app_url' has the following value:
[b]'app_url' => 'http://www.compleetzakelijk.com/maat/',[/b]

and the 'prefix' 'has the following value:
[b]'prefix' => 'compleetzakelijk.com',[/b]

This should fix the errors you get, if not or if you receive other errors after you apply this change, just paste them here.

Hope it helps!

Re: Installation problems: 1) CSS. 2) admin htaccess [ Started by talgalili in Bug reports : 4 replies ]

I see only the homepage is loading. Could you paste here the content of your root .htaccess, please?