Open richardforth opened 1 year ago
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
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