Posts by links
Page [ 3 of 10 ] Posts by links [ 51 to 75 of 232 ]
Re: Installing with GoDaddy [ Started by 8wines in General support : 5 replies ]
Hi,
For the css issue - make sure that, in config.envs.php, you wrote the correct values for 'prefix' and for 'app_url', in the $__instances['live'] section. The value must be as follows:
-if your site is www.example.com or www.example.com/subfolder, in both cases the prefix has to be set to example.com
- the app_url must be set to http://www.example.com/ or http://www.example.com/subfolder/
For the links not found issue - if the site is installed on a subfolder, make sure you have the line
[code]RewriteBase /subfolder[/code]
In your .htaccess file.
If not or if it's still not working, check to see if you don't have apache 1.3. The default .htaccess files that come with jobberbase are for Apache 2.X. If you do have 1.3, you'll find the alternate .htaccess files in your docs/install-apache-1.3 folder from your jobberbase-1_9_1.zip.
Hope this helps!
Re: is there a french translation for JB yet? [ Started by sanshik in Tutorials : 5 replies ]
Hi,
You have here the JB 1.9 French translation, thanks to empleotel:
translations.ini
[code]
; You will notice that some messages contain the string {0} (or {1}, {2} and so on).
; They act as placeholders for variable strings - be careful not to remove them.
; For example, in case of "Viewed {0} times", {0} will be replaced with the actual number of views when
; the message will be translated. this could result in "Viewed 5 times" (if the job ad has been viewed 5 times).
; Note: you can change the placeholders' order in a sentence in order to better suit your language.
; If you want to put the " (double quotes) character in your message, you must use " instead.
[header]
name = "jobber"
title = "Emplois en Informatique"
home = "Home"
rss_alt = "RSS"
rss_title = "Inscrivez vous à nos fils RSS"
seen_recently = "Vus récemment"
[search]
default = "Cherchez un poste"
example = "(ex.: "ajax", "designer, londres", "php, chicago")"
submit = "Affichez …
Re: Problem with the instalation of Jobberbase 1.8 [ Started by Valeri44 in Tutorials : 2 replies ]
Hi,
Are you sure the .htaccess file was copied correctly to the new server? And if yes, check to see if you have a line similar to RewriteBase /oldFolderName . In case you do and the new site is in the root folder of your server, remove that line. If the site is in a subfolder on the new server, then change that line to RewriteBase /newFolderName
Check also the permissions for the _cache and uploads folders, make sure they are 777.
Let us know if this worked
Re: Where to change content of mail sent to users, in ver. 1.9 ? [ Started by dj.dule in General support : 2 replies ]
Hi,
In 1.9, the email translations are stored in an xml file, in _templates/<YourTheme>/_translations/_emails/emails_en.xml.
Re: Need help - Blank screen after install [ Started by lennysmith in General support : 1 replies ]
Hi,
Could you check your mail, I sent you a message?
Re: Two issues with 1.9 - headers already sent / category count [ Started by cheesypeas in Bug reports : 12 replies ]
@rich - what do you mean, config.envs.php doesn't have a line 60? It has 81 lines...are you sure the file was uploaded correctly?
Re: Two issues with 1.9 - headers already sent / category count [ Started by cheesypeas in Bug reports : 12 replies ]
Sorry, but I can't figure out the problem without seing the code. If you want to give me the link to your site or ftp access, you can write me a private message so I can take a look.
Re: multiple domain names as URL [ Started by ivanpudic in General support : 5 replies ]
Hi,
What you should do is add a block like this
[code]
$__instances['live'] = array(
'prefix' => 'yourjobberbasedomain.com',
'db_host' => 'localhost',
'db_port' => 3306,
'db_user' => 'root',
'db_password' => '',
'db_name' => 'jobberbase',
'db_prefix' => '',
'app_url' => 'http://www.yourjobberbasedomain.com/',
'ini_error_reporting' => E_ALL,
'ini_display_errors' => 'Off',
'location' => 'online',
'environment' => 'prod',
'rewrite_mode' => 'apache_mod_rewrite'
);
[/code]
in _config/config.envs.php for every domain you want to use JB on. You can add the blocks after the existing one. You have to change 'live' with 'live1', 'live2' or something else unique and then change the 'prefix' and 'app_url' accordingly to every domain you want the site on.
Let us know if it works. …
Re: Two issues with 1.9 - headers already sent / category count [ Started by cheesypeas in Bug reports : 12 replies ]
Hi,
Have you made the _cache folder in hireme writable? The _templates/hireme/_cache folder has to have 777 Linux permissions. Then delete all the files inside it and try to refresh the site.
Re: Installtion Problem in Hostgator. Please Help!!! [ Started by ros74 in General support : 2 replies ]
Hi,
A problem is that the db_host is wrong. Try using localhost or, if that doesn't help, follow this step from the installation guide:
[i]Note: some users are having trouble setting the db_host. To find out your database host, either ask your hosting company or login to phpmyadmin and you should have somewhere in the upper area the string Server and next to it an URL or IP. That's what you should put as database host.[/i]
Anothe thing, on prefix you have to write hirepatriots.com, so you end up having:
[code]$__instances['live'] = array(
'prefix' => 'hirepatriots.com',[/code]
Re: standard 1.9 installation css issues nothing works [ Started by wilburforce in General support : 3 replies ]
Hi,
In
$__instances['live'] = array(
'prefix' => 'darciefox.co.uk',
'db_host' => 'localhost',
'db_port' => 3306,
'db_user' => 'darciefo_jobber2',
'db_password' => '*********',
'db_name' => 'darciefo_jobber2',
'db_prefix' => '',
'app_url' => 'http://www.darciefox.co.uk/',
'ini_error_reporting' => E_ALL,
'ini_display_errors' => 'Off',
'location' => 'online',
'environment' => 'prod',
'rewrite_mode' => 'apache_mod_rewrite'
);
try to replace 'app_url' => 'http://www.darciefox.co.uk/', with 'app_url' => 'http://www.darciefox.co.uk/jobber/', …
Re: The widget directs are wrong [ Started by gibby in General support : 4 replies ]
Hi,
Try to replace
[code]define('JOBBER_URL',str_replace('api/','',BASE_URL));[/code]
with
[code]define('JOBBER_URL',str_replace('api/','',APP_URL));[/code]
in api.php. That should do the trick.
Re: Site isn't working (server error?) [ Started by Elven6 in General support : 2 replies ]
Hi,
You can try following this step - http://www.jobberbase.com/forum/post8044.html#p8044
Re: How to Translate Jobberbase to Arabic [ Started by rashanoureldin in General support : 8 replies ]
Hi,
You can find the translations file here: /_includes/translations.ini
Re: Site was running fine, now a parse error ......on line 101 [ Started by psychantenna in General support : 1 replies ]
Hi,
This probably means that either you have changed the php version from 5.x to 4.x in your hosting's account control panel or, if not, talk to the hosting guys about it, because then they might have changed something concerning this.
Re: jobber 1.8 Error again [ Started by wilburforce in General support : 4 replies ]
Hi,
Have you tried with Jobberbase's default .htaccess, but with the following line:
RewriteBase /jobber
added after:
Options +FollowSymlinks
?
Re: need help installing [ Started by Corbula in General support : 3 replies ]
Yes,
That should be correct, but it's not always like that. I sent you a private message, could you check?
Re: need help installing [ Started by Corbula in General support : 3 replies ]
Hi,
Can you doublecheck your mysql hostname? You wrote something like 'www.thethinking...', which doesn't really seem to be a valid database host.
You can follow these instructions from the installation guide in order to find out your host name:
[i]Note: some users are having trouble setting the DB_HOST. To find out your database host, either ask your hosting company or login to phpmyadmin and you should have somewhere in the upper area the string Server and next to it an URL or IP. That's what you should put as database host.[/i]
Re: Page Not Found problem after install of 1.8 [ Started by LaudemGloriae in General support : 3 replies ]
Hi,
I think that it's best if you move Jobberbase into a subfolder in /var/www, if that is possible.
You'd then probably be able to remove completely the line
RewriteBase /jobberbase-1_8/admin
from your .htaccess, or replace it with
RewriteBase /yourSubfolder
Hope it helps!
Re: Does anybody here install? [ Started by skyfoxbob in Looking for jobberBase developers : 2 replies ]
The problem was solved offline.
Re: HELP! I suck when it comes to installing [ Started by skyfoxbob in General support : 7 replies ]
Hi,
You should double check your mysql hostname, username and password. The error must be somewhere around there.
You can also check the hostname taking the following steps from the installation guide:
[i]Note: some users are having trouble setting the DB_HOST. To find out your database host, either ask your hosting company or login to phpmyadmin and you should have somewhere in the upper area the string Server and next to it an URL or IP. That's what you should put as database host.
If you're running jobberbase on your local machine, then set the above values in the block following the if ($_SERVER['SERVER_NAME'] == 'localhost') line.[/i]
Re: Jooberbase 1.8 issue [ Started by ppandey in Bug reports : 6 replies ]
In admin try using the following:
[code]
AddType x-mapp-php5 .php
AddHandler x-mapp-php5 .php
RewriteEngine on
RewriteBase /admin
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !index.php
RewriteRule . index.php [L]
ErrorDocument 404 /page-unavailable/
[/code]
Re: Jooberbase 1.8 issue [ Started by ppandey in Bug reports : 6 replies ]
Hi,
You can try the .htaccess found at this post: http://www.jobberbase.com/forum/post3498.html#p3498
It should work on 1and1.
Re: Tinymce install: won't work [ Started by RO-Banen in General support : 5 replies ]
Hi,
In publish-write.tpl, search for the following line:
[code]<textarea {if $errors.description}class="error"{/if} tabindex="4" name="description"[/code]
and add between tabindex="4" and name="description" the following code: class="mceEditor", so you'll have:[code]<textarea {if $errors.description}class="error"{/if} tabindex="4" class="mceEditor" name="description"[/code]
Re: dutch translations.ini [ Started by eeme in Tutorials : 7 replies ]
Here is the Dutch translations for JobberBase 1.8 (thanks to arnehulstein)
[code]
; Zorg ervoor dat u de variabelen tussen % niet verwijderd of vertaalt.
; Als u de “ wilt gebruiken in uw vertalingen, dan moet u daarvoor " gebruiken
[header]
name = "jobber"
title = "IT banen"
home = "Home"
ideal_job = "De ideale Baan"
ideal_job_title = "De Ideale Baan"
rss_alt = "RSS"
rss_title = "Abonneer je op de RSS feed"
seen_recently = "Recent geplaatst"
[search]
default = "Zoek een vacature"
example = "(Bijv. "ajax", "ontwerper, Amsterdam", "php, Rotterdam")"
submit = "Plaats een vacature"
submit_title = "Plaats een vacature"
[footer]
column_use = "Onderdelen"
new_job = "Plaats een vacature"
new_job_title = "Plaats een vacature"
rss = "RSS Feeds"
rss_title = "RSS Feeds"
column_find = "Meer informatie"
column_misc = "Overigen"
companies = "Bedrijven"
companies_title = "Bedrijven"
cities_title = "Steden"
cities = "Steden"
widgets = "Widgets"
widgets_title = "W …