thedaddy

Topic: Admin???

Hi

Just installed as per installationa guide
all running very smoothly - EXCEPT when I log into '/admin', any admin page I click takes me to '/page-unavailable/

can anyone help me?

devilsoulblack

Re: Admin???

i have the same issues this ist mi .htaccess

Code:
# 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>
® { No HopE & No FeaR } ®
Be part of the change, because We are the change..

rxnohadd

Re: Admin???

hi,
i've got the same probl.
after install, i'm try to went to admin panel, and after user&pass gives error page 404 Not Found.
i refresh the page and i've notes that i'm log has admin. i've try to change or doing something and always gives the same error

putypuruty

Re: Admin???

Hi!

Can you please tell us your Apache version? Also, did you install jobberbase in a subfolder? Like yoursite.com/jobs/

Jeff Dickey

Re: Admin???

I've the same problem if I install in a directory served by Apache's mod_userdir. Main site works, admin 404s. I've tried every possible setting for RewriteBase in admin/.htaccess that I can think of. One other bit of interest: things work fine if I change all files in and below the JobberBase public directory to be owned by the Web server's UID and GID; so changed, I can put JobberBase anywhere visible to the server.

OS X 10.6.4
Apache 2.2.14
PHP 5.3.1; ZE 2.3.0
JobberBase 1.9.1, downloaded 29 June (yesterday)

hobo

Re: Admin???

Maybe you just need to set permissions to your admin/_templates/_cache folder to 777?

Jeff Dickey

Re: Admin???

@Hobo, did that; that's one of the items in the "getting JobberBase working under Apache" procedure. What I'm beginning to strongly suspect is that the list of directories given in that procedure (that should have their permissions adjusted) is incomplete. That would explain why JobberBase works if the *entire* tree is owned by the web-server user, but fails otherwise.

rpaco

Re: Admin???

Hi thedaddy,

I got it working at 1and1 web hosting, what I did is just I added "/admin/" instead of "/" in RewriteBase and RewriteRule. I'm not sure if it will work in your hosting but I can assure you that it works at 1&1 Webhosting.

Code:

RewriteRule
RewriteEngine On
RewriteBase /admin/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !index.php
RewriteRule !.(js|css)$ /admin/index.php/$1 [L]
ErrorDocument 404 /page-unavailable/

smile