Re: Upgrade to 1.4 [ Started by Anonymous in General discussion : 4 replies ]
Yes, a simple dump of jobs, hits and applications would work.
Goodluck! :)
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 mployr.com
Yes, a simple dump of jobs, hits and applications would work.
Goodluck! :)
Message me your info, I'll try to look into it.
If you don't have _uploads, create it and make it writable.
Could you check your .htaccess and post it here please?
Thanks
Hi,
1) There are two ways. First, is to open jobberbase.sql and find this lines:
--
-- Dumping data for table `cities`
--
INSERT INTO `cities` (`id`, `name`, `ascii_name`) VALUES
(1, 'Adjud', 'Adjud'),
(2, 'Alba Iulia', 'Alba-iulia'),
(3, 'Alexandria', 'Alexandria'),
(4, 'Arad', 'Arad'),
(5, 'Bac', 'Bacau'),
(6, 'Baia-Mare', 'Baia-mare'),
(7, 'B', 'Barlad'),
(8, 'Bistri', 'Bistrita'),
(9, 'Boto', 'Botosani'),
or log in to your database and browse/edit "Cities"
2. By default, admin approval is required before a job is posted. Notifications are sent to both the admin and employer posting the job. (To edit the content of the emails sent to you and employer, go to /app/_includes/class.Postman.php)
3. Open config.php and look for these lines:
// Global settings definitions
define('NOTIFY_EMAIL','YOUR_EMAIL_HERE@gmail.com');
define('ADMIN_EMAIL','YOUR_EMAIL_HERE@gmail.com');
define('SITE_NAME', 'jobberBase');
Good luck :) …
You don't need the db folder. All you need there is the jobberbase.sql . This file needs to be dumped/imported to your database.
Yes, you can discard those folders:
In your public_html folder, you should have your domain folder, mine for example, I have about 20+ domains. So, for example, I want to install it in www.mployr.com, I do the following:
1. Open public_html, go to www.mployr.com
2. Copy all the contents from /jobberbase_1_5b1/app/ to www.mployr.com
3. Once this is done, open you database, now you need to IMPORT/DUMP jobberbase.sql into your database.
That's it :)
If this doesn't work, let me know, maybe I can install it for you :)
Think of the /app as your root folder.
If you want to install your jobberbase in the root folder of your domain, copy all the contents from the /app folder to your root.
Mat, let me know once this is stable and IE compatible. I'd like to try :)
You can put the entire app in your root folder if you like. You don't have to follow </jobberbase_1_5b1/app/>. The error suggest that there are files missing in your app folder. Ensure you have all the files/folders uploaded.
Please refer to http://www.jobberbase.com/forum/topic576-complete-novice-really-struggling.html
This error message suggest that you don't have PHP5 or its not enabled on the server.
The reason you're prompted with this error message is because the /_cache folder is not writable. Make _uploads and _cache folders writable :)
To make these folders writable, open your FTP program and look for CHMOD properties and assign these folders with 777 (writable)
or
Log in via SSH and enter this command.
$chmod 777 -R _uploads
$chmod 777 -R _cache
For more info about CHMOD, go to http://en.wikipedia.org/wiki/Chmod
:)
Open page_home.php:
<?php
// get jobs
$smarty->assign('jobs_count_all', $job->CountJobs());
$smarty->assign('jobs_count_all_categs', $job->GetJobsCountForAllCategs());
$smarty->assign('most_applied_to_jobs', $job->GetMostAppliedToJobs(7));
$smarty->assign('jobs_count', $job->CountJobs());
$smarty->assign('latest_jobs', $job->GetJobs(0, 0, 7, 0, 0));
$smarty->assign('current_category', 'home');
$html_title = $translations['homepage']['title'] . SITE_NAME;
$template = 'index.tpl';
?>
Change all 7 you see here with the value you want.
Goodluck!
:)
Looks like a generic mysqli error message where your host is not supporting it. To resolve this, open your config.php and follow the step 5 of the readme.txt, here it is:
5. If your host doesn't offer the mysqli PHP extension (find out from phpinfo()),
you can use a mysql wrapper instead.
Open config.php and just replace <require_once '_includes/class.Db.php'> with
<require_once '_includes/class.Db.MySql.php'>.
Goodluck and let us know :)
To design your own templates, check the following templates folder:
/app/_templates/ <---this is the front-end.
/app/admin/_templates/ <---this is the admin page
Goodluck!
:)
I've been using Dreamhost Shared and Private Servers and I haven't had any problems with any installation and modification of Jobberbase.
Follow this link for discounted Dreamhost hosting if you like.
http://www.dreamhost.com/r.cgi?255835
:)
Yah that's how it works I think.
Just remember each permalink so you can add them to your .tpl file.
You might want to add this in the Suggestion board :)
I see it now. Have you made any modifications in the pages referred to above? If not, we'll move this thread to the Bugs section as it might be a bug.
I tried running searches on other JB sites and don't see this error message.
You can do that by creating a select menu. The following code should demo what you want to do:
<head>
<script type="text/javascript">
function go()
{
window.location=document.getElementById("menu").value;
}
</script>
</head>
<body>
<form>
<select id="menu" onchange="go()">
<option>--Select a city--</option>
<option value="<yourdomain>/search/london>">London</option>
<option value="<yourdomain>/search/chicago">Chicago</option>
<option value="<yourdomain>/search/vancouver">Vancouver</option>
</select>
</form>
</body>
Let me know if this works for you.
Hi Lou,
There are two main things you will need to do in order to run Jobberbase.
1. In the /app folder, open config.php. Look for these lines and edit them:
// MySQL + misc settings for local environment
if ($_SERVER['SERVER_NAME'] == 'localhost')
{
define('DB_HOST', 'localhost');
define('DB_USER', 'root');
define('DB_PASS', '');
define('DB_NAME', 'jobberbase');
define('LOCATION', 'local');
define('ENVIRONMENT', 'dev');
}
// MySQL + misc settings for production environment
else
{
define('DB_HOST', 'localhost');
define('DB_USER', 'root');
define('DB_PASS', '');
define('DB_NAME', 'jobberbase');
define('LOCATION', 'online');
define('ENVIRONMENT', 'prod');
}
// Global settings definitions
define('NOTIFY_EMAIL','YOUR_EMAIL_HERE@gmail.com');
define('ADMIN_EMAIL','YOUR_EMAIL_HERE@gmail.com');
define('SITE_NAME', 'jobberBase');
2. Next, look for jobberbase.sql and import this to your database.
This should get your Jobberbase up and running. Once you ha …
Could you capture a screenshot of this? I'm curious.
Thank you
If you spend time and and effort creating your idea, Jobberbase would a perfect solution I think. We have a growing community whos willing to assist you so, I encourage you poke around and if it breaks, let us know and we'll gladly help ;)
Goodluck! This is a great idea!
This is a common problem because some FTP program neglect to upload the .htaccess file for the app folder as well as the /admin folder. Ensure you have .htaccess for both the root and /admin
Let us know :)
.htaccess for root folder
# AddType x-mapp-php5 .php
# AddHandler x-mapp-php5 .php
RewriteEngine on
Options +FollowSymlinks
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
ErrorDocument 404 /page-unavailable/
<files ~ "\.tpl$">
order deny,allow
allow from none
deny from all
</files>
=========================
.htaccess for /admin folder
RewriteEngine on
Options +FollowSymlinks
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
ErrorDocument 404 /page-unavailable/
Let us know if these work for you :)
I'm looking at the pages you posted above and they appear to be functional. They are all working for me. Has the problem been resolved?
I'm using Firefox and Safari on MAC.
Let us know.
I don't seem to see the error messages you're referring to. I'm using FF and Safari on my Mac. Are you using IE?
Page [ 4 of 5 ] Posts by mployr.com [ 76 to 100 of 118 ]
jobberBase Community » Posts by mployr.com
Powered by FluxBB
[ Generated in 0.031 seconds, 4 queries executed ]