<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1001015" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1001015</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/does-script-exist#comment-1004318</link>
    <description> &lt;p&gt;umm if i remember my HTML there is something you can put in the headers that will cuase the document to not cache.&lt;/p&gt;
&lt;p&gt;content=&quot;no cache&quot; or something...&lt;/p&gt;
&lt;p&gt;anyone have the right answer?&lt;/p&gt;
 </description>
     <pubDate>Mon, 13 Mar 2000 02:59:00 +0000</pubDate>
 <dc:creator>Orpheus</dc:creator>
 <guid isPermaLink="false">comment 1004318 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/does-script-exist#comment-1004317</link>
    <description> &lt;p&gt;Yes, I tried that. My browser still caches it. Anyways, if you combine CGI and JavaScript, there&#039;s a way to make it so that it doesn&#039;t cache the script no matter what.&lt;/p&gt;
&lt;p&gt;--Edge&lt;/p&gt;
 </description>
     <pubDate>Mon, 13 Mar 2000 00:51:00 +0000</pubDate>
 <dc:creator>Edge</dc:creator>
 <guid isPermaLink="false">comment 1004317 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/does-script-exist#comment-1004316</link>
    <description> &lt;p&gt;There is no problem with his Javascript if you put this in the &amp;lt;head&amp;gt; tag: &amp;lt;meta HTTP-EQUIV=&quot;Pragma&quot; CONTENT=&quot;no-cache&quot;&amp;gt;     &lt;img src=&quot;http://www.webmaster-forums.com/ubb/smile.gif&quot; alt=&quot;&quot; class=&quot;bb-image&quot; /&gt;  If your host doesn&#039;t support SSI, there are some CGI Scripts(&lt;a href=&quot;http://www.cgi-resources.com&quot; title=&quot;http://www.cgi-resources.com&quot;&gt;http://www.cgi-resources.com&lt;/a&gt;) that are for hosts that don&#039;t support SSI, but you can make it include a file, however that is slower too.   &lt;img src=&quot;http://www.webmaster-forums.com/ubb/smile.gif&quot; alt=&quot;&quot; class=&quot;bb-image&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Sun, 12 Mar 2000 11:50:00 +0000</pubDate>
 <dc:creator>Matt Kaufman</dc:creator>
 <guid isPermaLink="false">comment 1004316 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/does-script-exist#comment-1004315</link>
    <description> &lt;p&gt;I think &lt;a href=&quot;http://www.cgi.veinotte.com/scripts.htm&quot; class=&quot;bb-url&quot;&gt;http://www.cgi.veinotte.com/scripts.htm&lt;/a&gt;  has JUST what you&#039;re looking for. Get their Web File Editor!! It&#039;s a great program for this exact problem.&lt;/p&gt;
&lt;p&gt;sawz, the problem with JavaScript is that your browser caches it so visitors don&#039;t see the updates.&lt;/p&gt;
&lt;p&gt;--Edge&lt;/p&gt;
 </description>
     <pubDate>Sun, 12 Mar 2000 06:06:00 +0000</pubDate>
 <dc:creator>Edge</dc:creator>
 <guid isPermaLink="false">comment 1004315 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/does-script-exist#comment-1004314</link>
    <description> &lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I had a similar problem.&lt;br /&gt;
My solution:&lt;/p&gt;
&lt;p&gt;Create all page (locally) via wml, perl and a db (mysql), then upload them via sitecopy.&lt;/p&gt;
&lt;p&gt;The advantages:&lt;br /&gt;
- Easy maintainance via DB&lt;br /&gt;
- A few templates for lots of pages&lt;br /&gt;
- only static pages are served (server load !!)&lt;/p&gt;
&lt;p&gt;Disadvantages:&lt;br /&gt;
- You have to convert your pages&lt;br /&gt;
- You have to setup the DB&lt;br /&gt;
- You have to write some (very small) scrits&lt;/p&gt;
&lt;p&gt;If you update your links a few times this one time overhead really pays.&lt;/p&gt;
&lt;p&gt;ciao&lt;br /&gt;
Anti&lt;/p&gt;
 </description>
     <pubDate>Mon, 31 Jan 2000 09:14:00 +0000</pubDate>
 <dc:creator>anti</dc:creator>
 <guid isPermaLink="false">comment 1004314 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/does-script-exist#comment-1004313</link>
    <description> &lt;p&gt;if your unable to use ssi, try serving it up java style.&lt;/p&gt;
&lt;p&gt;do a :&lt;/p&gt;
&lt;p&gt;document.write(&quot;place your html here&quot;)&lt;/p&gt;
&lt;p&gt;don&#039;t use quotes in the html, for instance:&lt;/p&gt;
&lt;p&gt;document.write(&quot;&amp;lt;a href=&#039;http://www.yourdomain.com&#039;&amp;gt;your domain&amp;lt;/a&amp;gt;&quot;)&lt;/p&gt;
&lt;p&gt;call it your_domain.js&lt;/p&gt;
&lt;p&gt;serve it up this way:&lt;/p&gt;
&lt;p&gt;&amp;lt;script language=&quot;JavaScript1.2&quot; src=&quot;your_domain.js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;/p&gt;
 </description>
     <pubDate>Sat, 29 Jan 2000 01:58:00 +0000</pubDate>
 <dc:creator>sawz</dc:creator>
 <guid isPermaLink="false">comment 1004313 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/does-script-exist#comment-1004312</link>
    <description> &lt;p&gt;Thats actually not a bad idea and alot better then using a cgi script. Now i will find out if my &quot;host&quot; supports SSI. Considering it doesnt let me use a cgi-bin, have wild cards or use subdomains I doubt it will suppoet SSI but anyway.&lt;/p&gt;
&lt;p&gt;Thanks alot  &lt;img src=&quot;http://www.webmaster-forums.com/ubb/smile.gif&quot; alt=&quot;&quot; class=&quot;bb-image&quot; /&gt;&lt;/p&gt;
&lt;p&gt;------------------&lt;br /&gt;
Thomas Minton&lt;br /&gt;
&lt;a href=&quot;http://www.javaplace.co.uk&quot; title=&quot;http://www.javaplace.co.uk&quot;&gt;http://www.javaplace.co.uk&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Sun, 16 Jan 2000 18:42:00 +0000</pubDate>
 <dc:creator>minton</dc:creator>
 <guid isPermaLink="false">comment 1004312 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/does-script-exist#comment-1004311</link>
    <description> &lt;p&gt;Why not use Server Side Includes (SSI) if your host supports it?&lt;/p&gt;
&lt;p&gt;You could have your menubar in a .txt, and than wherever your menubar is suppose to go in each page, just put the following:&lt;br /&gt;
&amp;lt;!--#include file=&quot;menubar.txt&quot;--&amp;gt;&lt;/p&gt;
&lt;p&gt;------------------&lt;br /&gt;
&lt;strong&gt;1 in 5,000 north atlantic lobsters are born bright blue.&lt;/strong&gt;&lt;/p&gt;
 </description>
     <pubDate>Sun, 16 Jan 2000 16:48:00 +0000</pubDate>
 <dc:creator>Rob Pengelly</dc:creator>
 <guid isPermaLink="false">comment 1004311 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
