I ran into a similar problem today (but with mod_wsgi
). It might be an Apache 2.2-to-2.4 problem. A comprehensive list of changes can be found here.
For me, it helped to add an additional <Directory>
-entry for every path the error-log was complaining about and filling the section with Require all granted
.
So in your case you could try
<Directory /usr/lib/cgi-bin/php5-fcgi>
Require all granted
Options FollowSymLinks
</Directory>
and I had to move my configuration file from folder conf.d
to folder sites-enabled
.
All in all, that did the trick for me, but I don't guarantee it works in your case as well.