-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Magento 2.4.5 compatibility - cron job gigya_offline_sync fails #134
Comments
Hi gianstraf, Apologies for the delayed response. We are still working on supporting 2.4.5 fully. Some of the problems stem from compatibility issues with newer PHP versions, and not Magento 2.4.5 per se. You are right about the 2nd part, that json_decode should output an associative array. About the first part though: can you share what the issue is in your case? Are you experiencing the deprecation notice, or is there another issue that I didn't mention? Thanks! |
Hi @Ynhockey, For the first error, I report you our console log when we attempt to run manually the cron (via
As you see, the error is a fatal error. Thanks! |
Hi, it was fixed in 6.1.0, please check that it's working for you |
Dear support,
we have a problem with version 6.0 on Magento 2.4.5
The job
gigya_offline_sync
does not run properly:This line:
Magento-2/Helper/CmsStarterKit/GigyaApiHelper.php
Line 36 in b366ee3
seems reference a file that does not exist.
We have patched temporanilly with:
$this->defConfigFilePath = __DIR__."/configuration/DefaultConfiguration.json";
Also, line:
$confArray = json_decode(file_get_contents($this->defConfigFilePath));
should be:
$confArray = json_decode(file_get_contents($this->defConfigFilePath),true);
because the line:
$this->userKey = !empty($userKey) ? $userKey : $confArray['appKey'];
traits variable
$confArray
as an array.Could you support us ?
Thank you,
Gianluca
The text was updated successfully, but these errors were encountered: