I updated to that version and spammaster.services.yml contains the spammaster.collect.service lines.
Maybe it has something to do with another module?
It is not the first time I get this error. Also on other projects.
I guess it is because spammaster tries to connect with the spammaster service but the domain name is not the same on my localhost.
I look further and if I find a solution, I will let it know.
Thanks a lot for your time and investigation!
No I have a white screen, no errors. I make a dump with module backup_migrate and import local with sequel ace
@pedro-alves : i make also a dump, not working
(and I cleared cache before making dump)
@pedro-alves, i did it. Cache cleared by truncating all cache tables.
Thank you for your quick response!
Not working after login... now I have WSOD after login.
No apache or php errors...
pascalmortier → created an issue.
@pedro-alves
It works! Thx for your quick response!
I solved the problem by changing
$is_admin = \Drupal::currentUser()->hasRole('administrator');
to
if(in_array('administrator',$user_roles)) {
$is_admin = TRUE;
} else { $is_admin = FALSE; }
pascalmortier → created an issue.
I use the button below the calender and then I go to /fullcalendar-view-event-add?entitiy=node&bundle=... where the not required fields not appears. When I remove $element['#access'] = FALSE;
then it is working.
Thx for info about altering classes!
@mingsong : do you have more info how to override a class? A link where to find an example?
pascalmortier → created an issue.