eapetersen β created an issue.
@tim_bozeman Tim Bozeman, we have a similar error but at an upload from a zip file.
These are the errors
Drupal\Core\Database\DatabaseExceptionWrapper: SQLSTATE[HY000]: General error: 1267 Illegal mix of collations (ascii_general_ci,IMPLICIT) and (utf8mb4_general_ci,COERCIBLE) for operation '=': UPDATE "inline_block_usage" SET "layout_entity_type"=:db_update_placeholder_0, "layout_entity_id"=:db_update_placeholder_1 WHERE ("layout_entity_type" = :db_condition_placeholder_0) AND ("layout_entity_id" = :db_condition_placeholder_1); Array ( [:db_update_placeholder_0] => [:db_update_placeholder_1] => [:db_condition_placeholder_0] => file_resup [:db_condition_placeholder_1] => 1-375101266-1732120946280-test_v1.0.0_2024-11-19.zip ) in Drupal\layout_builder\InlineBlockUsage->removeByLayoutEntity() (line 64 of /var/www/html/core/modules/layout_builder/src/InlineBlockUsage.php).
Drupal\Core\Entity\EntityStorageException: SQLSTATE[HY000]: General error: 1267 Illegal mix of collations (ascii_general_ci,IMPLICIT) and (utf8mb4_general_ci,COERCIBLE) for operation '=': UPDATE "inline_block_usage" SET "layout_entity_type"=:db_update_placeholder_0, "layout_entity_id"=:db_update_placeholder_1 WHERE ("layout_entity_type" = :db_condition_placeholder_0) AND ("layout_entity_id" = :db_condition_placeholder_1); Array ( [:db_update_placeholder_0] => [:db_update_placeholder_1] => [:db_condition_placeholder_0] => file_resup [:db_condition_placeholder_1] => 1-375101266-1732120946280-test_v1.0.0_2024-11-19.zip ) in Drupal\Core\Entity\Sql\SqlContentEntityStorage->delete() (line 763 of /var/www/html/core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php).
We have the 2.0.2 version, do you have any tips?
eapetersen β created an issue.
eapetersen β created an issue.
Hi is there a solution to this? I have the same issue. I found a patch to solve this (
https://www.drupal.org/files/issues/2023-04-20/3355143-7.patch β
) but then i get this error
Invalid parameter: id_token_hint
so its not a complete solve....
Appreciate any help!
I am having the exact same issue in a normal form with a smart date range field in it with.
Using Smart Date 4.0.3, Drupal 10.2.4 and have the Gin Theme.
The video already posted is what is happening in my form just without the tabs
eameyers β created an issue.
Hi i know this is probably not the right place but I am looking for some help with the group Module. I am using the entity clone module to clone groups and i have gotten it so far that members are cloned with the group but the content is not cloned with it so i am currently trying to do that and have come across the addRelationship() function but that needs a plugin ID and that is where I am lost. I can not get the correct plugin ID. Here the function
public function myPreClone(EntityCloneEvent $event): void {
$original = $event->getEntity();
$newEntity = $event->getClonedEntity();
$relationships = $original->getRelatedEntities();
foreach ($relationships as $relationship) {
$newEntity->save();
$newEntity->addRelationship($relationship, $relationship->getPluginID(), $values = []);
$newEntity->save();
}
}
Can someone help or tell me where i can ask for help?