If you encountered an Internal Service Error in your jobberbase you need to remove “Options +FollowSymlinks” in both .htaccess files in root directory and also .htaccess in your admin folder or you can comment out the following line in your .htaccess file (just place a # character at the beginning of the line)
.htacess in your root directory
[php]
# AddType x-mapp-php5 .php
# AddHandler x-mapp-php5 .php
RewriteEngine on
Options +FollowSymlinks</code>
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]</code>
ErrorDocument 404 /page-unavailable/
order deny,allow
allow from none
deny from all</code>
[/php]
By adding (#) into the 2nd line of
#RewriteEngine onOptions +FollowSymlinks
And change .htaccess in your admin folder too.
from Options +FollowSymlinks to #Options +FollowSymlinks