Anonymous

Topic: Links not working

None of the links seem to be working.  All I get is a 404 page.  Here's the link to the site I'm working on: http://cdhea.org/jobs/ .  Any help would be appreciated.

Anonymous

Re: Links not working

This could be a .htaccess-related problem. Do you have a .htaccess file in your jobberBase directory? Or, even worse... does your server have mod_rewrite enabled?

Anonymous

Re: Links not working

I do have an .htaccess file in my jobberBase directory.  I tried out the alternative .htaccess file and that didn't work either.  The alt. sent the links to the index of the site and stripped it of it's CSS.  So I copied the .htaccess file and moved it to the main directory and now when I click a link it's giving me an Error 500 - Internal server error.  I'm not totally sure my server has mod_rewrite enabled.  I'm using 1&1 for this site and they aren't the best hosting service around.  Very limited on features.  However in their FAQ's page concerning the .htaccess they mention I can activated the mod_rewrite module by using RewriteEngine.  I noticed in the .htaccess file you made you included this so I don't really know what's going on.

Anonymous

Re: Links not working

Just make sure mod_rewrite is active.

Anonymous

Re: Links not working

I'm not sure how to do that.  I'm sorry I'm new at this and have never really messed around with php or mysql.

Anonymous

Re: Links not working

I'd contactat 1&1 support, I'm sure they can help smile

Anonymous

Re: Links not working

Ok cool.  I'll try to get in touch with them and see what's up.  Appreciate the quick responses.

Anonymous

Re: Links not working

Got it to work.  I just added RewriteBase and specified the proper directory which in this case was /jobs/ .

Anonymous

Re: Links not working

Can you please post the .htaccess configurantion for 1and1
I am having the same problem. The links don't work.

Thx

Anonymous

Re: Links not working

Hello all,
First of all I wanna thank you filip for this great application smile

Now, I'm using 1and1 and they have mod_rewrite enabled but I have the same problem like @simpleexposure. After 1 hours of work, I've donnit big_smile
my .htaccess is this:

#RewriteEngine on
#Options +FollowSymlinks

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

#ErrorDocument 404 /page-unavailable/

# Alternative .htaccess
# only use if original doesn't seem to work for you
RewriteEngine On
RewriteBase /jobs/
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/

my domain is     http://mariotienda.es

Anonymous

Re: Links not working

That's great, thank you tache!

Anonymous

Re: Links not working

I have this problem too -> www.eudy.de (testspace) ... Can any1 help`?

Anonymous

Re: Links not working

i have me too this problem !!!
Version 1.4 is it in trouble?

my post at this suject...
http://www.jobberbase.com/community/dis … rk/#Item_4

Anonymous

Re: Links not working

am also hosted with 1&1 and tried to get the script working by using the alternative htaccess file.

i got it now so far that instead of giving me a 500 error, it will redirect to domain.com instead of to domain.com/career/app where the script is installed... will continue looking for the error.

This is the htaccess file as it is currently installed, having commented and uncommented all options without success:

AddType x-mapp-php5 .php
# AddHandler x-mapp-php5 .php
# RewriteEngine On
# RewriteBase /career/app/
# 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 career/page-unavailable/

radul

Re: Links not working

reply number 10 solved it for me as well, but only for the main site, not for the /admin/ area.

How did you solve it for the /admin/.htaccess file? Same patch doesnt' help.

many thanks.

ur

Re: Links not working

I am hosting the site at 1and1. The first page appears fine, but none of the links work. I have the placed the following .htaccess file in the project folder (\myjobs\). Please help.

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>

links

Re: Links not working

Hi,

you can also try the .htaccess from here:
http://www.jobberbase.com/forum/post3968.html#p3968

Hope it helps!

ur

Re: Links not working

I used the the recommended .htaccess file (with the first 2 lines for PHP5 uncommented; otherwise, the first page will not open either). Now when I click on any of the links, I get the following message:

---
Multiple Choices

The document name you requested (/index.php) could not be found on this server. However, we found documents with names similar to the one you requested.
Available documents:

/index.htm (common basename)
Please consider informing the owner of the referring page about the broken link.
---

putypuruty

Re: Links not working

Hi.

Is it possible that you have a file called index.htm in the same folder as index.php? If this is the case, rename it or delete it and see if it works.

ur

Re: Links not working

Thanks it's working on. I had deployed the Jobberbase in a subfolder of the main site which was causing problem. I've moved the Jobberbase files to the root folder. My original folder structure (that was causing problem) was as follows.

\index.htm
\welcome.htm
\contactus.htm
\jobberbase\[jobber base files...]

Any recommendations on how to deploy Jobberbase as a subsite/subfolder?