La cache a pagina intera è attivata (Magento EE versione 1.14.0.1). Tuttavia, alcuni prodotti hanno un ciclo di reindirizzamento dopo aver colpito l'URL. Nessun errore nei registri. Se lo deselezionassi full_page_cache
, ora funzionerebbe. Ho cercato la full_page_cache
cartella per gli URL problematici ed ecco cosa ho ottenuto (in forma serializzata):
array (
'cache_subprocessor' => 'Enterprise_PageCache_Model_Processor_Product',
'current_product_id' => '400',
'response_headers' =>
array (
0 =>
array (
'name' => 'Content-Type',
'value' => 'text/html; charset=UTF-8',
'replace' => false,
),
1 =>
array (
'name' => 'X-Frame-Options',
'value' => 'SAMEORIGIN',
'replace' => true,
),
2 =>
array (
'name' => 'P3p',
'value' => 'CP="CAO PSA OUR"',
'replace' => true,
),
3 =>
array (
'name' => 'Location',
'value' => 'http://www.example.com/this-is-the-product-url',
'replace' => true,
),
),
'routing_aliases' =>
array (
'rewrite_request_path' => 'this-is-the-product-url',
),
'routing_requested_route' => 'catalog',
'routing_requested_controller' => 'product',
'routing_requested_action' => 'view',
'sid_cookie_name' => 'frontend',
)
Altri prodotti non hanno questo:
3 =>
array (
'name' => 'Location',
'value' => 'http://www.example.com/this-is-the-product-url',
'replace' => true,
),
Se svuoto la cache della pagina intera, non si verificherebbe, quindi, intermittente a prodotti casuali. Non sono riuscito a replicare quale sia la causa del ciclo di reindirizzamento. Qualche idea?