Not signed in (Sign In)
Welcome Guest!
Want to take part in these discussions? If you have an account, sign in now.
If you don't have an account, apply for one now.
    • CommentAuthorhitwill
    • CommentTimeMay 14th 2008
     
    Thanks first for the great software. However, I'm having the standard n00b page not found error after clicking on any of the category tabs. Been round the forums for a few days looking for a solution and made some progress. However, I'm stuck here:

    http://childcare.motherswhowork.co.uk/jobberbase/jobs/marketers/

    The main site runs fine, until I click on a tab like the one above. Instead of seeing available jobs, I get a 300 error:

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

    It's like my .htaccess is redirecting the request but not appending my domain name or a base href to it.

    Help!!!!

    Here is my .htaccess. What am I doing wrong??

    # Alternative .htaccess
    # only use if original doesn't seem to work for you
    #
    AddType x-mapp-php5 .php
    AddHandler x-mapp-php5 .php
    #
    RewriteEngine On
    RewriteBase /jobberbase/
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_URI} !index.php
    RewriteRule (.*) /index.php/$1 [L]
    ErrorDocument 404 /page-unavailable/
    • CommentAuthorevsion
    • CommentTimeMay 15th 2008
     
    I think this is exactly the problem I'm experiencing. I cant seem to install multiple copy of jb for example:

    sub.domain.com
    sub1.domain.com
    sub2.domain.com

    its giving url not found error as soon as i click: {$BASE_URL}*categories/ (/jobs/*categories)

    do i have to change my htaccess to do this?
    help too pls!
    • CommentAuthorlobas
    • CommentTimeMay 15th 2008
     
    same kind of error here. its all to do with the url base url settings etc...

    i have no idea why it cant find my /admin/ panel i keep getting page unavailable.
    • CommentAuthorhitwill
    • CommentTimeMay 15th 2008
     
    I have a feeling that changing:
    RewriteRule (.*) /index.php/$1 [L]

    to something like:

    RewriteRule (.*) http://mydomoin.com/joberbase/index.php/$1 [L]

    should fix it. However...I'm no .htaccess expert, so this is generating an internal server error.
    Ideas???
    • CommentAuthorlobas
    • CommentTimeMay 15th 2008
     
    that doesn't work, hmm this is really annoying. nothing seems to work, eveything else works great besdies /admin/

    its gotta be something with .htaccess or config.php

    im runing this on hoting running in http://mysite.com/listings/
    • CommentAuthorevsion
    • CommentTimeMay 16th 2008
     
    I'm now able to install multiple copies of jb on sub-domains.

    1. Make sure you have .htaccess in your root folder
    2. Use the following .htaccess

    --------------
    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 /
    # RewriteCond %{REQUEST_FILENAME} !-f
    # RewriteCond %{REQUEST_FILENAME} !-d
    # RewriteCond %{REQUEST_URI} !index.php
    # RewriteRule (.*) /index.php/$1 [L]
    # ErrorDocument 404 /page-unavailable/



    That should work. Let me know
    • CommentAuthorhitwill
    • CommentTimeMay 17th 2008
     

    Hmm… somehow that didnt work for me because i also need these two lines:
    AddType x-mapp-php5 .php
    AddHandler x-mapp-php5 .php

    However, I moved it to my root directory instead of jobberbase directory and it’s working fine! (still in a subdomain)

    Here is my .htaccess for anyone who may use it: AddType x-mapp-php5 .php AddHandler x-mapp-php5 .php

    # 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//page-unavailable/

    Thanks to everyone for the help! And the guys who made it!!

    My only suggestion for future updates is something to prevent this .htaccess havoc that gets n00bs like me. :-)
    Also, you could put it on sourceforge for more support!!! :-)

    • CommentAuthorhitwill
    • CommentTimeMay 18th 2008
     

    Problem is…
    Cant access my admin now. Loging in redirects me back to my non admin index.
    Any ideas?

    • CommentAuthorhitwill
    • CommentTimeMay 19th 2008
     

    fixed that…
    now admin redirects to page-unavailable….

    I wonder why….

    • CommentAuthorhitwill
    • CommentTimeMay 19th 2008
     

    solved it…
    changed: RewriteRule !\.(js|css)$ /index.php/$1 [L]

    to:

    RewriteRule !\.(js|css)$ /admin/index.php/$1 [L]

    • CommentAuthorevsion
    • CommentTimeMay 21st 2008
     
    Have you guys seen this before?

    [index.php] config.php not found, please rename config.default.php to config.php

    I'm sure my config.php works but for some reason when I go to */admin it goes to that page.
    any ideas?
    • CommentAuthorhitwill
    • CommentTimeMay 22nd 2008
     
    is it working for your non admin side?

    If so, then it's probably a .htaccess issue in your admin. Can you post your admin and non-admin .htaccesses?