mlaurense

Results 6 comments of mlaurense

I experienced the same, although setting use_lua to 1 seemed to have fixed this. I will keep a close watch to see if this issue returns.

Quick 'n' dirty fix. Edit inc/magmi_auth.php: At the top: `require_once('../../app/Mage.php');` Change `public function authenticate()` so it contains the following: ``` Mage::app(); $user = Mage::getModel('admin/user'); return $user->authenticate($this->user, $this->pass); ``` This will...

Unbelievable that this is still an issue. You can [apply this patch](https://experienceleague.adobe.com/docs/commerce-operations/upgrade-guide/patches/apply.html) to fix it: ``` --- src/Migration/Handler/TruncateSuffix.php 2022-04-11 15:42:50.000000000 +0000 +++ src/Migration/Handler/TruncateSuffix.php 2022-11-21 16:30:02.926243596 +0000 @@ -90,7 +90,8 @@...

@VrumVrum You mean it is **STILL** not fixed... it appears the file is the same in 2.4.5 tag, so you should be able to apply the patch successfully. Check if...

I'm having the same problem. Temperature was on 29 degrees, seems I have to use -18 to get it to 20 degrees...

Ah yes, the joy of the Magento migration tool, immediately breaking your fresh Magento upon installation... I've created this patch: [php8.4-compatibility.patch](https://github.com/user-attachments/files/23480974/php8.4-compatibility.patch) Use the [cweagans/composer-patches](https://experienceleague.adobe.com/en/docs/commerce-operations/upgrade-guide/patches/apply) to apply the patch; place it...