[eluser]dcrawkstar[/eluser]
//UPDATE//
FML. On reload of apache it works once, then crashes and burns again. That may have been a part of the issue, but no longer am I confident in it being the final solution.
//
OKAY! So not sure if anyone else has the error, BUT this comes from the fastcgi module. I disabled it and bam! I got up and working. Not that I was using it yet, but damned if I wont be soon. Now to track why FCGI is not able to see absolute paths in codeigniter.
My mod_fastgi conf file that I commented out in the httpd.conf file that got things working.
Code:
<IfModule mod_fastcgi.c>
Alias /fcgi-bin "/opt/bitnami/apache2/cgi-bin"
FastCgiServer /opt/bitnami/apache2/cgi-bin/php-cgi -idle-timeout 315
AddHandler php-fastcgi .php
<Location /fcgi-bin/>
Options ExecCGI
SetHandler php-fastcgi
</Location>
AddType application/x-httpd-fastphp .php
Action php-fastcgi /fcgi-bin/php-cgi
</IfModule>
I've also never used it before so, this is a learning opportunity for me to understand more about it. If anyone has some insight into FastCGI and CI I would enjoy learning. Thanks!
Chris