- Issue created by @SocialNicheGuru
- πΊπΈUnited States SocialNicheGuru
This comment outlines the reason why: https://www.drupal.org/project/advagg/issues/3410820#comment-15374702 π 'stale_file_threshold' is not a supported key RTBC
- π¬π§United Kingdom aaron.ferris
aaron.ferris β made their first commit to this issueβs fork.
- Merge request !5Issue #3439276: swap schema to a schema info alter hook β (Open) created by aaron.ferris
- π¬π§United Kingdom aaron.ferris
Raised an MR for one possible approach to this.
- Status changed to Needs review
8 months ago 1:53pm 7 April 2024 - Status changed to RTBC
8 months ago 9:12pm 7 April 2024 - π¬π§United Kingdom joehuggans Harrogate, UK
Also seeing this, saving the form at admin/config/people/accounts doesn't work even after uninstalling this module.
Using v 1.4 of this module.
I applied the changes above to the module, uninstalled the module, and this allowed me to then save the form at admin/config/people/accounts.
- π¬π§United Kingdom joehuggans Harrogate, UK
For anyone who has installed this module before applying the patch above.
I managed to fix this by deleting these 2 lines from config in system.site.yml:
site_disable_page_node: true
site_disable_page_node_404: falseSo I did a config export, deleted these 2 lines, then did a config import.
This could also be added to the .module file to handle this when the module is uninstalled:
/** * Implements hook_uninstall(). */ function disable_page_slash_node_uninstall() { // Load the system.site configuration. $config = \Drupal::configFactory()->getEditable('system.site'); // Remove the unwanted configuration lines. $config->clear('site_disable_page_node'); $config->clear('site_disable_page_node_404'); // Save the updated configuration. $config->save(); }
- Status changed to Needs work
6 months ago 7:14am 15 May 2024 - π¬π§United Kingdom aaron.ferris
Yes indeed, that was mentioned by @SocialNicheGuru and I missed the update, ill get a change in to cover this
- Assigned to aaron.ferris
- Status changed to Needs review
6 months ago 4:18pm 15 May 2024