답변:
내장 Magento2 프로파일 러를 트리거하려면에을 추가 SetEnv MAGE_PROFILER "html"
하십시오 .htaccess
. 당신은 또한 사용할 수 있습니다 "csvfile"
또는 "firebug"
. CSV의 경우 var / log에서 찾을 수 있습니다.
루트 폴더에 아래 코드를 추가하면 index.php가 작동합니다.
$_SERVER['MAGE_PROFILER']=1;
v2.2.4 이상
버전 2.2.4부터는 CLI에서 프로파일 러를 활성화 / 비활성화 할 수 있습니다.
# Enable the profiler.
bin/magento dev:profiler:enable
# Disable the profiler.
bin/magento dev:profiler:disable
출처 : Magento Open Source 2.2.4 릴리스 정보 및 Magento Commerce 2.2.4 릴리스 정보
이전 버전의 경우
nginx (fastcgi 사용)가있는 서버에서 실행중인 경우 :
이 코드를 PHP 진입 점에 놓으십시오
fastcgi_param MAGE_PROFILER html;
Magento 2 nginx.conf.sample 파일 구성을 사용하면 다음과 같은 노드가 있습니다.
# PHP entry point for main application
location ~ (index|get|static|report|404|503|health_check)\.php$ {
try_files $uri =404;
fastcgi_pass fastcgi_backend;
fastcgi_buffers 1024 4k;
# Profiler
fastcgi_param MAGE_PROFILER html;
fastcgi_param PHP_FLAG "session.auto_start=off \n suhosin.session.cryptua=off";
fastcgi_param PHP_VALUE "memory_limit=756M \n max_execution_time=18000";
fastcgi_read_timeout 600s;
fastcgi_connect_timeout 600s;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
이 모듈을 사용해보십시오 .magento 2 프로파일 러를 활성화하고 SQL 쿼리 프로파일 러를 추가 하십시오 https://github.com/mirasvit/module-profiler