Salve,
come spesso accade, un sito perfettamente funzionante in locale non funziona in remoto..
Questo è il messaggio che mi restituisce la prima pagina che apro.
Codice:
FInternal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, info@altervista.org 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.
Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
In pratica uso un banale MVC ed ho un file .htaccess in questo modo
Codice PHP:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]
ed ho in file index con questo codice
Codice PHP:
<?php
require 'config.php';
function __autoload($class) {
$pathlibs = LIBS . $class . ".php";
if (file_exists($pathlibs)) {
require $pathlibs;
}
}
$app = new Bootstrap();
?>
Se provo ad aprire una qualsiasi pagina successiva all'index mi restituisce un INTERNAL ERROR 500
Qualcuno cortesemente potrebbe darmi qualche suggerimento per far funzionare un sito su Altervista ??
Grazie Daniele