Product added to cart
We use cookies to make your experience better. To comply with the new e-Privacy directive, we need to ask for your consent to set the cookies. Learn more.
We use cookies to make your experience better. To comply with the new e-Privacy directive, we need to ask for your consent to set the cookies. Learn more.
Creating an account has many benefits: check out faster, keep more than one address, track orders and more.
nginx map query to profiler:
map $query_string $MAGE_PROFILER {
~^"DEVELOPMENT=Q9ARzXbrwI" html;
}
or we can call just a single page location:
## Profiler location
location ~ /profiler_test_page {
set $MAGE_PROFILER html;
try_files $uri $uri/ /index.php$is_args$args;
}
## Process php
location ~ ^/(index|health_check|get|static|errors/(report|404|503))\.php$ {
...
## Enable Magento profiler
fastcgi_param MAGE_PROFILER $MAGE_PROFILER;
...
}
Varnish pass query parameter:
if (req.url ~ "[\?&]DEVELOPMENT=Q9ARzXbrwI") { return (pass); }
link/profiler_test_page?DEVELOPMENT=Q9ARzXbrwI
Get the latest deals, updates, technology changes and more.
Thank you , I already subscribed.