Ciao ragazzi,
Ho scaricato un CMS ma, appena vado ad importarlo si visualizza l'errore 500 relativo al file .htaccess. Questo è ciò che è richiesto per il corretto funzionamento.
Server
Unix-type or Windows
PHP
Version 5.1.0 or higher. 5.3.x is recommended.
PHP Extensions
Reflection extension
PCRE extension
SPL extension
PDO MySQL extension
GD extension with gif/jpeg read/write and FreeType support
CURL extension
PHP Settings
Memory limit >= 32M
MySQL
Version 4.1 or higher
Cron Jobs
Ability to create cron jobs (scheduled tasks) is available on most hosts, including shared ones. This is not a mandatory requirement, but recommended. If there's no ability to run crons on your server you will still be able to execute them manually from admin.
Questo è il file .htaccess che mi ritrovo:
Codice:
Options +FollowSymLinks
IndexIgnore */*
RewriteEngine on
#RewriteBase /
# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# otherwise forward it to index.php
RewriteRule . index.php
# fix for uploadify 302, 406 errors
SetEnvIfNoCase Content-Type "^multipart/form-data;" "MODSEC_NOPOSTBUFFERING=Do not buffer file uploads"
# # av:php5-engine
AddHandler av-php53 .php
E' possibile far funzionare correttamente il CMS? Se si, cosa devo fare?
Grazie in anticipo.