<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1016453" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1016453</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/cgi-newbie#comment-1095794</link>
    <description> &lt;p&gt;How can i get an image to show up in this guestbook? Do I need to put the image in another file also like the guest book file or the cgi-bin file? &lt;/p&gt;
&lt;p&gt;All I can see are the place holders for the image. The code is there.&lt;/p&gt;
 </description>
     <pubDate>Sun, 09 Dec 2001 09:52:53 +0000</pubDate>
 <dc:creator>disaster-master</dc:creator>
 <guid isPermaLink="false">comment 1095794 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/cgi-newbie#comment-1095547</link>
    <description> &lt;p&gt;Yeah, running Apache 2 - but only on my local box!! My actual hosting provider is still stuck in the 90&#039;s .. even running perl 5.005_03 (1997)!! &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/sad.png&quot; title=&quot;Sad&quot; alt=&quot;Sad&quot; class=&quot;smiley-content&quot; /&gt; At least it&#039;s stable though, they are waiting for the next release of woody (I think).&lt;/p&gt;
&lt;p&gt;Cheers&lt;/p&gt;
 </description>
     <pubDate>Wed, 05 Dec 2001 09:44:04 +0000</pubDate>
 <dc:creator>Wil</dc:creator>
 <guid isPermaLink="false">comment 1095547 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/cgi-newbie#comment-1095533</link>
    <description> &lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote: &lt;em&gt;Originally posted by Wil &lt;/em&gt;&lt;br /&gt;
&lt;strong&gt;Mark&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Hmm. Mine was set up (as default installation - version 2) to default to &lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;version 2 of what?  Are you running Apache 2? *drool*  I&#039;ve read a bit about it, but I&#039;m going to wait for it to come out of beta before I install it.&lt;/p&gt;
 </description>
     <pubDate>Wed, 05 Dec 2001 08:02:40 +0000</pubDate>
 <dc:creator>Mark Hensler</dc:creator>
 <guid isPermaLink="false">comment 1095533 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/cgi-newbie#comment-1095528</link>
    <description> &lt;p&gt;Thanks guys and Suzanne. I changed the htaccess file and now it goes to the .shtml page. The counter works and the guestbook works. &lt;/p&gt;
&lt;p&gt;Now I can concentrate on building new pages and changing everything over. &lt;/p&gt;
&lt;p&gt;You all are life savers!!!&lt;br /&gt;
And good teachers.&lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Wed, 05 Dec 2001 05:51:45 +0000</pubDate>
 <dc:creator>disaster-master</dc:creator>
 <guid isPermaLink="false">comment 1095528 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>.htaccess</title>
    <link>https://www.webmaster-forums.net/webmasters-corner/cgi-newbie#comment-1095527</link>
    <description> &lt;p&gt;Mark has what you need, just copy what Mark wrote and put it in your .htaccess file and leave the rest untill you know what they are and what they do.&lt;/p&gt;
&lt;p&gt;Definitely get rid of the three index pages, that&#039;s just going to cause problems. The reason the counter doesn&#039;t work on the top domain level is because the default page is index.html, which you now know won&#039;t work because it&#039;s not parsed by the server.&lt;/p&gt;
&lt;p&gt;It doesn&#039;t matter if you use Dreamweaver unless they are using some Front Page extensions. From the look of the site, I doubt they are, but if you are cleaning up the code (I recommend you try validating it, for instance), then you will be probably replacing anything that used FP.&lt;/p&gt;
&lt;p&gt;___________________________________&lt;br /&gt;
# -FrontPage-&lt;br /&gt;
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*&lt;br /&gt;
DirectoryIndex index.shtml index.html index.htm&lt;/p&gt;
&lt;p&gt;order deny,allow&lt;br /&gt;
deny from all&lt;br /&gt;
allow from all&lt;/p&gt;
&lt;p&gt;order deny,allow&lt;br /&gt;
deny from all&lt;/p&gt;
&lt;p&gt;AuthName &lt;a href=&quot;http://www.aavfd.org&quot; class=&quot;bb-url&quot;&gt;aavfd.org&lt;/a&gt;&lt;br /&gt;
AuthUserFile  /web/******/******/www/_vti_pvt/service.pwd&lt;br /&gt;
AuthGroupFile /web/******/******/www/_vti_pvt/service.grp&lt;/p&gt;
&lt;p&gt;Also, just a for future reference bit, you can make any page name the default page for a folder using the DirectoryIndex line.  I used it to set &lt;a href=&quot;http://www.carterjackson.com/joshua/photogallery/&quot; class=&quot;bb-url&quot;&gt;carterjackson.com/joshua/photogallery/&lt;/a&gt; to photos.php so I wouldn&#039;t have to have an index page in that directory, and could keep the photos in their own directory anyway.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt; Suzanne&lt;/p&gt;
&lt;p&gt;P.S. You don&#039;t owe me anything, just keep asking questions and helping! &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/wink.png&quot; title=&quot;Wink&quot; alt=&quot;Wink&quot; class=&quot;smiley-content&quot; /&gt; Glad you got the bits working. Now about that guestbook, I recommend you wander to the scripting languages forum and post about it. List the script name, including a link to the source code if applicable, and where you are trying to get it to work, and what, specifically, your errors are. Someone there will be able to steer you in the right direction, hopefully.&lt;/p&gt;
 </description>
     <pubDate>Wed, 05 Dec 2001 05:34:34 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1095527 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/cgi-newbie#comment-1095504</link>
    <description> &lt;p&gt;Mark&lt;/p&gt;
&lt;p&gt;Hmm. Mine was set up (as default installation - version 2) to default to &lt;/p&gt;
&lt;p&gt;&lt;code&gt;index.html index.htm home.html home.htm&lt;/code&gt;&#039;&lt;/p&gt;
&lt;p&gt;I have to explicity state that I want to turn on SSI and that&#039;s why it doesn&#039;t assume to pick up a directory index for it. Which makes sense...&lt;/p&gt;
 </description>
     <pubDate>Tue, 04 Dec 2001 18:30:49 +0000</pubDate>
 <dc:creator>Wil</dc:creator>
 <guid isPermaLink="false">comment 1095504 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/cgi-newbie#comment-1095501</link>
    <description> &lt;p&gt;Also, like I had mentioned earlier in my post, they have three home pages. I have no idea why. &lt;/p&gt;
&lt;p&gt;They are index.html, index.shtml and aavfd3.html. I will fix this but just in case you look at the site and notice this.....I am aware of it.&lt;/p&gt;
 </description>
     <pubDate>Tue, 04 Dec 2001 18:11:43 +0000</pubDate>
 <dc:creator>disaster-master</dc:creator>
 <guid isPermaLink="false">comment 1095501 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/cgi-newbie#comment-1095500</link>
    <description> &lt;p&gt;I thought that might be the problem from reading tutorials. This is what is in the htaccess file. The only thing I have altered here for posting are the ***** in the last two lines. Where do I put what you posted above?&lt;br /&gt;
Oh, I don&#039;t know if it matters or not but I am using dreamweaver. I suppose the person who originally did the site used FP.&lt;br /&gt;
_________________&lt;br /&gt;
# -FrontPage-&lt;/p&gt;
&lt;p&gt;IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*&lt;/p&gt;
&lt;p&gt;order deny,allow&lt;br /&gt;
deny from all&lt;br /&gt;
allow from all&lt;/p&gt;
&lt;p&gt;order deny,allow&lt;br /&gt;
deny from all&lt;/p&gt;
&lt;p&gt;AuthName&lt;br /&gt;
AuthUserFile  /web/******/******/www/_vti_pvt/service.pwd&lt;br /&gt;
AuthGroupFile /web/******/******/www/_vti_pvt/service.grp&lt;/p&gt;
 </description>
     <pubDate>Tue, 04 Dec 2001 18:06:55 +0000</pubDate>
 <dc:creator>disaster-master</dc:creator>
 <guid isPermaLink="false">comment 1095500 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/cgi-newbie#comment-1095487</link>
    <description> &lt;p&gt;.htaccess should include:&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;DirectoryIndex index.shtml index.html index.htm&lt;/code&gt;&lt;/div&gt;&#039;This line sets the priority of the files.  The server will look for index.shtml first.  If it can&#039;t find it, it will look for index.html, and so forth.&lt;/p&gt;
 </description>
     <pubDate>Tue, 04 Dec 2001 17:00:33 +0000</pubDate>
 <dc:creator>Mark Hensler</dc:creator>
 <guid isPermaLink="false">comment 1095487 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/cgi-newbie#comment-1095466</link>
    <description> &lt;p&gt;What files have you got in your home directory? &lt;/p&gt;
&lt;p&gt;Have you got a index.html and a index.shtml?&lt;/p&gt;
&lt;p&gt;Depending on your server set up, the index.html file will have higher precedence over index.shtml and will be the one displayed to the user. And that&#039;s where your problem is. You should never have more than one index file in your directory.&lt;/p&gt;
 </description>
     <pubDate>Tue, 04 Dec 2001 10:12:06 +0000</pubDate>
 <dc:creator>Wil</dc:creator>
 <guid isPermaLink="false">comment 1095466 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
