V2.2.4 और ऊपर से
संस्करण 2.2.4 से अब आप CLI से Profiler को सक्षम / अक्षम कर सकते हैं:
# Enable the profiler.
bin/magento dev:profiler:enable
# Disable the profiler.
bin/magento dev:profiler:disable
स्रोत: Magento ओपन सोर्स 2.2.4 रिलीज़ नोट्स और Magento कॉमर्स 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;
}