Skip to content
GitLab
Explore
Sign in
This is an archived project. Repository and other project resources are read-only.
Changes
Page history
Update Drupal Debug Hints
authored
Jan 12, 2023
by
Kai Amann
Show whitespace changes
Inline
Side-by-side
Drupal-Debug-Hints.md
View page @
6fbee95d
...
@@ -14,6 +14,18 @@ $config["system.logging"]["error_level"] = "verbose";
...
@@ -14,6 +14,18 @@ $config["system.logging"]["error_level"] = "verbose";
Might have to ignore the readonly flag (with
`:w!`
).
Might have to ignore the readonly flag (with
`:w!`
).
# Disable APCu extension for classloading
When classes are not found, even though they are definitely there:
Run
`vim web/sites/default/settings.php`
and add:
```
php
$settings
[
'class_loader_auto_detect'
]
=
FALSE
;
```
Might have to ignore the readonly flag (with
`:w!`
).
# Manually deleting log messages
# Manually deleting log messages
Sometimes the log page fails to load with a fatal error.
Sometimes the log page fails to load with a fatal error.
...
...