Quelques points sur l'hébergement OVH d'Automne 4 :
Modifier le fichier /.htaccess à la racine comme suit :
Code :
SetEnv PHP_VER 5
SetEnv MAGIC_QUOTES 0
SetEnv REGISTER_GLOBALS 0
SetEnv SESSION_USE_TRANS_SID 0
# Automne general .htaccess file.
# Author Sébastien Pauchet <sebastien.pauchet@ws-interactive.fr>
# $Id: htaccess_root,v 1.4 2008/12/18 11:07:17 sebastien Exp $
# Declare errors documents.
# The 404.php must be the 404 error document, otherwise, change PATH_SPECIAL_PAGE_NOT_FOUND_WR constant value in cms_rc.php file accordingly and keep the PHP header of the file 404.php in your new error document.
ErrorDocument 404 /404.php
ErrorDocument 403 /403.php
# Remove files listing
Options -indexes
# Directory Index
DirectoryIndex index.php
# Files access
Allow from all
# Some PHP configurations
<IfModule mod_mime.c>
<IfModule mod_php5.c>
php_flag magic_quotes_gpc Off
php_flag magic_quotes_runtime Off
php_flag magic_quotes_sybase Off
php_flag allow_call_time_pass_reference Off
php_flag session.use_trans_sid Off
php_flag register_globals Off
</IfModule>
</IfModule>
Ajouter la ligne suivantes au fichier /automne/UPDATE.DENY :
Code :
#For OVH config
/.htaccess
Ajouter les trois lignes suivantes au fichier /config.php
Code :
#For OVH config
define("FILES_CHMOD", "0604");
define("DIRS_CHMOD", "0705");
Penser à mettre les droits 705 sur tous les dossiers d'Automne et les droits 604 à tous les fichiers sous peine d'erreur 500.