[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] Miva on RaQ3 - problem! (SOLVED!!!)
- Subject: Re: [cobalt-users] Miva on RaQ3 - problem! (SOLVED!!!)
- From: Liz <daldog@xxxxxxxx>
- Date: Wed Mar 1 15:35:18 2000
In case anyone's interested or runs into the same problem.....there was
nothing wrong this entire time with Miva Empresa on a RaQ3. As it turned
out I found multiple instances of typos in MivaMia's (v3.64) scripts
examples, which they offered for running on a "real" server. Being a
newbie to Miva I took their instructions verbatim where it said....
---
dissectsite.mv - report on components of a web document
PROCEDURE FOR INSTALLING THIS ACTIVE DOCUMENT:
1. Copy the sample active document "dissectsite.mv" to
the directory where Miva active documents are stored.
2. The active document should run!!
---
Should run??? NOT! The example scripts had duplicate ampersands (&&)
instead of single ampersands throughout the script, thus why the script
wouldn't execute on the RaQ3. Obviously a slight HTML booboo on Miva's part.
Here's a section of what Miva included in their "dissectsite.mv"
script...after one clicked on the link "View the source code display" in
Miva Mia...
<FORM ACTION = "&&[ documenturl ]findlinks" METHOD = "POST">
This is what it should have been...
<FORM ACTION = "&[ documenturl ]findlinks" METHOD = "POST">
Liz