Hosting Wedos – chyba 500
Upozornění: Tohle vlákno je hodně staré a informace nemusí být platné pro současné Nette.
- Taps
- Člen | 169
Zdravím, mám web umístěný na hostingu Wedos a mám problém s tím, že místo chyby 404 se mi zobrazuje chyba 500
v htaccessu mám
Options -Indexes
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^mujweb\.cz
RewriteRule (.*) http://mujweb.cz/$1 [R,L]
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?mujweb\.cz$
RewriteRule ^$ www/ [L]
RewriteCond %{HTTP_HOST} ^(www\.)?mujweb\.cz$
RewriteRule (.*) www/$1 [L]
v bootstrap.php
/**
* My Application bootstrap file.
*/
use Nette\Application\Routers\Route;
use Nette\Diagnostics\Debugger;
// Load Nette Framework or autoloader generated by Composer
require LIBS_DIR . '/autoload.php';
// Configure application
$configurator = new Nette\Config\Configurator;
// Enable Nette Debugger for error visualisation & logging
//$configurator->setDebugMode($configurator::AUTO);
$configurator->enableDebugger(__DIR__ . '/../log');
$configurator->setDebugMode(TRUE);
Debugger::$email = 'pastraka@post.cz';
//Debugger::enable(Debugger::DEVELOPMENT);
Debugger::$strictMode = TRUE;
// Enable RobotLoader - this will load all classes automatically
$configurator->setTempDirectory(__DIR__ . '/../temp');
$configurator->createRobotLoader()
->addDirectory(APP_DIR)
->addDirectory(LIBS_DIR)
->register();
// Create Dependency Injection container from config.neon file
$configurator->addConfig(__DIR__ . '/config/config.neon');
$container = $configurator->createContainer();
// Setup router
$container->router[] = new Route('index.php', 'Homepage:default', Route::ONE_WAY);
$container->router[] = new Route('<action>[/<id>]', 'Homepage:default');
// Configure and run the application!
$container->application->errorPresenter = 'Error';
$container->application->run();
laděnka zachytí chybu
Nette\Application\BadRequestException #404
Page not found. Missing template '…/data/web/virtuals/25902/virtual/www/app/templates/Homepage/cgf.latte
Mohl by mi někdo poradit jak chybu opravit děkuji