Hallo, immer wenn ich die Verwaltungsseiten aufrufen möchte, bei G3 kommt folgender Fehler:
Hat einer eine Idee?
Ich verwende 1+1 als Hoster
vielleicht liegt es an der Apache Version von 1+1 ?
Wenn einer ein Tipp hätte wäre nett.
Danke
Dang... Something went wrong!
We tried really hard, but it's broken. Hey wait, you're an admin! We can tell you stuff.
There's an error message below and you can find more details in gallery3/var/logs (look for the file with the most recent date on it). Stuck? Stop by the Gallery 3 Forums and ask for help. You can also look at our list of open tickets to see if the problem you're seeing has been reported. If you post a request, here's some useful information to include:
Platform information
Host name: Linux infong 2.4 #1 SMP Wed Nov 4 21:12:12 UTC 2009 i686 GNU/Linux
Operating system: Linux infong 2.4 #1 SMP Wed Nov 4 21:12:12 UTC 2009 i686 GNU/Linux Linux infong 2.4 #1 SMP Wed Nov 4 21:12:12 UTC 2009 i686 GNU/Linux
Apache: Unknown
PHP: 5.2.14
MySQL: 5.0.91-log
Server load: 1.48 1.29 1.39
Graphics toolkit: imagemagick
Gallery stats
Version: 3.0 (Santa Fe)
Albums: 0
Photos: 0
Kohana_Exception [ Framework Error ]:
The requested views, admin.html, could not be found
SYSPATH/core/Kohana.php[ 806 ]
801 if ($found === NULL) 802 { 803 if ($required === TRUE) 804 { 805 // If the file is required, throw an exception 806 throw new Kohana_Exception('The requested :resource:, :file:, could not be found', array(':resource:' => __($directory), ':file:' =>$filename)); 807 } 808 else 809 { 810 // Nothing was found, return FALSE 811 $found = FALSE;
SYSPATH/libraries/View.php[ 83 ] » Kohana_Core::find_file( arguments )
directory
string(5) "views"
filename
string(10) "admin.html"
required
bool TRUE
78 public function set_filename($name, $type = NULL)
79 {
80 if ($type == NULL)
81 {
82 // Load the filename and set the content type
83 $this->kohana_filename = Kohana::find_file('views', $name, TRUE);
84 $this->kohana_filetype = EXT;
85 }
86 else
87 {
88 // Check if the filetype is allowed by the configuration
SYSPATH/libraries/View.php[ 49 ] » View_Core->set_filename( arguments )
name
string(10) "admin.html"
type
NULL
44 public function __construct($name = NULL, $data = NULL, $type = NULL)
45 {
46 if (is_string($name) AND $name !== '')
47 {
48 // Set the filename
49 $this->set_filename($name, $type);
50 }
51
52 if (is_array($data) AND ! empty($data))
53 {
54 // Preload data using array_merge, to allow user extensions
MODPATH/gallery/libraries/MY_View.php[ 56 ] » View_Core->__construct( arguments )
name
string(10) "admin.html"
data
NULL
type
NULL
51 * Override View_Core::__construct so that we can set the csrf value into all views.
52 *
53 * @see View_Core::__construct
54 */
55 public function __construct($name = NULL, $data = NULL, $type = NULL) {
56 parent::__construct($name, $data, $type);
57 $this->set_global("csrf", access::csrf_token());
58 }
59
60 /**
61 * Override View_Core::render so that we trap errors stemming from bad PHP includes and show a
MODPATH/gallery/libraries/Admin_View.php[ 30 ] » View->__construct( arguments )
name
string(10) "admin.html"
25 * @param string $name view name
26 * @param string $theme_name view name
27 * @return void
28 */
29 public function __construct($name) {
30 parent::__construct($name);
31
32 $this->theme_name = module::get_var("gallery", "active_admin_theme");
33 if (identity::active_user()->admin) {
34 $this->theme_name = Input::instance()->get("theme", $this->theme_name);
35 }
MODPATH/gallery/controllers/admin_graphics.php[ 22 ] » Admin_View_Core->__construct( arguments )
name
string(10) "admin.html"
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
19 */
20class Admin_Graphics_Controller extends Admin_Controller {
21 public function index() {
22 $view = new Admin_View("admin.html");
23 $view->page_title = t("Graphics settings");
24 $view->content = new View("admin_graphics.html");
25 $view->content->tk = graphics::detect_toolkits();
26 $view->content->active = module::get_var("gallery", "graphics_toolkit", "none");
27 print $view;
{PHP internal call} » Admin_Graphics_Controller->index()
MODPATH/gallery/controllers/admin.php[ 62 ] » call_user_func_array( arguments )
function_name
array(2) (
"0 (type: Admin_Graphics_Controller)" => array(1) (
"private: theme" => NULL
)
1 => string(5) "index"
)
parameters
array(0)
57
58 if (!method_exists($controller_name, $method)) {
59 throw new Kohana_404_Exception();
60 }
61
62 call_user_func_array(array(new $controller_name, $method), $args);
63 }
64
65 private static function _reauth_check() {
66 $session = Session::instance();
67 $last_active_auth = $session->get("active_auth_timestamp", 0);
{PHP internal call} » Admin_Controller->__call( arguments )
controller_name
string(8) "graphics"
args
array(0)
SYSPATH/core/Kohana.php[ 331 ] » ReflectionMethod->invokeArgs( arguments )
object
array(1) (
"private: theme" => NULL
)
args
array(2) (
0 => string(8) "graphics"
1 => array(0)
)
326
327 // Start the controller execution benchmark
328 Benchmark::start(SYSTEM_BENCHMARK.'_controller_execution');
329
330 // Execute the controller method
331 $method->invokeArgs($controller, $arguments);
332
333 // Controller method has been executed
334 Event::run('system.post_controller');
335
336 // Stop the controller execution benchmark
{PHP internal call} » Kohana_Core::instance( arguments )
0
NULL
SYSPATH/core/Event.php[ 208 ] » call_user_func_array( arguments )
function_name
array(2) (
0 => string(6) "Kohana"
1 => string(8) "instance"
)
parameters
array(1) (
0 => NULL
)
203 Event::$data =& $data;
204 $callbacks = Event::get($name);
205
206 foreach ($callbacks as $callback)
207 {
208 call_user_func_array($callback, array(&$data));
209 }
210
211 // Do this to prevent data from getting 'stuck'
212 $clear_data = '';
213 Event::$data =& $clear_data;
APPPATH/Bootstrap.php[ 67 ] » Event_Core::run( arguments )
name
string(14) "system.execute"
62
63// End system_initialization
64Benchmark::stop(SYSTEM_BENCHMARK.'_system_initialization');
65
66// Make the magic happen!
67Event::run('system.execute');
DOCROOT/index.php[ 97 ] » require( arguments )
Posts: 474
Hallo,
Setzt du schon die Gallery3 Final Version ein? Schon bei deinem Hoster nachgefragt welche Apache Version bei deinem Webspace läuft?
________________________________________
[G2] Graz Pictures | Gallery Blog | G3(dev) Barcelona Fotos