Jump to content

Recommended Posts

Posted

I am uploading a website to a secure area and some of my links do not work. I was told that it is because someone created the site in Front page and secure server doesn't allow them so I need to write the links in binary code for the cgi scripts to work. Can someone help me figure this out? Thanks. :)

 

Posted

Maybe this will give you some insight. I looked at the properties for the *red-x-of-death* missing image at the top left of your page and find the path of:

>https://www.readysecure3.com/images/steel_small.gif

and the path of the page itself is:

>https://www.readysecure3.com/users/steelbuilt-inccom/binprices.cgi

Do you see it? Now check here:

>https://www.readysecure3.com/users/steelbuilt-inccom/images/steel_small.gif

Ah, there's that graphic!

 

Modify the paths to include the /users/steelbuilt-inccom/ portion and you should be good.

Hope that helps a bit.

Posted

I think I am changing the link then I upload it to the domain but I don't see it anywhere on the page. This is what it reads in the Src

>https://www.readysecure3.com/users/steelbuilt-inccom/images/steel_small.gif

but when I check the properties it reads that the code leaves out the users part.

Posted

Yep, it appears to still be dropping the /users/steelbuilt-inccom/ part out of the path.... I'm guessing that's Frontpage

 

A chop of your code looks like this:

><script language="javascript">
 Image1 = new Image(350,47)
 Image1.src = "/images/products_small.gif"

 Image2 = new Image(350,47)
 Image2.src = "/images/products_bins.gif"

 

Just a hunch, but try this, put two periods before the /images directory in that path so it looks like:

><script language="javascript">
 Image1 = new Image(350,47)
 Image1.src = "../images/products_small.gif"

 Image2 = new Image(350,47)
 Image2.src = "../images/products_bins.gif"

 

I don't know how to do that in Frontpage, since I don't use it, but maybe somebody else can chip in with a trick. The two dots force the path to be relative to root rather than relative to the active page's directory.

Posted

No it is still dropping that part of the script. Yes it is Frontpage- I didn't make the site but just have to load it to secure area and make links work. i have never used Frontpage.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...