Topic: Vector of the Jobberbase Man [ Started by Chronos in Templates for jobberBase : 2 replies ]

I took some time today to recreate the Jobberbase man from the logo in a vector format. It didn't turn out exactly the same (the original is quite blurry, and graphics aren't exactly my expertise). Just consider it an artist impression for those interested in this ;)

Here's a preview and links to both the INDD and EPS versions.

[img]http://chronoscripts.com/wp-content/uploads/2010/02/jb-logo.jpg[/img]

[url=http://chronoscripts.com/wp-content/uploads/2010/02/jb-logo.indd]INDD Version[/url]
[url=http://chronoscripts.com/wp-content/uploads/2010/02/jb-logo.eps]EPS Version[/url]

Re: widgets count as backlinks? [ Started by lxer in General discussion : 1 replies ]

I don't think the search engines will parse the javascript and then check the resulting html, so they probably don't count as backlinks. It'd have to be some server-side code for it to work, like an API request through PHP.

Re: Keep running into problems with functions.js [ Started by evertsemeijn in General support : 9 replies ]

Even though IE6 is, in your terms, 'dead', it is still used by a large amount of people. I agree we shouldn't waste much time on it, but the website should at the very least still be usable (perhaps with the addition of an upgrade-now bar on top). The fix-png is a visual thing though, so that can just as well be removed.

Re: Total Newbie needs advice in very basic terms [ Started by i-candidate in General support : 7 replies ]

Any WYSIWYG editor will prove quite useless, as PHP and template files don't work like classic HTML (they're build together when a visitor requests a page). Dreamweaver also supports code editing though, so that could be used. Most coding notepad-like solutions will work just fine.

For stuff that can't be changed through the admin panel of JB, you'll have to edit the code of the source files. This is simply HTML for the templates (with some extra SMARTY functionality), but more advanced PHP code for data. It isn't too hard to change the template files after learning a bit about HTML, but for big changes you might want to find someone to do it for you.

Re: Total Newbie needs advice in very basic terms [ Started by i-candidate in General support : 7 replies ]

No, but there's plenty of freeware clients available, to list a few:

Filezilla - http://filezilla-project.org/
SmartFTP - http://www.smartftp.com/
AceFTP - http://software.visicommedia.com/en/products/aceftpfreeware/

Re: Total Newbie needs advice in very basic terms [ Started by i-candidate in General support : 7 replies ]

The files need to be uploaded though a FTP client, the database (.sql file) needs to be imported using a tool such as PHPMyAdmin. This tool is usually supplied through your hosting control panel.

Once you've imported the sql file to a new / existing database, you should change the config file so it has the correct login data.

Re: Maintanance mode [ Started by evertsemeijn in Feature requests : 2 replies ]

Good idea, I'll add it in a bit.

Re: 2 fails and one question [ Started by dudi05 in General support : 2 replies ]

At first guess, it seems the _includes/translation.ini you're using has no [js] section. Are you using a translation file made for JB 1.7 perhaps? The [js] section should be at the bottom of the file.

I'm not sure what you're asking for regarding the attachment, could you explain that one with an example?

Re: Blank page after posting a Job Ad [ Started by techfilipino in General support : 12 replies ]

Here's how to fix this issue manually for 1.8. Besides making sure there's always one selected by default, I've also added some checks both client-side and server-side to make sure the value is set. Let me know if there's any problems implementing this code.

[u]1. in "_templates/default/publish-write.tpl" [b]AND[/b] "admin/_templates/edit-post.tpl":[/u]

[b]Find:[/b]
[code]{if $types[tmp2].id == 1}checked="checked"{/if}[/code]

[b]Replace with:[/b]
[code]{if $smarty.section.tmp2.first}checked="checked"{/if}[/code]

[b]Find:[/b]
[code]company: { required: true },[/code]

[b]Add above:[/b]
[code]type_id: { required: true },[/code]

[b]Find:[/b]
[code]company: ' <img src="{/literal}{$BASE_URL}_templates/{$THEME}/{literal}img/icon-delete.png" alt="" />',[/code]

[b]Add above:[/b]
[code]type_id: ' <img src="{/literal}{$BASE_URL}_templates/{$THEME}/{literal}img/icon-delete.png" alt="" />',[/code]

[u]2. in "page_write.php":[/u]

[b]Find TWICE:[/b]
[code] if ($company == '')
{
$e …

Re: Blank page after posting a Job Ad [ Started by techfilipino in General support : 12 replies ]

I've identified the problem. I'll release a SVN fix first, and let you know what code to replace to fix it. Will update this post in a few minutes.

The problem is caused when the original job-types have been deleted, rather than edited. The template won't select one by default then, and the field is often forgotten. There's no error checking for an empty type (yet), so that was where the script halted.

Re: override .htaccess problems [ Started by nobby2010 in General support : 2 replies ]

I'm not sure I'm getting this right.. are you saying your host does not support URL rewriting at all?

Re: Notification for new version available [ Started by ltoso in Announcements : 2 replies ]

I'd be more interested of creating a mailing list for users to subscribe to, where we can give updates every now and then or what's new and when a release is done.. which could be in the form of an opensource mailing script or perhaps a fluxbb plugin?

Re: admin page [ Started by elgreco in Feature requests : 1 replies ]

Agree, it's currently too difficult to find specific jobs with a filled database. I've written a filtering function for the admin panel a while back, I'll implement it for 2.0, after Evert his new design has been added.

Re: How To Change Jobberbase Default Wordings [ Started by moshthepitt in Tutorials : 4 replies ]

Links are dynamic and saved in the database. You can adjust them at 'links' in the admin panel, assuming you have JB 1.8. For older versions those links are simply within the header.tpl and footer.tpl.

Re: CV Mailer doesn't appear to work [ Started by stakey in General support : 1 replies ]

The CV uploading problem is most likely caused by the write permissions of the /uploads, which also might cause the mail to fail. Try changing the folder to writable :)

Re: Blank page after posting a Job Ad [ Started by techfilipino in General support : 12 replies ]

Enable error reporting in the config.php (for the production environment), and it should give some error message. If so, and you can't figure it out, post it here and I'll have a look at it.

Re: Extended template settings like Wordpress [ Started by evertsemeijn in Feature requests : 2 replies ]

Could you give some more technical explanation on how it should work on the designers side? What sort of data should be dynamic?

Re: I've lost my sites content. [ Started by Stef in General support : 4 replies ]

A blank screen most likely indicates some sort of PHP error, which stops the script halfway. Change your config file to show errors (for the live version), that should show the problem.

Re: Remove number of Applicants/Applications [ Started by bridlewood in General support : 3 replies ]

The following piece of code in _templates/job-details.tpl contains the yellow apply-count at jobs. Remove it or adjust it as you like.

[code] {if $CURRENT_PAGE == $URL_JOB}
<div id="applied-to-job">
{$job.applied_count}
{if $job.applied_count != 1}
<p>{$translations.homepage.applicants}</p>
{else}
<p>{$translations.homepage.applicant}</p>
{/if}
</div>
{/if}[/code]

Re: Total # of Applications [ Started by Tokyoj in Feature requests : 12 replies ]

If you only put the code in page_home.php, the information will only be available on the frontpage and on none of the many other pages that have the sidebar loaded. Hence my suggestion to make it available on every page (it can then still be shown only on specific pages using an if-statement.

Re: Total # of Applications [ Started by Tokyoj in Feature requests : 12 replies ]

If you want the information on other places than the home-template, include the query in the 'index.php', instead of the 'page_home.php'. Then it can be loaded in any SMARTY-template.

Re: Hacks and upcoming version [ Started by wilson in General support : 3 replies ]

Most hacks in that list will still work properly, though the guides may sometimes refer to lines of code that changed. Besides from that, pretty much all of my hacks are included in 1.8 and several other stuff in that list won't be needed anymore as well (captcha, multi-theme etc.).

Re: Cannot see Job [ Started by techbyte101 in General support : 1 replies ]

When you post a job, regardless of the email, it'll appear in the administration panel as inactive (unless you posted using the same email before). Simply activate it there and it'll apear. Also, when posting the job directly from the admin-panel it'll automatically be activated I believe.

Another option is to run a simple local mailserver for testing, such as the one found here: [url=http://www.phpeasystep.com/phptu/23.html]http://www.phpeasystep.com/phptu/23.html[/url].

Re: Database: Can I use the same db for more than 1 website? [ Started by keskese in General support : 14 replies ]

Fixed at the SVN as well now, thanks!

Re: Jobberbase 1.8 Development [ Started by navjotjsingh in Announcements : 9 replies ]

Sounds good! All these modifications sound like they would find a good place at the core JB.
Most importantly, I think many users are waiting for more functionality to monetize their JB installations (like jobseeker / employer accounts). I was planning on creating this for the 2.0 release, but if we could adjust an existing (and tested!) piece of code that would surely save a lot of time.

I'm open for converting some features to JB, but you (or your programmer if that's another person) could probably get SVN access as well.

For me the most interesting features to adopt are:

- Accounts for both Employers (for what's finished) and Job Seekers
- Import of other websites such as Indeed (when finished)
- cron_maintenance.php The current version is incompitable with the unix cronjob (at least some).