chybová hláška na hostingu ic.cz
- gavec
- Člen | 68
Zdravim, mám problém s rozjetím nette projektu na hostingu ic.cz. Používám verzi 0.9.7 pro PHP 5.2 s prefixy. Po nahrátí na server se mi bez problému zobrazí úvodní strana, ale v případě, že se chci pomocí odkazů přesunout jinam, vyhodí mi to hlášku:
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, [no address given] and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
htaccess:
Options -Indexes
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule !\.(pdf|js|ico|gif|jpg|png|css|rar|zip|tar\.gz)$ index.php [L]</IfModule>
bootstrap:
<?php
require LIBS_DIR . ‚/Nette/loader.php‘;
//NDebug::enable();
NDebug::enable(NDebug::DEVELOPMENT);
NDebug::$strictMode = TRUE;NEnvironment::loadConfig();
dibi::connect(NEnvironment::getConfig(‚database‘));$application = NEnvironment::getApplication();
$application->errorPresenter = ‚Error‘;
//$application->catchExceptions = TRUE;$router = $application->getRouter();
$router[] = new NRoute(‚index.php‘, array(
‚presenter‘ ⇒ ‚Homepage‘,
‚action‘ ⇒ ‚default‘,
), NRoute::ONE_WAY);$router[] = new NRoute(‚<presenter>/<action>/<id>‘, array(
‚presenter‘ ⇒ ‚Homepage‘,
‚action‘ ⇒ ‚default‘,
‚id‘ ⇒ NULL,
));$application->run();
Nevěděl by někdo jak tohle spravit?
Editoval gavec (16. 1. 2011 14:14)