artfulbodger
Technical User
I am at a loss on this one...
Quick synoposis:
I have a LAMP server working just fine. I can server html and PHP code with no problem. When I decide to turn on Virtual Hosting, PHP code stops functioning all together (phpinfo() no longer responds). I know this has to be something simiple, but I am now at a total loss. Can someone point me in right direction?
Here is some snippits of my httpd.conf:
Thanks in advance. I am a so-so newbie to Linux/Apache and I greatly apprecieate any help you guys provide.
Quick synoposis:
I have a LAMP server working just fine. I can server html and PHP code with no problem. When I decide to turn on Virtual Hosting, PHP code stops functioning all together (phpinfo() no longer responds). I know this has to be something simiple, but I am now at a total loss. Can someone point me in right direction?
Here is some snippits of my httpd.conf:
Code:
AddType application/x-tar .tgz
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
..
NameVirtualHost *:80
..
<VirtualHost *:80>
ServerName stsiweb
DocumentRoot /var/[URL unfurl="true"]www/html/stsiweb[/URL]
DirectoryIndex default.htm index.htm index.html index.php
<Directory "/var/[URL unfurl="true"]www/html/stsiweb">[/URL]
Options Indexes FollowSymLinks MultiViews
AllowOverride All
<IfModule mod_access.c>
Order allow,deny
Allow from all
</IfModule>
</Directory>
</VirtualHost>
Thanks in advance. I am a so-so newbie to Linux/Apache and I greatly apprecieate any help you guys provide.