Sadly, had to uninstall this module to complete our D11 upgrade.
xax, great, can someone please add this deprecated validation fix into a merge request! This prevents D10.4 and D11.1.x installs from using this module
subscribe
yes this needs to be fixed asap , please edit the composer.json, remove D8 and D9 and ensure 10 and 11 are proscribed in composer.json for library_manager
subscribe
subscribe
subscribing
Ideally the hook_update would handle sanity checks and ensure the expected group_roles exist.
3 months to figure out this issue:
Here is the solution we used:
drush ev "
use Drupal\field\Entity\FieldConfig;
FieldConfig::create([
'field_name' => 'group_roles',
'entity_type' => 'group_relationship',
'bundle' => 'administrators-group_membership',
'label' => 'Group roles',
'required' => FALSE,
'settings' => [],
])->save();
"
This worked!
so, replace "administrators" with your group machine name and run the script. It creates the missing group_roles . Only do this if you are actually missing the group_roles.
The need for this fix was due to a botched hook update execution along the way somewhere , or botched upgrade. We ran this script to avoid having to re-install from scratch. Now the /admin/group route loads without crashing although we did have to reload our opcache (apcu) and rebuild drupal cache also.
This patch no longer applies to the latest version, needs a re-roll.
teknorah β credited barbarae β .
teknorah β credited barbarae β .
jdleonard β credited barbarae β .
jdleonard β credited barbarae β .
barbarae β made their first commit to this issueβs fork.
barbarae β created an issue.
execute drush entup to fix missing entity types
Thank you so much. Fixed my permissions.
barbarae β created an issue.
I am having this problem - I have "Administer software updates" privilege (I am an administrator - in fact it is my site and I created it) but I get the error message "In order to run update.php you need to either have "Administer software updates" permission or have set $settings['update_free_access'] in your settings.php."
I have the problem from this stream even though it is marked as fixed. My site runs ok on drupal 9.5.10 with civicrm 5.62.0 until I try to upgrade civicrm to either 5.62.1 or civicrm 5.62.2. Then I get the error mentioned below:
https://www.jandbwebsite.com/themes/contrib/bootstrap_barrio/images/requ...
/CimarronRES/sites/default/files/css/css_J-2CXAdyTZY8175zy0hWbrQ9H-g_PZRZY9cQ86ikAsI.css:1 GET https://www.jandbwebsite.com/themes/contrib/bootstrap_barrio/images/requ... 404
This is the expanded code from the GET:
https://www.jandbwebsite.com/CimarronRES/sites/default/files/css/css_J-2...
The initial https://www.jandbwebsite.com/themes/contrib/bootstrap_barrio/images/requ... would not find any correct files because it is missing my sub domain. But the second expanded code GET has the correct sub domain (CimarronRES).
I cannot logon to my site at all because of the missing sub domain (CimarronRES) in the initial reference https://www.jandbwebsite.com/themes/contrib/bootstrap_barrio/images/requ...
I am not a "coder" so even though I can debug a bit, I do not know how/where to fix this ?
Thank you for any help - barbarae (PS I have been using drupal with civicrm since 2008 and gone through the drupal 7 to drupal 9 upgrades).
barbarae β made their first commit to this issueβs fork.