Gossamer Forum
Home : Products : DBMan : Customization :

Can I use SSI to load DBMan in my page

Quote Reply
Can I use SSI to load DBMan in my page
I almost kicked the dog.

I got this far... www.nmcontractors.com/cgi-bin/upforbid/db.cgi

But then it ocurred to me to try "exec cgi="www.nmcontractors.com/cgi-bin/upforbid/db.cgi" Had to leave off some characters 'cause they weren't accepted in this post -

But I get [an error occurred while processing this directive]

Any help?

Lance

Quote Reply
Re: Can I use SSI to load DBMan in my page In reply to
Well I got it to work by removing the "www" but is there a way to go this so that all the pages load in my page template?

After logging in it's just the default DBMan page.


L.

Quote Reply
Re: Can I use SSI to load DBMan in my page In reply to
Here is an example of an iframe that you can place in your html page. It will automatically "contain" the dbman program. This means that no matter what link they click onto it will load into this frame on the page without going to another separate page.

<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body bgcolor="#FFFFFF" text="#000000">
<iframe src="www.yourdomain.net/cgi-bin/dbman/db.cgi" name="dbman"width="500" height="400" scrolling="auto" frameborder="0" marginwidth="10" marginheight="10" ></iframe>
<layer src="www.yourdomain.net/cgi-bin/dbman/db.cgi" name="dbman"width="500" height="400" ></layer>
</body>
</html>

Cher
Quote Reply
Re: Can I use SSI to load DBMan in my page In reply to
Thanks for the reply.

Tried it but I get a "this page can not be displayed.

L.

Quote Reply
Re: Can I use SSI to load DBMan in my page In reply to
Wait!

I Love You!

I created an Iframe in dreamweaver and just gave it the path to the db and IT Works!

I'm to worn out to say more.

Thank You very much.

L.

Quote Reply
Re: Can I use SSI to load DBMan in my page In reply to
You should also CHECK the browser and version, then use ILAYER for Netscape 2.02 - 4.73 since IFRAME only works in IE. IFRAME is primarily only supported in IE.

Although if a large majority of your web visitors use IE, then it is no big deal...if not, better provide alternative views, as those web visitors who use Netscape will never visit your site again.

Regards,

Eliot Lee Wink
http://anthrotech.com/
Quote Reply
Re: Can I use SSI to load DBMan in my page In reply to
Arrgghh!

What's an Ilayer?

Quote Reply
Re: Can I use SSI to load DBMan in my page In reply to
Go to Netscape's development site: (DevEdge)

http://developer.netscape.com/

and search for javascript or ILAYER.

Pick up an HTML or Javascript book while you're at it.

The Dummies series is very helpful....Wink

Regards,

Eliot Lee Wink
http://anthrotech.com/
Quote Reply
Re: Can I use SSI to load DBMan in my page In reply to
In Reply To:
The Dummies series is very helpful....
I resemble that remark!

Thanks, I figgered it out.


Lance