We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
our $apache_proc_php = get_php_setting('/usr/bin/php', 'memory_limit');
Probably should be a bit more dynamic
my $php_exe = `which php`; our $apache_proc_php = get_php_setting($php_exe, 'memory_limit');
there may be other places in the script where this is so.
in which case it may be better to set a global variable like
our $php_exe = `which php`;
and substitute any hardcocded paths with the variable
IF YOU ARE SUFFERING FROM THIS ISSUE, FOR THE TIME BEING TRY SYMLINKING /usr/bin/php TO YOUR PHP EXECUTABLE
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Probably should be a bit more dynamic
there may be other places in the script where this is so.
in which case it may be better to set a global variable like
and substitute any hardcocded paths with the variable
IF YOU ARE SUFFERING FROM THIS ISSUE, FOR THE TIME BEING TRY SYMLINKING /usr/bin/php TO YOUR PHP EXECUTABLE
The text was updated successfully, but these errors were encountered: