Magento

Hỏi và đáp cho người dùng nền tảng thương mại điện tử Magento





1
Cách tốt nhất để thay thế chức năng chết?
Tôi có mã Magento sau: protected function _sendUploadResponse($fileName, $content, $contentType='application/octet-stream') { $response = $this->getResponse(); $response->setHeader('HTTP/1.1 200 OK',''); $response->setHeader('Pragma', 'public', true); $response->setHeader('Cache-Control', 'must-revalidate, post-check=0, pre-check=0', true); $response->setHeader('Content-Disposition', 'attachment; filename='.$fileName); $response->setHeader('Last-Modified', date('r')); $response->setHeader('Accept-Ranges', 'bytes'); $response->setHeader('Content-Length', strlen($content)); $response->setHeader('Content-type', $contentType); $response->setBody($content); $response->sendResponse(); die; } Khi tôi cố gắng xác thực mã của mình, tôi …






1
Điểm cuối API của trình kết nối Dotmailer không thể để trống
Một lỗi đã xảy ra trong quá trình chạy ứng dụng. Xem nhật ký ngoại lệ để biết chi tiết. [2018-01-12 02:00:11] main.CRITICAL: Dotmailer connector API endpoint cannot be empty. {"exception":"[object] (Magento\\Framework\\Exception\\LocalizedException(code: 0): Dotmailer connector API endpoint cannot be empty. at /home/site/public_html/vendor/dotmailer/dotmailer-magento2-extension/Model/Apiconnector/Client.php:118)"} [] Xin chào, tôi chỉ sử dụng các …

6
Lỗi Magento 2 trong swatchRenderer.js tại thuộc tính 'updateData'
Tôi có lỗi này trong trang chuyên mục. Khi tôi thay đổi màu từ tùy chọn swatch, nó sẽ tải sao vào bộ chứa hình ảnh sản phẩm và hiển thị lỗi trong SwatchRenderer.js đây là lỗi: Uncaught TypeError: Cannot read property 'updateData' of undefined at $.(anonymous function).(anonymous function).processUpdateBaseImage (http://127.0.0.1/magentoblank/pub/static/version1515737320/frontend/jtuser/customtheme/en_US/Magento_Swatches/js/swatch-renderer.js:1168:25) …

4
Magento 2: PDF động và đính kèm hình ảnh với email đặt hàng
Tôi cần phải đính kèm PDF và hình ảnh với email đặt hàng. Tôi có đường dẫn hình ảnh và PDF động được lưu trữ trong quote_itembảng. Tôi đã gỡ lỗi mã để đính kèm hình ảnh / PDF để đặt hàng email. <preference for="Magento\Framework\Mail\Template\TransportBuilder" type="vendor\moduleName\Model\Mail\MailTransportBuilder"></preference> <preference for="Magento\Sales\Model\Order\Email\SenderBuilder" type="vendor\moduleName\Model\Mail\SenderBuilder"/> <?php …

2
Magento 2: Tạo thuộc tính khách hàng theo chương trình, không cần cài đặt tập lệnh
Cách tạo thuộc tính khách hàng magento 2 để nó hoạt động trong khi chạy tập lệnh mà không cần cài đặt tập lệnh: - /** * @var \Magento\Eav\Setup\EavSetupFactory */ protected $eavEavSetupFactory; public function __construct( ... \Magento\Eav\Setup\EavSetupFactory $eavEavSetupFactory, ... ) { ... $this->eavEavSetupFactory = $eavEavSetupFactory; ... } public function createOrUpdateCustomerUDA($value, …

3
Các vấn đề về hiệu suất của Magento 2
Tôi đang thử nghiệm trang web của mình trên " https://developers.google.com/speed/pagespeed/insights/ " và chỉ có xếp hạng thấp (9-12 / 100). Thiết lập của tôi: Máy chủ ảo (CentOS) với RAM 16 GB, 6 lõi (Intel Xeon), Bộ lưu trữ SSD Magento 2.1.7 Apache 2.4.6 MariaDB 10.1 Tôi chắc chắn …

Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.