What is SSI? and how do I use it ?

Server Side Includes (SSI)

When using a UNIX/LINUX system it is sometimes necessary to enable certain HTML files executable for the purpose of using SSI. Server Side Includes are often used to run a cgi script. An include is called with an example such as this: After you insert your include, you must mark the HTML file as executable so the server will parse the file. This is done using the two options below: 

1) Renaming the file to .shtml: On our server any file name .shtml will be parsed. So instead of having an index.html file, you would name it index.shtml. This is the easiest way of enabling includes.

2) CHMODing the file to 777: With CHMOD 777 you can also mark a file as executable. It is important to only make the files which you want parsed executable. This poses certain security issues, as well as a strain on our resources, as the processor has to work harder to
parse a file.

Reasons for Using SSI
SSI is often used to include something into an HTML page. You can insert the contents of one HTML page into another page. An example of a practical usage for this would be to include your e-mail address at the bottom of each page. If you do this as an include, then when your e-mail address changes, you will only have to update it on one page and not your entire web site. Another usage is to call cgi scripts into action. Many counters, clocks, and other scripts are called using SSI. The command used will most likely be provided in the documentation of your cgi script.

?האם התשובה שקיבלתם הייתה מועילה

 הדפסת המאמר

קראו גם

What file permissions do I need for my CGI scripts?

CGI scripts must be set with executable file permissions, or requests for the script from the web...

CGI-BIN and Perl scripts not working on my domain ?

There are lot of reasons for not working of cgi and perl scripts. You can do small test on your...

What scripts banned on your servers ?

The following scripts are banned from use on our servers and may not be uploaded or run. Reasons...

Where can I find server paths used in my CGI or PERL scripts?

  The following server resources paths applicable to only CPanel customers. Perl path (...

I am having a problem with my CGI script. Do you have any advice before contacting support?

Below are solutions to some of the more common CGI script problems. When I activate my CGI...