oxid

DDEV Integration Zendguard Loader

Deadly 提交于 2021-01-29 08:56:27
问题 I'm using DDEV in an older OXID Esales Project (4.6). Now I have to install the Zendguard Loader. How can I do that? I have to put the .so file into the php direction inside the container and extend the php.ini. I asked earlier about the Ioncube loader and that works fine with DDEV-Local. But I don't know how to integrate the zendguard loeader? Can someone help me? 回答1: Download the Zendguard Loader from their website. (Linux, 64-bit, PHP5.6) Place the tarball in your project's .ddev/web

List of multiple products into php datalayer

无人久伴 提交于 2021-01-29 03:26:18
问题 I would like to get a nice data layer tracking for my site's marketing pixels in the "order confirmation page" (thank you for you purchase page). The site uses OXID Shop as the ecommerce platform. I would like to have the following setup: IF currentPage == 'thankyou': products_info = '[{id: 'product_id_1', price: 'price_1', quantity: 'quantity_1'}, {id: 'product_id_2', price: 'price_2', quantity: 'quantity_2'}]' I am trying the following code to obtain the values directly from the backend if