Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.
.html is usually regular static HTML page that changes only when the webmaster edits it. .shtml is used for dynamic pages, where you can do something like this: "You are connected to this web site from <!--# echo var="REMOTE_HOST" -->." and the webserver will parse that. The user will then see "You are connected to this web site from xxxx-xxxx-blah.uu.net."
If you go to my web server and look at this page: http://www.gigacluster.net/uptime.shtml, you will see the server's uptime.
You could configure your webserver to just parse ALL pages, regardless of whether there's any dynamic content, and then you wouldn't have to bother with choosing either .html or .shtml, but it's a double-edged sword -- parsing a document takes up [valuable] CPU time and possibly RAM. That is why the server wants a special file extension for files it needs to parse.
The extension means nothing. I could configure my webserver to serve all pages with .abc as extension as HTML pages, and parse all SSI tags in pages with .def as extension.
.shtml is the most common extension for HTML pages containing SSI tags.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.