Oct 24, 2007
Missing .htaccess
Some people reported they missed the .htaccess file from the downloaded distribution.
If this is you, here are the contents of a .htaccess file you should place in jobberBase root dir (together with index.php and config.php):
RewriteEngine on
Options +FollowSymlinks
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
ErrorDocument 404 /page-unavailable/
Additionally, I’ve added a htaccess.txt file in the distribution, so you can rename it into .htaccess.

Hi guys, i have a dedicated server with ISPCONFIG (http://www.ispconfig.org) and the .htaccess needs to be hacked a little:
RewriteEngine on
#Options +FollowSymlinks
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
ErrorDocument 404 /page-unavailable/
Hope it’s useful for anyone.
Cheers
I’m having trouble with the .htaccess bit. I don’t have either file and my Mac gives me an error message each time I try to save the info above. It says I can’t start the file name with “.”
Help
@Leandro Henflen,
thanks for the suggested change for .htaccess. Worked beautifully for me!
cheers
this code worked for me
hosted on 1and1.com
in your ADMIN folder .htacess file
# Alternative .htaccess
# only use if original doesn’t seem to work for you
RewriteEngine On
#RewriteBase is what I changed
RewriteBase /admin/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !index.php
#RewriteRule !.(js|ico|gif|jpg|png|css|flv|swf)$ index.php
#RewriteRule (.*) /index.php/$1 [L]
RewriteRule !.(js|css)$ /index.php/$1 [L]
ErrorDocument 404 /page-unavailable/
Well, someone of the administrators or simple mortals can help me
I was try many times to install jobber base.
My server is IIS.
I can see the home page and the admin page but when i tried to select a job or category. just appear a
Not Found
The requested document was not found on this server.
Web Server at cucea.com.mx
please someone help me.
thats my final oportunity
Just want to say thanks for posting that htaccess mod.
worked for me!