私はここでは初心者です。xampp1.7.1 php バージョン 5.2.9 と Magento 1.7 を使用しています。私のローカルサーバーでは、magento の速度を上げたいと思っています。そのために、Google で見つかった多くのトリックを試しています。しかし、それでもパフォーマンスは向上しません。特に保存時間(バックエンドで保存するものは何でも)には膨大な時間がかかります(5分以上...)。これが私がしたことのリストです:
- php.ini ファイル内:
の値を変更します
memory_limit = 8M --> memory_limit = 128M
query_cache_size=16M --> query_cache_size=64M
- my.ini ファイル内:
key_buffer = 512M max_allowed_packet = 64M table_cache = 512 sort_buffer_size = 4M read_buffer_size = 4M read_rnd_buffer_size = 2M myisam_sort_buffer_size = 64M tmp_table_size = 128M query_cache_size = 96M の値を設定します。
- magento .htaccess ファイルで重要な行のコメントを外します
これから :
<IfModule mod_deflate.c>
############################################
## enable apache served files compression
## http://developer.yahoo.com/performance/rules.html#gzip
# Insert filter on all content
###SetOutputFilter DEFLATE
# Insert filter on selected content types only
#AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript
# Netscape 4.x has some problems...
#BrowserMatch ^Mozilla/4 gzip-only-text/html
# Netscape 4.06-4.08 have some more problems
#BrowserMatch ^Mozilla/4\.0[678] no-gzip
# MSIE masquerades as Netscape, but it is fine
#BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
# Don't compress images
#SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
# Make sure proxies don't deliver the wrong content
#Header append Vary User-Agent env=!dont-vary
</IfModule>
これに:
<IfModule mod_deflate.c>
############################################
## enable apache served files compression
## http://developer.yahoo.com/performance/rules.html#gzip
# Insert filter on all content
SetOutputFilter DEFLATE
# Insert filter on selected content types only
#AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript
# Netscape 4.x has some problems...
BrowserMatch ^Mozilla/4 gzip-only-text/html
# Netscape 4.06-4.08 have some more problems
BrowserMatch ^Mozilla/4\.0[678] no-gzip
# MSIE masquerades as Netscape, but it is fine
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
# Don't compress images
SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
# Make sure proxies don't deliver the wrong content
Header append Vary User-Agent env=!dont-vary
</IfModule>
「#php_flag zlib.output_compression on」から「php_flag zlib.output_compression on」のチェックを外す</p>
Magento バックエンドから「キャッシュ管理」を有効にする
「Fooman_Speedster」拡張機能をインストールする
しかし、それでも速度は向上しません。提案やヒントがあれば、私と共有してください。私の英語でごめんなさい。よろしくお願いします。