Switch php_admin_value
to php_value
to allow overwrites by ini_set()
in fpm.conf
s
#407
marcorieser
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Started to use Herd yesterday and booted up a WordPress site. The
debug.log
was not generated at the usual path so I started to search the internet and found an issue (#134 (comment)) here which suggests to comment outphp_admin_value[error_log]
in thefpm.conf
file.Tinkered a bit and found out that replacing
php_admin_value
withphp_value
allows WordPress to overwrite the error log path viaset_ini()
while keeping theerror_log
Herd path set as default.So I was wondering why
php_admin_value
was chosen overphp_value
at all?I'm no server guy and maybe missing something but I'm suggesting to use
php_value
in the future.Beta Was this translation helpful? Give feedback.
All reactions