arkadaşlar drupal kurulumunda şöyle bir hatayla karşılaştım..
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. (Currently using PHP register globals Enabled ('1'))
bu hatanın çözümü için arama yaptıgımda da bu sayfa çıktı karşıma.. ama çözemedim. yardımcı olabilecek varmı?
.htaccess dosyasında, normal degerler aşagıdaki gibi. 1 ve off yaptım denedim gene aynı hatayı aldım. satırı silmeyi denedim gene aynı hatayı aldım.. sounu aşamadım bir türlü..
# PHP 4, Apache 1.
<IfModule mod_php4.c>
php_value magic_quotes_gpc 0
php_value register_globals 0
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 0
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 0
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>
drupal kurulum hatası
2
●766