Re: .info Bug [ Started by elbsailor in Bug reports : 1 replies ]

Yes, it ca be fixed easily. Just do what is described here http://www.jobberbase.com/forum/post8323.html#p8323

Re: Call to a member function fetch_assoc() on a non-object error [ Started by saudar82 in General support : 17 replies ]

Hi,

From what I see above, you've misspeled the prefix and app_url (you are missing a t) but I don't know if you did that on purpose when you posted your config. If you didn't do it on purpose, that could be the reason for your problem, everything else seems OK.

Re: blank page [ Started by easyhost in General support : 11 replies ]

FYI, the Installation Guide is now available at http://wiki.jobberbase.com/install

Re: Error while installation [ Started by arjun84629 in General support : 1 replies ]

This problem was solved offline - for the interested parties, the problem was caused by the fact that jobberbase was installed in a subfolder and the [b]prefix[/b] was example.com/subfolder instead of just example.com.

If somebody runs into a similar problem, be sure that [b]prefix[/b] is in the form [b]domain.tld[/b], without www or http. Also, if you have jobberbase in a subfolder (like domain.tld/subfolder), be sure that the prefix is only domain.tld

Re: integrate AdCaptcher into jobberbase apply page & contact [ Started by style in General support : 2 replies ]

I wrote you a mail, don't know if you read it.

Re: Installing 1.9 [ Started by gibby in General discussion : 10 replies ]

Please try with mysql5.server284.com as your db_host

Re: Call to a member function fetch_assoc() on a non-object error [ Started by saudar82 in General support : 17 replies ]

Hi,

I saw your site and the default theme looks and works as expected. I assume that you fixed whatever problem you had.

Re: There is no title in website expect index [ Started by Sniuff in Bug reports : 4 replies ]

OK, I see now. Indeed, we seem not to set the title at all in the administration pages, but nobody reported this so far.

Re: Help with install please [ Started by mantra in General support : 9 replies ]

Hi!

In _config/config.envs.php try commenting out the following lines by putting // in front of each line

[code]
ini_set('error_reporting', $__instance['ini_error_reporting']);
ini_set('display_errors', $__instance['ini_display_errors']);
[/code]

I tried it locally and it seems to work just fine. Please let us know if it works for you.

Re: There is no title in website expect index [ Started by Sniuff in Bug reports : 4 replies ]

Hi!

Some pages have titles by default (for example the job's detail page), but for others (like categories) you have to set them yourself.

For example, in case of categories, you can set the title from inside the admin panel. You have to click on Categories and then set the title for each category.

I hope this helps.

Re: How can i check version installed? [ Started by informacione in General support : 2 replies ]

Hi!

Jobberbase 1.8 is the first version where we've put the version define('JOBBERBASE_VERSION', '1.8'); in config.php.

Starting with 1.9, the version is defined in _config/config.settings.php

From what I remember, we never had a __includes/config_settings.php file.

PS: If you want, you can send me your site's link in a private mail via http://www.jobberbase.com/forum/email19.html and I'll try to find out what version you have installed.

Re: EMPLOYERS POST BUTTON? [ Started by nparsons08 in General support : 1 replies ]

Hi,

You can find this in [b]_templates/hireme/sidebar.tpl[/b]

[code]
{if $smarty.const.ENABLE_NEW_JOBS}
<a href="{$BASE_URL}post/" title="{$translations.search.submit_title}" id="postjob" class="add">Employers<span>{$translations.search.submit}</span></a>
{/if}
[/code]

Re: Call to a member function fetch_assoc() on a non-object error [ Started by saudar82 in General support : 17 replies ]

As promised, I've investigated the problem and found the solution.

It was not working for you when trying to access JB over your network because no matching combination of [i]prefix[/i] and [i]app_url[/i] was found in config.envs.php.

For it to work correctly, you must use localhost inside [i]prefix[/i] and [i]app_url[/i] in one of the $__instances['xxx'] branch, and your machine's IP inside [i]prefix[/i] and [i]app_url[/i] in another $__instances['yyy'] branch as in my example below:
[code]
$__instances['local'] = array(
// should be a unique part of the url (or the entire url if you wish)
'prefix' => 'localhost',
// mysql credentials
'db_host' => 'localhost',
'db_port' => 3306,
'db_user' => 'root',
'db_password' => '',
'db_name' => 'jb19',
'db_prefix' => '',
// your site's full url
'app_url' => 'http://localhost/jb/',
// error reporting
'ini_error_reporting' => E_ALL,
'ini_display_errors' => 'Off',
// environment setting 1 (use 'local' for localhost/testing OR 'onlin …

Re: Call to a member function fetch_assoc() on a non-object error [ Started by saudar82 in General support : 17 replies ]

I was able to reproduce this inside my home network. I'll debug it later today and will get back to you.

Re: Got blank page after uploading Jobberbase 1.9 source files [ Started by nguyenlocduy in General support : 2 replies ]

Hi.

Be sure that you've correctly set up the $__instances['live'] part. Please note that the [i]prefix[/i] must be [b]yoursite.com[/b], whereas the [i]app_url[/i] must be [b]http://www.yoursite.com/[/b]. To enable debugging, change [i]ini_display_errors[/i] to On.

Re: Keywords in Backend [ Started by elbsailor in General support : 1 replies ]

If you mean Settings -> Main settings -> Site keywords, then you can separate the keywords with a comma but this is anyhow not a must. Anyhow, from what I know, Google (don't know about Yahoo or Bing) ignores <meta name="keywords" content="bla, bla" /> tags

Re: Limit Number of "Seen Recently" [ Started by Abby in General support : 3 replies ]

I had some time to look now and it's actually pretty easy to have this: open page_job.php and find the line [code]if (count($_SESSION['last_viewed_jobs']) > 10)[/code] Replace 10 with 4 and there you have it.

Re: Need help - Blank screen after install [ Started by ivwqwgad in Bug reports : 1 replies ]

The site seems to be running fine now so we can consider the problem being solved.

Re: Problem with pages [ Started by whitsey in General support : 2 replies ]

Hi,

This seems to be an .htaccess configuration issue.

I recommend that you replace your .htaccess files with the ones that came with jobberbase (you have one in the jobberbase root folder and the other one in the admin folder) and then do the following:

- in the .htaccess file from the jobberbase root folder add the line [b]RewriteBase /hairdresser-jobs[/b]
- in the .htaccess file from the admin folder add the line [b]RewriteBase /hairdresser-jobs/admin[/b]

Please let us know if it works.

Re: Call to a member function fetch_assoc() on a non-object error [ Started by saudar82 in General support : 17 replies ]

Hi,

About your first problem: what happes if in the config_envs.php file, you use your machine's IP address instead of using localhost?

About the slow loading & links not working: this sounds like Apache's mod_rewrite module is not loaded or it's incorrectly configured.

Re: Limit Number of "Seen Recently" [ Started by Abby in General support : 3 replies ]

Hi,

What you want is not available by default in jobberbase. I hope I'll have some time these days to implement it. When I'm done, I'll post here the solution.

Re: reCaptcha color modification [ Started by nparsons08 in Tutorials : 1 replies ]

Hi,

You need to change

[code]
<script type="text/javascript">
var RecaptchaOptions = {
theme : 'white',
tabindex : 9
};
</script>
[/code]

in _templates/default/publish-write.tpl, _templates/default/job-details.tpl and _templates/default/page.tpl (the latter is for the recaptcha on the contact page, if you have enabled it).

If you have to add/change CSS code, it must go into _templates/default/css/screen.css (if you are using the default jobberbase theme)

Re: Smarty Error. [ Started by aravind.parvatikar in General support : 3 replies ]

As I explained above, you must make the _cache folder from admin/_templates writable.

Smarty is also telling you the same: Unable to write to $compile_dir '/home/abhamovies/domains/abhamovies.com/public_html/jobs/public/[b]admin/_templates/_cache[/b]'

Re: Deleting or editing jobs as site admin. [ Started by mholohan in General support : 6 replies ]

I had a look at your site and I see that you have spaces in the category URL (for example, you have http://www.ubs-career.com/jobs/Account Clerk/) and this is why you get that page not found error message. Please replace them with - or _ characters so that you have account-clerk, for example. You can do this from the admin panel, by clicking on Categories and changing the URL for earch category.

Re: Deleting or editing jobs as site admin. [ Started by mholohan in General support : 6 replies ]

Hi,

From what I see, your problem is .htaccess related. Did you install jobberbase in a subfolder? (for example, do you access it like mysite.com/jobberbase)? If yes, you must add the line [b]RewriteBase /jobberbase/admin[/b] to the .htaccess file from the admin folder.