Peter Jaap Blaakmeer
Peter Jaap Blaakmeer
This might just be related to #112; the cache is only invalidated when the product goes out of stock automatically. If its set to out of stock manually or if...
Sorry, that was unclear. I liked the idea. But I just realised this is just as easy to resolve in the template in combination with a CSV translation.
So maybe rewrite the Mage_ImportExport_Model_Import_Uploader to a class in this extension, add the PHP7 fix and change the `_setUploadFile` function from; ``` php protected function _setUploadFile($filePath) { if (!is_readable($filePath)) {...
It's the curly brackets fix on this line; https://github.com/Inchoo/Inchoo_PHP7/blob/master/app/code/local/Inchoo/PHP7/Model/Import/Uploader.php#L25
I think it should give a warning when there is data present in the store view, irregardless of whether it is the same value compared to store_id 0 value or...
Bytheway, Symfony Console 5.1 now includes a `SingleCommandApplication` for this exact purpose: https://symfony.com/blog/new-in-symfony-5-1-single-command-applications
@owenvoke true, it's not very optimal in development stage.
Don't forget to set the correct http cache host; ``` VARNISH_IP=$(docker inspect --format='{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' $(docker ps | grep varnish | cut -d ' ' -f1)) bin/magento setup:config:set --http-cache-hosts="$VARNISH_IP:80" ```