установил скрипт колхоза,даже не прописал еще базу!Захожу на сайт а там какие-то крякозябры вот сайт http://v-kolhoze.bl.ee/public_html/ как это иссправить?
Игра на профилактике. Не переживайте. Заработает ориентировочно в 11-12 часов по мск.с Ув.TonyResh
Если я не ошибаюсь, то это кодировка файлов.Автор, попробуйте другой двиг!
K o D e R o K,пробывал другой двиг тоже самое,как изменить кодировку?
если в .htaccess прописано AddDefaultCharset utf-8, то придётся перекодировать все файлы. если с компа и есть Notepad++, то это работы на 5 минут
Limp_Bizkit, вот что
php_value memory_limit 256M
php_value register_globals 0
ExpiresActive On
ExpiresByType application/javascript "access plus 1 year"
ExpiresByType text/javascript "access plus 1 year"
ExpiresByType text/css "access plus 1 year"
ExpiresByType image/gif "access plus 1 year"
ExpiresByType image/jpeg "access plus 1 year"
ExpiresByType image/png "access plus 1 year"
Header set Cache-control: private
Header set Cache-control: public
BrowserMatch "MSIE" force-no-vary
BrowserMatch "Mozilla/4.[0-9]{2}" force-no-vary
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml application/xhtml+xml text/javascript text/css application/x-javascript
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4.0[678] no-gzip
BrowserMatch bMSIE !no-gzip !gzip-only-text/html
<ifmodule mod_gzip.c>
mod_gzip_on Yes
mod_gzip_item_include file \.js$
mod_gzip_item_include file \.css$ </ifmodule>
</IfModule>
<IfModule mod_headers.c>
<FilesMatch .(ico|pdf|flv|jpg|jpeg|png|gif|swf)$="">
Header set Expires "Wed, 13 Dec 2012 01:00:00 GMT"
</FilesMatch>
<FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|swf)$">
Header set Cache-Control "max-age=29030400, public"
</FilesMatch>
<FilesMatch "\.(xml|txt|css|js)$">
Header set Cache-Control "max-age=29030400, proxy-revalidate"
</FilesMatch>
<FilesMatch "\.(html|htm|txt)$">
Header set Cache-Control "max-age=29030400, must-revalidate"
</FilesMatch>
</IfModule>