🇧🇩Bangladesh linkanp
I have bypassed this issue by creating config yaml files manually for the new Field States. If anyone want, I would share my code with them.
🇧🇩Bangladesh linkanp
I am getting extactly the same issue as alex.verhoeven This issue needs to be resolved.
🐛 | Drupal core | Call to a member function has() on null in Drupal\Core\Mail\Plugin\Mail\PhpMail->mail()
🇧🇩Bangladesh linkanp
#2 Patch worked for me. Thanks
🐛 | Social Share | [error] Error: Class "Drupal\Core\Plugin\ContextAwarePluginBase" not found in include() (line 44 of modules/contrib/social_share/src/Plugin/SocialShareLink/LInkedInShareLink.php)
🇧🇩Bangladesh linkanp
Thanks shagel This patch worked for me.
🇧🇩Bangladesh linkanp
Thanks 'drunken monkey' for pointing to correct Issue. It has fixed my issue.
💬 | simpleSAMLphp Authentication | Unable to install module simplesamlphp/simplesamlphp-assets-base - Error when upgrading to D10
🇧🇩Bangladesh linkanp
Resolved
I was having the same issue as bbombachini
I resolved the issue by removing the vendor folder and then running 'composer update'
If this helps anyone else.
🇧🇩Bangladesh linkanp
1st Change:
AnotherConfigEventSubscriber::configSave()
has a very high priority, so it should be executed beforeConfigEventSubscriber::configSave()
. - This is wrong, and it should read as belowAnotherConfigEventSubscriber::configSave()
has a very high priority, so it should be executed beforeConfigEventSubscriber::configDelete()
2nd Change:
AnotherConfigEventSubscriber::configDelete()
has a very low priority, so it should be executed afterConfigEventSubscriber::configDelete()
. - This is wrong, and it should read as belowAnotherConfigEventSubscriber::configDelete()
has a very low priority, so it should be executed afterConfigEventSubscriber::configSave()
.