PDA

View Full Version : links


thea
10-04-2001, 09:58 AM
can someone tell me how to change the links to my files in file manager?

Bob
10-04-2001, 10:15 AM
Hi again Thea,

If you will visit your CNC, http://www.yourdomain.com/CNC/fileman.cgi and navigate to your /www directory. Once there locate the .htm file you wish to modify and then place a check in the check box loacated adjacent to it.

Then in the drop down menu located near the bottom of the page select "Edit selected File" on the next page you will see the raw html code for that page.

Look for the following (as an example):

<IMG height=97 alt="vsmallcrest.jpg (5047 bytes)"
src="history_files/vsmallcrest.jpg" width=116></TD>
<TD><IMG height=86 alt="AmroNet.jpg (7359 bytes)"
src="history_files/AmroNet.jpg" width=354>


Now change it to the following:

<IMG height=97 alt="vsmallcrest.jpg (5047 bytes)"
src="/vsmallcrest.jpg" width=116></TD>
<TD><IMG height=86 alt="AmroNet.jpg (7359 bytes)"
src="/AmroNet.jpg" width=354>


Save the changes then take a look at the actual web page in your browser, remembering to hit reload/refresh to see the changes.

What we have done is changed one little aspect of the code:

Original code: "src="history_files/AmroNet.jpg"
Modified code: "src="/AmroNet.jpg"

Now you will need to do this with each of your image links, but once you have done one or two you will find it to be fairly easy.

I hope this helps :)
-Bob