wilburforce

Topic: jobber 1.8 Error again

I tried many time to install jobber but I've never been successful. I have installed 1.8 today and it is in a subfolder, i created a db and did the import, set a few folders to 777 as per the guide and for the first time i have a home page with data, yepee.
However when i click a link i get the following error....so close.......again: Any ideas

the test folder is here http://www.darciefox.co.uk/jobber/
Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.

wilburforce

Re: jobber 1.8 Error again

my .htaccess is this:

# Options:
# -MultiViews: Turns off multiviews so it doesn't interfer with our rewrite rules
# -Indexes: Stop directory listings
# +FollowSymlinks: Let out rewrite rules work

Options -MultiViews -Indexes +FollowSymlinks

# Disable any sending of a default character set
AddDefaultCharset OFF

# Disable etags -- less headers

RewriteEngine On
RewriteBase /jobber

<IfModule mod_security.c>
    # Turn off mod_security filtering. 
    SecFilterEngine Off

    # The below probably isn't needed, but better safe than sorry.
    SecFilterScanPOST Off
</IfModule>

<IfModule mod_deflate.c>
    AddOutputFilterByType DEFLATE application/x-javascript application/javascript text/css text/ html text/xml
</IfModule>

# PHP is in CGI Mode, so we need a different mod_rewrite
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php [L]

links

Re: jobber 1.8 Error again

Hi,

Have you tried with Jobberbase's default .htaccess, but with the following line:
RewriteBase /jobber

added after:
Options +FollowSymlinks
?

wilburforce

Re: jobber 1.8 Error again

OK it now says:

RewriteEngine on
Options +FollowSymlinks
RewriteBase /jobber

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]

ErrorDocument 404 /page-unavailable/

still not working on pages same error

putypuruty

Re: jobber 1.8 Error again

Hi,

Can you try again with the above .htaccess file but without the Options +FollowSymlinks line?