Errore durante installazione in remoto 5.6

7 contenuti / 0 new
Ultimo contenuto
Errore durante installazione in remoto 5.6

Salve a tutti , dopo aver scelto lingua italiana durante la installazione , mi compare questo messaggio :

'' register_globals is enabled. Drupal requires this configuration directive to be disabled. Your site may not be secure when register_globals is enabled. The PHP manual has instructions for how to change configuration settings. (Attualmente utilizzata PHP 4.4.8-dev) ''

Come posso fare?

Dipende dal fatto che sul tuo server è attivo register_globals e Drupal dalla versione 5.6 lo richiede disabilitato a causa di possibili bug che creerebbero problemi. l'unica cosa che puoi fare è fartelo disabilitate dal tuo hosting provvider o usare a 5.5 (ma tenendoti il rischio di buchi).

Ciao
Marco
--
My blog
Working at @agavee

Ciao ragazzi, se vi serve io ho risolto cosi:

modifica il tuo file .htaccess nel seguete modo:

# PHP 4, Apache 1.
<IfModule mod_php4.c>
  php_value magic_quotes_gpc                0
  php_value register_globals                off
  php_value session.auto_start              0
  php_value mbstring.http_input             pass
  php_value mbstring.http_output            pass
  php_value mbstring.encoding_translation   0
</IfModule>
# PHP 4, Apache 2.
<IfModule sapi_apache2.c>
  php_value magic_quotes_gpc                0
  php_value register_globals                off
  php_value session.auto_start              0
  php_value mbstring.http_input             pass
  php_value mbstring.http_output            pass
  php_value mbstring.encoding_translation   0
</IfModule>
# PHP 5, Apache 1 and 2.
<IfModule mod_php5.c>
  php_value magic_quotes_gpc                0
  php_value register_globals                off
  php_value session.auto_start              0
  php_value mbstring.http_input             pass
  php_value mbstring.http_output            pass
  php_value mbstring.encoding_translation   0
</IfModule>
# Requires mod_expires to be enabled.
<IfModule mod_expires.c>
  # Enable expirations.
  ExpiresActive On
  # Cache all files for 2 weeks after access (A).
  ExpiresDefault A1209600
  # Do not cache dynamically generated pages.
  ExpiresByType text/html A1
</IfModule>

praticamente cambi questo paramentro

php_value register_globals off

andrea.consadori wrote:
Ciao ragazzi, se vi serve io ho risolto cosi:

modifica il tuo file .htaccess nel seguete modo:

# PHP 4, Apache 1.
<IfModule mod_php4.c>
  php_value magic_quotes_gpc                0
  php_value register_globals                off
  php_value session.auto_start              0
  php_value mbstring.http_input             pass
  php_value mbstring.http_output            pass
  php_value mbstring.encoding_translation   0
</IfModule>
# PHP 4, Apache 2.
<IfModule sapi_apache2.c>
  php_value magic_quotes_gpc                0
  php_value register_globals                off
  php_value session.auto_start              0
  php_value mbstring.http_input             pass
  php_value mbstring.http_output            pass
  php_value mbstring.encoding_translation   0
</IfModule>
# PHP 5, Apache 1 and 2.
<IfModule mod_php5.c>
  php_value magic_quotes_gpc                0
  php_value register_globals                off
  php_value session.auto_start              0
  php_value mbstring.http_input             pass
  php_value mbstring.http_output            pass
  php_value mbstring.encoding_translation   0
</IfModule>
# Requires mod_expires to be enabled.
<IfModule mod_expires.c>
  # Enable expirations.
  ExpiresActive On
  # Cache all files for 2 weeks after access (A).
  ExpiresDefault A1209600
  # Do not cache dynamically generated pages.
  ExpiresByType text/html A1
</IfModule>

praticamente cambi questo paramentro

php_value register_globals off

Copiando tutto mi da sempre lo stesso errore...uffi

se io abilito il file htaccess mi si blocca tutto il sito.

se io abilito il file htaccess mi si blocca tutto il sito.

Prova a guardare nelle FAQ: http://www.drupalitalia.org/node/4855