Skip to content

Commit

Permalink
Merge pull request #29 from Alejandro-HUB/2.4.6-compability
Browse files Browse the repository at this point in the history
2.4.6 compability
  • Loading branch information
cdesallegdf authored Mar 28, 2024
2 parents 4a366ea + 764232b commit 6395553
Show file tree
Hide file tree
Showing 8 changed files with 71 additions and 8 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
composer.phar
.vscode/launch.json
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
31 changes: 30 additions & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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)
Binary file added docs/extension-config-10.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion etc/module.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
-->

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="GoDataFeed_FeedManagement" setup_version="2.0.16"/>
<module name="GoDataFeed_FeedManagement" setup_version="2.0.17"/>
</config>
10 changes: 6 additions & 4 deletions src/FeedManagement/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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\\": ""
}
Expand Down
25 changes: 25 additions & 0 deletions src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6395553

Please sign in to comment.