Account created on 19 October 2010, over 13 years ago
#

Recent comments

πŸ‡«πŸ‡·France Damien Laguerre

Idem, #43 solved my problem.
I'm experiencing this problem in a REST resource. The context user.node_grants:view throws this error.

πŸ‡«πŸ‡·France Damien Laguerre

Yes, there was a problem with the variable names.

Thanks for the work!

πŸ‡«πŸ‡·France Damien Laguerre

I've released new version for Simplenews 4.0.

πŸ‡«πŸ‡·France Damien Laguerre

The error occurs in the loggin screen. Look at the console before submitting it.

πŸ‡«πŸ‡·France Damien Laguerre

In the case of Gin the problem is visible in the console.

Antibot use JavaScript, checks your console, you must have a JS error.

πŸ‡«πŸ‡·France Damien Laguerre

I've also encountered a similar problem.

This ticket fixes the problem:
https://www.drupal.org/project/gin/issues/3432512 πŸ› Missing once dependencies on sticky and gin_accent libraries even tho it uses it Fixed

πŸ‡«πŸ‡·France Damien Laguerre

I also applied the patch to 4 sites two days ago, and the spam was all blocked.
Everything seems to be working perfectly.

Thanks for the patch.

πŸ‡«πŸ‡·France Damien Laguerre

I encounter a similar issue with a view facets filter.

Everything works fine, except if I want to apply the action to all result pages.
The facets module does not identify which facets filters are active on the batch route.

I found a (quick and maybe dirty) solution by passing the "f" parameter to the query.

πŸ‡«πŸ‡·France Damien Laguerre

In the case of an anonymous customer, using the users field does not work.
Using the information contained in the Address field of the profile may be a good solution.

'FirstName' => $address['given_name'],
'LastName' => $address['family_name'],

πŸ‡«πŸ‡·France Damien Laguerre

To remain compatible with all sites using ipless, I've implemented the hook_config_schema_info_alter to include to system.performance schema the ipless config description.

πŸ‡«πŸ‡·France Damien Laguerre

I think the error here is the migration ID

d7_node_complete must be replaced by the migration ID upgrade_d7_node_complete_page

id: upgrade_d7_node_complete_page
migration_group: migrate_drupal_7
label: 'Node complete (Basic pages)'
source:
  plugin: d7_node_complete
  node_type: page
process:
  nid:
     -
       plugin: migration_lookup
       migration: upgrade_d7_node_complete_page <<-- Must match the migration ID
       source: tnid
     -
       plugin: node_complete_node_lookup
πŸ‡«πŸ‡·France Damien Laguerre

This is caused by the "Watch mode".
If you are on production, you have to disable this functionality in
Configuration > Development > Performance

But the error indicates that you can't write to your file directory.
web/sites/default/files

Checks the permissions of your directory.
Something like this might help. Adapt the permissions to your environment.
chmod 775 web/sites/default/files

πŸ‡«πŸ‡·France Damien Laguerre

I had the same issue with Drupal 10 and php 8.1.
I confirm that using the dev version solved the issue.

Thanks!

πŸ‡«πŸ‡·France Damien Laguerre

All possible groups are :

  • base
  • layout
  • component
  • state
  • theme

In your case, you have a library with "components" group key.
If your site is working fine with ipless disabled, it means that you have a library like this one:

base:
  less:
    components: <---
      css/components/foo.css:

You can try something like this and you'll get the same error:

base:
  css:
    foo: <---
      css/components/foo.css:

'Error: Undefined constant "CSS_FOO" in constant() (line 180 of

This is not an error of the module, but an error in a lbrary.

πŸ‡«πŸ‡·France Damien Laguerre

I think this is a mistake in the definition of a library.

The "component" key does not have an S at the end.

base:
  css:
    component: <---
      css/components/foo.css:

πŸ‡«πŸ‡·France Damien Laguerre

Thank you. I hope this will be merged in a next release.

πŸ‡«πŸ‡·France Damien Laguerre

Great!

2. I discovered that in Drupal the service_collector tag corresponds to tagged_iterator in Symfony. Use this instead of creating a compiler pass.

I first tried this way, but it could not be used with all the Symfony services I defined the first time.
Now it's really the best solution.

I did some tests and everything works fine!

Production build 0.69.0 2024