I'm hosted on a friends server, and from what i can tell, he may have SSI enabled.
Below are some samples of the httpd.conf and the url
(1) I don't know if Includes has to be here under Options
<Directory "/usr/local/apache/htdocs">
Options Indexes FollowSymLinks MultiViews
(2) Here it doesn't look like he has cgi's enabled, but I've got them to work (probably because I have them enabled in my Virtualhost area. Would this effect SSI?
# To use CGI scripts:
#
#AddHandler cgi-script .cgi
#
# To use server-parsed HTML files
#
AddType text/html .shtml
AddHandler server-parsed .shtml
(3) My Virtualhost part, edited to show what I think is relivent. Everything works proper. cgi's execute fine from the cgi-bin and I'm not trying to execute a cgi using SSI, just display a text file (further below)
<VirtualHost 192.132.13.69>
ServerName ServerAlias anti-hero.net
ScriptAlias /cgi-bin/ /content/.. /ahn/cgi-bin/
Options +Includes +Indexes
</VirtualHost>
(4) is the page I have the SSI commands in. Everything, it seems is sorted properly.
I should also note that I've tried the .htaccess edit trick and that didn't work either. Also, I've never been able to use striaght directory browsing. Finally, is the file I'm trying to call.
Any help would be great.
-Evan
Below are some samples of the httpd.conf and the url
(1) I don't know if Includes has to be here under Options
<Directory "/usr/local/apache/htdocs">
Options Indexes FollowSymLinks MultiViews
(2) Here it doesn't look like he has cgi's enabled, but I've got them to work (probably because I have them enabled in my Virtualhost area. Would this effect SSI?
# To use CGI scripts:
#
#AddHandler cgi-script .cgi
#
# To use server-parsed HTML files
#
AddType text/html .shtml
AddHandler server-parsed .shtml
(3) My Virtualhost part, edited to show what I think is relivent. Everything works proper. cgi's execute fine from the cgi-bin and I'm not trying to execute a cgi using SSI, just display a text file (further below)
<VirtualHost 192.132.13.69>
ServerName ServerAlias anti-hero.net
ScriptAlias /cgi-bin/ /content/.. /ahn/cgi-bin/
Options +Includes +Indexes
</VirtualHost>
(4) is the page I have the SSI commands in. Everything, it seems is sorted properly.
I should also note that I've tried the .htaccess edit trick and that didn't work either. Also, I've never been able to use striaght directory browsing. Finally, is the file I'm trying to call.
Any help would be great.
-Evan