From 764232b59c58ebbb8fcce1c84ffaf9fe1d74022a Mon Sep 17 00:00:00 2001 From: Alejandro Lopez Date: Tue, 26 Mar 2024 14:19:43 -0400 Subject: [PATCH] updated readme.md --- .gitignore | 1 + docs/README.md | 24 +++++++++++++++++++++--- 2 files changed, 22 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 454ad96..0c5f860 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ composer.phar +.vscode/launch.json diff --git a/docs/README.md b/docs/README.md index 8ffbf47..1ccfd64 100644 --- a/docs/README.md +++ b/docs/README.md @@ -188,9 +188,6 @@ Now, let’s navigate through the following 10 steps to install the extension f ![extension config](extension-config-9.png) -# Reauthorize Access Token - - # FAQs - Q: Where can I find my Magento Integration credentions - Answer: In the Magento admin go to: Systems > Extensions > Integrations @@ -216,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)