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 @
d60a75fd
...
@@ -14,11 +14,12 @@ $config["system.logging"]["error_level"] = "verbose";
...
@@ -14,11 +14,12 @@ $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
#
Clear APCu cahe to fix incorrect
classloading
When classes are not found, even though they are definitely there:
When classes are not found, even though they are definitely there.
Restart the system to clear the APCu cache, or disable APCu via:
Run
`vim web/sites/default/settings.php`
and add:
`vim web/sites/default/settings.php`
and add:
```
php
```
php
$settings
[
'class_loader_auto_detect'
]
=
FALSE
;
$settings
[
'class_loader_auto_detect'
]
=
FALSE
;
...
...