une solution temporaire d'install pour la beta 2
dans installation.php chercher :
@umask(0);
@chmod($racine . 'config/config.php', 0666);
if ($fichier_config = @fopen($racine . 'config/config.php', 'w+[b]'))
{
@flock($handle, LOCK_EX);
if (@fwrite($handle, $cf_var))
{
@fflush($handle);
@flock($handle, LOCK_UN);
@fclose($handle);
@chmod($file, 0666);
unset($code);
$config_ecrit = TRUE;
}
}
remplacer par :
if ( $fichier_config = @fopen($racine . 'config/config.php', 'w+[b]') )
{
if ( @fwrite($fichier_config, $cf_var) )
{
$config_ecrit = TRUE;
}
}
à priori ca marche
mais c'est en attendant, je suis au bureau