Where is shopware saving $stuff?
Cache Filesystem: var/cache Queue messages Database: enqueue To be continued.
Cache Filesystem: var/cache Queue messages Database: enqueue To be continued.
I just stumbled over an interesting problem. A customer of mine told me, that they are trying for weeks to get filters working and for some reason it just didn’t work. It sounded like an easy to fix problem to me, but the fact, that the (good) developers of the customer didn’t fix it themselves […]
Back in the days, when we migrated websites from one machine to another it was easy, get HTML and CSS, move it to another machine, change the DNS record and bam. Done. Today it is not that easy, because we have a lot of services involved: CDN, DNS, ERP and many other three-letter acronyms. One […]
Other posts about mysqldump mysqldump –quick -C –hex-blob –single-transaction –quick, -q This option is useful for dumping large tables. It forces mysqldump to retrieve rows for a table fromthe server a row at a time rather than retrieving the entire row set and buffering it in memorybefore writing it out.–compress, -C Compress all information sent […]
I’m building a Shopware 6 shop and we implement a custom theme for our customer. To change the HTML structure we change templates, which is fine, but from time to time we only want to replace a translation, so I tried it. Use your own translation and „just do it“ Shopware 6 has a good […]
Shopware 6 is running on Symfony. Symfony is running on twig. Therefore the Shopware 6 default template is implemented in twig, which is pretty cool and provides a lot of syntactic sugar. I want to overwrite <div class=“col-auto“> and add a second css class. Two weeks ago I would have copied the complete block, changed […]