This might belong on the stackoverflow.com website, but I don't think so, because this has to do with Apache configuration.
I'm getting the an error:
Notice: Undefined index: PATH_INFO
This is a stock Apache configuration, and I thought that you could just use the AcceptPathInfo On
in httpd.conf:
<Directory "/srv/http">
Options Indexes FollowSymLinks
AllowOverride All
AcceptPathInfo On
Order allow,deny
Allow from all
</Directory>
What exactly do I have configured wrong here?
This was due to a configuration issue on my end that was overlooked.