Nette sandbox wedos subdom
- motorcb
- Člen | 552
Zdravim.
S Nette jsem uplny zacatecnik a rad bych do neho pronikl.
Mam hosting u Wedosu a chtel bych zproboznit Nette na subdomene.
Requirements Checker je vse OK.
Adresare vypadaji nasledovne:
/session
/tmp
/www
domain
subdom
nette ⇒ nette.mojedomena.cz
nette ⇒ cely archiv ze sekce download
…
examples
CD-collection
www
index.php
…
sandbox – ten se snazim spustit
…
Po spusteni sanboxu je mi vracena nasledujici chyba:
Internal Server Error
Pri zpracovani pozadavku doslo k vnitrni chybe. Pravdepodobne se jedna o chybu
v .htaccess souboru.
Ctete instrukce v nasi znalostni bazi: Chyba 500 – Internal
Server Error
nette/examples/CD-collection/www/index.php
Po pusteni CD-collection je mi vracen chyba:
Page Not Found
The page you requested could not be found. It is possible that the address is
incorrect, or that the page no longer exists. Please use a search engine to find
what you are looking for.
error 404
Pritom index.php v CD-collection vzpada nasledovne:
<?php
// absolute filesystem path to this web root
define(‚WWW_DIR‘, __DIR__);
// absolute filesystem path to the application root
define(‚APP_DIR‘, WWW_DIR . ‚./../app‘);
// load bootstrap file
require APP_DIR . ‚/bootstrap.php‘;
Nevedel by co jak nastavit aby to fungovalo?
Diky za rady a nakopnuti
- Michal Vyšinský
- Člen | 608
Jednou jsem měl na wedosu problém s htaccess souborem. Ale stačilo mě odstranit část z onoho souboru a takto vypadající htaccess mi funguje:
RewriteEngine On
# RewriteBase /
# front controller
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule !\.(pdf|js|ico|gif|jpg|png|css|rar|zip|tar\.gz)$ index.php [L]
Snad to bude i tvůj problém
- Michal Vyšinský
- Člen | 608
Tak zkus aktivovat laděnku a možná uvidíš víc.
V bootstrap.php si najdi řádek:
Debugger::enable();
A změň ho na toto:
Debugger::enable(Debugger::DEVELOPMENT);
A ještě zkus smazat obsah složky tmp/cache
Editoval CherryBoss (10. 1. 2012 12:19)