How To Run Server Side Include [SSI] on Local WAMP 5
Posted by: bluesapphire (203.81.224.---)
Date: April 09, 2007 04:37PM

Hi!
I have installed WAMP 5 1.7.0 on my local system. I want to run some pages which require Server Side include [SSI] enabled . Kindly give me some help that how to enable SSI on WAMP 5 on my local system.

Thanks in advance



Post Edited (04-09-07 17:07)

Options: ReplyQuote
Re: How To Run Server Side Include [SSI] on Local WAMP 5
Posted by: CyberSpatium (71.237.217.---)
Date: April 09, 2007 09:31PM

all you have to do is make 2 simple changes to your apache config file to get ssi to work. open up your apache config file httpd.conf
start wamp -> left click on the wamp tray icon menu -> config files -> httpd.conf

- or -
C:\wamp\Apache2\conf\httpd.conf

find:
Options Indexes FollowSymLinks

change to:
Options +Includes Indexes FollowSymLinks

then find:
#AddType text/html .shtml
#AddOutputFilter INCLUDES .shtml


change to:
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml


now save the file and restart apache for the new settings to take effect.




CyberSpatium
----------------------
WAMP English Forum Admin

Need help? Check out my WAMP User Manual/Guide here!


Please visit my latest website Clarify Loans:
clarifyloans.com

Options: ReplyQuote
Re: How To Run Server Side Include [SSI] on Local WAMP 5
Posted by: pietgr (---.dsl.ip.tiscali.nl)
Date: September 15, 2007 12:37AM

Options +Includes Indexes FollowSymLinks is not working

Options Indexes FollowSymLinks +Includes works fine

Options: ReplyQuote
Re: How To Run Server Side Include [SSI] on Local WAMP 5
Posted by: bobdole (---.cpe.distributel.net)
Date: December 21, 2014 05:53PM

This worked for me, with the other change:

Options Indexes FollowSymLinks Includes

Options: ReplyQuote
Re: How To Run Server Side Include [SSI] on Local WAMP 5
Posted by: Otomatic (Moderator)
Date: December 21, 2014 06:43PM

Hi,

> Options +Includes Indexes FollowSymLinks is not working
If all the options on the Options directive are preceded by a + or - symbol, the options are merged. Any options preceded by a + are added to the options currently in force, and any options preceded by a - are removed from the options currently in force.
Mixing Options with a + or - with those without is not valid syntax, and will be rejected during server startup by the syntax check with an abort.

If you use a + or - symbol for one options, all the other options must have a symbol.

---------------------------------------------------------------
Documentation Apache - Documentation PHP - Documentation MySQL - Wampserver install files & addons

Options: ReplyQuote


Sorry, only registered users may post in this forum.