diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0c5f860 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +composer.phar +.vscode/launch.json diff --git a/README.md b/README.md index 2253099..03724d8 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,10 @@ Please follow the instructions in the [User Guide](/docs/README.md) * An active GoDataFeed account +## Latest Releases + * Confirmed compatibility with the latest Magento releases, including version 2.4.6. + * Verified support for PHP versions 5.6.5 and above, including PHP 8.0.x, 8.1.x, and 8.2.x. +### [v2.0.17](https://github.com/GoDataFeed/godatafeed-integration-m2/releases/tag/v2.0.17) ## Latest Releases * Added parameter to disable multi source inventory aka msi ### [v2.0.16](https://github.com/GoDataFeed/godatafeed-integration-m2/releases/tag/v2.0.16) diff --git a/composer.json b/composer.json index b44d065..1250252 100644 --- a/composer.json +++ b/composer.json @@ -4,9 +4,10 @@ "type": "magento2-module", "license": "Apache-2.0", "require": { - "php": ">=5.6.5" + "php": ">=5.6.5 || ^8.0", + "magento/framework": "^100.1.0|101.0.*|^102.0.0|^103.0.0" }, - "version": "2.0.16", + "version": "2.0.17", "autoload": { "files": [ "registration.php" diff --git a/docs/README.md b/docs/README.md index b4fcc4f..1ccfd64 100644 --- a/docs/README.md +++ b/docs/README.md @@ -158,6 +158,10 @@ Now, let’s navigate through the following 10 steps to install the extension f * Stores > Inventory > Stocks * Stores > Inventory > Sales Stocks ![catalog-inventory](extension-config-5.png) + * If you want to use our Magento 2 Order Destination, please make sure that in addition to the above, you also have the following: + * Sales > Operations > Orders + * Customers + * Carts * Click: The down arrow next to the **Save** button * Click: **Save & Activate** ![save and activate](extension-config-6.png) @@ -170,6 +174,11 @@ Now, let’s navigate through the following 10 steps to install the extension f * *Access Token Secret* ![save and activate](extension-config-8.png) +* Enable Access Token Authentication + * In your Magento instance admin panel, go to Stores > Configuration > Services > OAuth + * Look for "OAuth Access Tokens to be used as standalone Bearer Tokens" and select "Yes" + ![save and activate](extension-config-10.png) + * Go to: Stores > All Stores * Click on the *Store View* you wish to use for the integration @@ -179,7 +188,6 @@ Now, let’s navigate through the following 10 steps to install the extension f ![extension config](extension-config-9.png) - # FAQs - Q: Where can I find my Magento Integration credentions - Answer: In the Magento admin go to: Systems > Extensions > Integrations @@ -205,6 +213,27 @@ Now, let’s navigate through the following 10 steps to install the extension f - For password enter your *Private key* - ![composer-pic-4](composer-pic-4.png) +- Q: I encountered the error "An error has occurred during application run. See exception log for details." How can I resolve this?** + - Answer: This error might pop up due to OPCACHE. Here's how you can tackle it: + + First things first, try these quick fixes: + - Restarting the server often does the trick. + - Clean and flush the Magento cache by running: + ```bash + php bin/magento cache:clean + php bin/magento cache:flush + ``` + - Recompile Magento Dependency Injection (DI) by running: + ```bash + php bin/magento setup:di:compile + ``` + + If you're still seeing the error after these steps, try this: + 1. Delete the `generated/code` folder. + 2. Repeat the cache cleaning and DI compilation steps mentioned above. + + If the issue persists, please contact us. + # Troubleshooting * [Visit our help center for troubleshooting or more information.](https://help.godatafeed.com/hc/en-us/sections/115000914112) diff --git a/docs/extension-config-10.png b/docs/extension-config-10.png new file mode 100644 index 0000000..6af1a77 Binary files /dev/null and b/docs/extension-config-10.png differ diff --git a/etc/module.xml b/etc/module.xml index 10a99b4..8423c2a 100644 --- a/etc/module.xml +++ b/etc/module.xml @@ -17,5 +17,5 @@ --> - + diff --git a/src/FeedManagement/composer.json b/src/FeedManagement/composer.json index 66fca89..1250252 100644 --- a/src/FeedManagement/composer.json +++ b/src/FeedManagement/composer.json @@ -4,12 +4,14 @@ "type": "magento2-module", "license": "Apache-2.0", "require": { - "php": ">=5.6.5", - "magento/framework": "^100.1.0|101.0.*|^102.0.0" + "php": ">=5.6.5 || ^8.0", + "magento/framework": "^100.1.0|101.0.*|^102.0.0|^103.0.0" }, - "version": "2.0.10", + "version": "2.0.17", "autoload": { - "files": ["registration.php"], + "files": [ + "registration.php" + ], "psr-4": { "GoDataFeed\\FeedManagement\\": "" } diff --git a/src/README.md b/src/README.md index d1791d5..03724d8 100644 --- a/src/README.md +++ b/src/README.md @@ -25,6 +25,31 @@ Please follow the instructions in the [User Guide](/docs/README.md) * An active GoDataFeed account ## Latest Releases + * Confirmed compatibility with the latest Magento releases, including version 2.4.6. + * Verified support for PHP versions 5.6.5 and above, including PHP 8.0.x, 8.1.x, and 8.2.x. +### [v2.0.17](https://github.com/GoDataFeed/godatafeed-integration-m2/releases/tag/v2.0.17) +## Latest Releases + * Added parameter to disable multi source inventory aka msi +### [v2.0.16](https://github.com/GoDataFeed/godatafeed-integration-m2/releases/tag/v2.0.16) + +## Latest Releases +### [v2.0.15](https://github.com/GoDataFeed/godatafeed-integration-m2/releases/tag/v2.0.15) + +## Latest Releases +### [v2.0.14](https://github.com/GoDataFeed/godatafeed-integration-m2/releases/tag/v2.0.14) + +#### Enhancements + * Updated Extension to handle oprhaned attributes +### [v2.0.13](https://github.com/GoDataFeed/godatafeed-integration-m2/releases/tag/v2.0.13) + +#### Enhancements + * Updated Extension to handle oprhaned attributes + +### [v2.0.12](https://github.com/GoDataFeed/godatafeed-integration-m2/releases/tag/v2.0.12) + +#### Enhancements + * Updated Extension to handle oprhaned attributes + ### [v2.0.11](https://github.com/GoDataFeed/godatafeed-integration-m2/releases/tag/v2.0.11) #### Enhancements