Arkadaşlar merhaba, siteme stats scripti kurdum bir oyun için
Zitro-Stats server kill durumunu güncellemek için
update dosyasını çalıştırmam gerekir fakat o sayfa görüntülenemiyor diyor.Biri .htaccess i klasörden sil düzelir dedi sildim siteye girmez oldu

nasıl düzeltebilirim ?
.htaccess
# LIMITED FILE ACCESS FOR INSTALL/RESET/UPDATE
<Files ~ "^(?:install.php|reset.php|update.php)$">
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
</Files>
# RECOMMENDED PHP SETTINGS
# WORKS ONLY FOR PHP AS MODULE
<IfModule mod_php4.c>
# disable to allow php code in xhtml documents
php_value short_open_tag off
# disable magic quotes to improve performance
php_flag magic_quotes_gpc off
php_flag magic_quotes_runtime off
# display errors for debugging
#php_value display_errors on
#php_value error_reporting 2047
# disable execution limit for update.php
<Files update.php>
php_value max_execution_time 0
</Files>
</IfModule>
<IfModule mod_php5.c>
# disable to allow php code in xhtml documents
php_value short_open_tag off
# disable magic quotes to improve performance
php_flag magic_quotes_gpc off
php_flag magic_quotes_runtime off
# display errors for debugging
#php_value display_errors on
#php_value error_reporting 2047
# disable execution limit for update.php
<Files update.php>
php_value max_execution_time 0
</Files>
</IfModule>