Admin/User Groups

ladbroke

Joined: 2010-07-31
Posts: 10
Posted: Thu, 2010-10-07 12:11

Hi I wonder if anyone can help, when I click on admin/user groups, I get a framework error. I'll attach the error log.

Any help much appreciated.

AttachmentSize
2010-10-07.log_.php_.txt3.35 KB
 
ladbroke

Joined: 2010-07-31
Posts: 10
Posted: Thu, 2010-10-07 15:30

It happens when any option is chosen in the admin tab. New gallery looks fantastic by the way, if I can get it working properly I can see this being SO useful. Great work developers.

 
nivekiam
nivekiam's picture

Joined: 2002-12-10
Posts: 16504
Posted: Thu, 2010-10-07 16:15
Quote:
2010-10-07 05:02:05 -07:00 --- error: Kohana_Exception [ 42 ]: The requested views, admin.html, could not be found

I'll bet that you're running Apache 1.x (GoDaddy or 1&1?)

If on GoDaddy, request you be moved to their Grid Hosting (there will still be a change that needs to be made)

If on 1&1, you'll need to enable the rewrite rules in the .htaccess that ships with G3, but you'll still be running on an unsupported platform and if anything else odd pops up, the likelihood of getting extensive help is low.
____________________________________________
Like Gallery? Like the support? Donate now!!! See G2 live here

 
ladbroke

Joined: 2010-07-31
Posts: 10
Posted: Thu, 2010-10-07 16:54

That's right I'm with 1&1....... Do you mean uncomment the lines between lines 68-77? If so, after I did that I got an internal error 500......

 
nivekiam
nivekiam's picture

Joined: 2002-12-10
Posts: 16504
Posted: Thu, 2010-10-07 17:26

Yes, those lines, you'll need to change the RewriteBase line to reflect where your G3 install is at:

Probably something like:

 <IfModule mod_rewrite.c>
   Options +FollowSymLinks
   RewriteEngine On
   RewriteBase /gallery3/
   RewriteCond %{REQUEST_FILENAME} !-f
   RewriteCond %{REQUEST_FILENAME} !-d
   RewriteRule ^(.*)$ index.php?kohana_uri=$1 [QSA,PT,L]
   RewriteRule ^$ index.php?kohana_uri=$1 [QSA,PT,L]
   RewriteRule ^index.php/(.*) $1 [QSA,R,L]
 </IfModule>

And if that doesn't work, then sorry, no clue for 1&1. Find a different host who actually cares about the service they provide. They've had 8 YEARS to upgrade to Apache 2.x (2.2 or newer is required for G3)
____________________________________________
Like Gallery? Like the support? Donate now!!! See G2 live here

 
ladbroke

Joined: 2010-07-31
Posts: 10
Posted: Thu, 2010-10-07 18:28

That worked, you're a star, thank you!