<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
Hi lhecking,<br>
<br>
<a class="moz-txt-link-abbreviated" href="mailto:lhecking@users.sourceforge.net">lhecking@users.sourceforge.net</a> wrote:
<blockquote
 cite="mid:20080617230310.6B5414E343@cork.irdesign.cypress.com"
 type="cite">
  <pre wrap="">Tobias Oetiker writes:
  </pre>
  <blockquote type="cite">
    <pre wrap="">Today David Tomic wrote:
    </pre>
    <blockquote type="cite">
      <pre wrap="">The documentation included in the package actually has better information than
what's online.
      </pre>
    </blockquote>
    <pre wrap="">should be better now, I re-synced the docs on the web.
    </pre>
  </blockquote>
  <pre wrap=""><!---->
 I followed the web docs, but have the same problem as the OP. The apache
 access_log says:

1.2.3.4 - - [17/Jun/2008:23:51:16 +0100] "GET /smokeping/tr.cgi?_ScriptTransport_id=1&amp;nocache=1213743074292&amp;_ScriptTransport_data=%7B%22service%22%3A%22Tr%22%2C%22method%22%3A%22run_tr%22%2C%22id%22%3A1%2C%22params%22%3A%5B%7B%22host%22%3A%225.6.7.8%22%2C%22rounds%22%3A20%2C%22delay%22%3A2%7D%5D%2C%22server_data%22%3Anull%7D HTTP/1.1" 200 666 <a class="moz-txt-link-rfc2396E" href="http://server/smokeping/tr.html">"http://server/smokeping/tr.html"</a> "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.14) Gecko/20080419 Firefox/2.0.0.14"

 "200" means OK, so it should work, shouldn't it? But then, I haven't had any
 luck getting ajax zooming to work either on this server.</pre>
</blockquote>
<br>
What you've posted still looks like it could be consistent with the cgi
file not executing properly.<br>
<br>
I've just had a look at my own setup, and even if I disable the cgi
file from executing it still reports back as&nbsp; "200", so that doesn't
really prove much unfortunately.<br>
<br>
It's very simple to check one way or another though ... you just need
to put another really simple cgi script in the same folder as tr.cgi,
and see whether that executes properly or not.<br>
<br>
#!/usr/bin/perl<br>
<br>
print "Content-type: text/html\n\n";<br>
print &lt;&lt;HTML;<br>
&lt;html&gt;<br>
&lt;head&gt;<br>
&lt;title&gt;A Simple Perl CGI&lt;/title&gt;<br>
&lt;/head&gt;<br>
&lt;body&gt;<br>
&lt;h1&gt;A Simple Perl CGI&lt;/h1&gt;<br>
&lt;p&gt;Hello World&lt;/p&gt;<br>
&lt;/body&gt;<br>
HTML<br>
exit; <br>
<br>
If that fails as well [if it doesn't convert into html code] then you
know what your problem is.<br>
<br>
Try it out, and let me know how you go.<br>
</body>
</html>