Magento – Magento 2 Notice: Undefined index RendererFactory.php on line 64

magento2

Once per day I got my production server down with this error

Notice: Undefined index
….vendor/magento/module-developer/Model/View/Page/Config/RendererFactory.php
on line 64

I've checked config for dev/front_end_development_workflow/type and it exists in database also and as default config in xml.
Magento version 2.1.7

This error fixes with clearing cache but it's not a solution to do every time.
Does anybody faced with this issue?

Best Answer

You can find the fix here :

https://github.com/magento/magento2/issues/8619

It worked for me and that is to set the compiling to server side less compilation and then deleted the row (for some reason).

After that re-run php bin/magento setup:upgrade

You can find the setting in : Stores->Configuration->Advanced->Developer-> turn to default settings scope -> Front end workflow

Related Topic