1

We are currently running apache with fastcgi. Here is what it says on our phpinfo:

Server API CGI/FastCGI

We need to change that to be Apache.

How do I do this?

Falcon Momot
  • 25,244
  • 15
  • 63
  • 92
somejkuser
  • 250
  • 3
  • 10

1 Answers1

1

It seems like this is hardcoded. It is set on startup by the specific handler (FCGI, mod_php, ...).

If this is really essential you might need to change the php sourcecode and compile it.

(See sapi/cgi/cgi_main.c:946)

Christopher Perrin
  • 4,811
  • 19
  • 33