Hi,
not sure if it's the problem, but AFAIK SSI requires full local
absolute paths, not relative paths, URLs, or virtual directory paths.
i.e. something like:
<exec cmd="/usr/home/x/cgi-bin/count.r">
--
Michal Kracik
[EMAIL PROTECTED] wrote:
>
> Ryan and Ralph,
>
> I still can't get it to work on my home page. My web host does support
> SSI; I'm not sure about PHP. I am using Drumbeat 2000, and am using the
> "Roll Your Own HTML" smart element to insert the code into the home page.
>
> Here is my counter:
>
> http://www.worldmerchantltd.com/cgi-bin/counter.r
>
> By clicking on the above link and then refreshing your browser, you can see
> that it works.
>
> Here are lines I have tried:
>
> <!--#exec cmd="./cgi-bin/count.r" -->
> <exec cmd="./cgi-bin/count.r">
> <exec cmd="www.worldmerchantltd.com/cgi-bin/counter.r">
> <exec cmd="worldmerchantltd.com/cgi-bin/counter.r">
> <exec cmd="http://www.worldmerchantltd.com/cgi-bin/counter.r">
> <a href="http://www.worldmerchantltd.com/cgi-bin/counter.r">
> <?PHP include ("http://abooks.com/cgi-bin/banner.r"); ?>
> <?PHP include ("http://worldmerchantltd.com/cgi-bin/counter.r"); ?>
> <?PHP include ("http://www.worldmerchantltd.com/cgi-bin/counter.r"); ?>
>
> Note that even Ralph's banner code is there; that should surely work since
> it addresses his own server. I am just trying to get anything to work.
>
> Please examine the source code of this home page (
> http://www.worldmerchantltd.com ), and see how Drumbeat inserted the
> html. I suspect that the problem lies there.
>
> A good book on HTML would probably solve my problem; do you recommend one?
>
> Thanks,
> Louis
>
> At 01:21 PM 5/23/00 -0700, you wrote:
> >Hi Louis,
> >There are actually several ways to call CGI scripts that count hits to a web
> >page, but this one is probably the most straight forward for your purposes,
> >that is if your web host supports SSI (Server Side Incudes) as well as REBOL:
> >
> ><!--#exec cmd="./cgi-bin/count.r" -->
> >
> >Otherwise you will probably want to use a REBOL script as an image. I
> >have'nt seen a REBOL counter that does this yet, so a few people would likely
> >be glad if you wrote one.
> >
> >--Ryan
> >
> >[EMAIL PROTECTED] wrote:
> >
> > > Dear REBOL Friends,
> > >
> > > What is the HTML code for activating a REBOL CGI script from a web
> > > page? Specifically I want to activate a hit counter.
> > >
> > > I know the answer must be simple, but I am trying to learn REBOL and HTML
> > > at the same time, and the answer eludes me.
> > >
> > > Thanks,
> > > Louis