Contact Us Forum Rules Search Archive
WebProWorld Part of WebProNews.com
Page One Link To Us Edit Profile Private Messages Archives FAQ RSS Feeds  
 

Go Back   WebProWorld > Site Design > Graphics & Design Discussion Forum
Subscribe to the Newsletter FREE!


Register FAQ Members List Calendar Arcade Chatbox Mark Forums Read

Graphics & Design Discussion Forum Post your graphics design questions/comments/ideas in here. Ask questions, post tutorials, discuss trends and best practices. Sub-forum for website accessibility and usability.

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 10-23-2003, 12:15 AM
minstrel's Avatar
WebProWorld 1,000+ Club
 

Join Date: Jul 2003
Location: Ottawa, Canada
Posts: 3,619
minstrel RepRank 0
Default HELP! Bizarre page problem is driving me nuts!

My home page at http://www.psychlinks.ca/index.htm currently contains the following cell:

<TD width="122" height="53" valign="baseline" align="center" xpos="64">
[img]images/rsac.gif[/img]</TD>

which references this image:
.

Using Frontpage (although inserting the code manually doesn't make any difference), I've been trying to update this image to the ICRA image, as follows:

<TD width="131" height="34" valign="baseline" align="center">
[img]images/icra.gif[/img]</TD>

which contains this image:
.

However, each time I publish the new page, it gets transferred as this:

http://www.psychlinks.ca/index2.htm

Note the image and link is missing - check the source for the page and the reference to the image is stripped out.

What is happening here? Is it poltergeists again? I hate this page...
Reply With Quote
  #2 (permalink)  
Old 10-23-2003, 12:47 AM
Jurgen's Avatar
WebProWorld Pro
 

Join Date: Sep 2003
Location: Castle Rock, Colorado
Posts: 149
Jurgen RepRank 0
Default

I checked both pages and all shows up just fine. The image and the links are there. hmmmm!

Jurgen
Reply With Quote
  #3 (permalink)  
Old 10-23-2003, 12:56 AM
minstrel's Avatar
WebProWorld 1,000+ Club
 

Join Date: Jul 2003
Location: Ottawa, Canada
Posts: 3,619
minstrel RepRank 0
Default curiouser and curiouser...

Quote:
Originally Posted by Jurgen
I checked both pages and all shows up just fine. The image and the links are there. hmmmm!
That is too bizarre... not only do I not see the image but when I look at the source there is no code for the image:

<TD width="131" height="34" valign="baseline" align="center">
</TD>

I've been playing with this for two days... I'm out of ideas...
Reply With Quote
  #4 (permalink)  
Old 10-23-2003, 01:00 AM
minstrel's Avatar
WebProWorld 1,000+ Club
 

Join Date: Jul 2003
Location: Ottawa, Canada
Posts: 3,619
minstrel RepRank 0
Default More data...

Okay... if I use Frontpage to open the version of the page on my server and check the code, it is correct.

But if I ask MSIE to open the page, the image is missing and when I click on "View source" I get what I just posted above... with the image info stripped out.

It IS poltergeists, right?
Reply With Quote
  #5 (permalink)  
Old 10-23-2003, 02:27 AM
WebProWorld Veteran
 

Join Date: Jul 2003
Location: Bristol, UK
Posts: 965
carbonize RepRank 0
Default

Try deleting your temporary internet files and see if it's not a cached problem.

Oh and center the page as it leaves a big green space to the right on 1024x768.
__________________
Carbonize
Reply With Quote
  #6 (permalink)  
Old 10-23-2003, 02:34 AM
minstrel's Avatar
WebProWorld 1,000+ Club
 

Join Date: Jul 2003
Location: Ottawa, Canada
Posts: 3,619
minstrel RepRank 0
Default

I have deleted the temp internet files (3 times in fact)... doesn't make a difference...
Reply With Quote
  #7 (permalink)  
Old 10-23-2003, 02:39 AM
redcircle's Avatar
WebProWorld Veteran
 

Join Date: Aug 2003
Location: Grand Rapids, MI USA
Posts: 553
redcircle RepRank 0
Default

when all else fails.. reboot.
Reply With Quote
  #8 (permalink)  
Old 10-23-2003, 03:01 AM
minstrel's Avatar
WebProWorld 1,000+ Club
 

Join Date: Jul 2003
Location: Ottawa, Canada
Posts: 3,619
minstrel RepRank 0
Default

Quote:
Originally Posted by redcircle
when all else fails.. reboot.
Done that too... no improvement.

The bizarre thing is that the local files both display correctly and index.htm displays correctly; index2.htm does not, and the source code shows no link to the image file, even though the version of that page on my server contains the correct code.
Reply With Quote
  #9 (permalink)  
Old 10-23-2003, 07:02 AM
carju1's Avatar
WebProWorld 1,000+ Club
 

Join Date: Jul 2003
Location: Wettest West Wales, UK
Posts: 1,133
carju1 RepRank 0
Default

David,

It worked fine for me so it is definately some sort of cache problem.

OK so you've deleted all the local cache stuff which basically leaves your ISP's cache. I had a similar problem with a client a while back (It worked fine for me but the client couldn't see the changes) and it was their ISP's cache.

The solution I came up with was add a no cache to the index.htm page:
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
<meta HTTP-EQUIV="Expires" CONTENT="-1">
and upload it.

I then locally renamed index.htm to default.htm and uploaded. Viewed that page on-line a few times then asked for index.htm. Eventually the ISP will realise index.htm doesn't exist. When this happens change default.htm back to index.htm and re-upload.

Voila - your ISP will have the new index.htm page with the no-cache and any changes you make will stay made and not cached.

Long, complex and a pain in the 'arm' but it will work

Regards
Julian
Reply With Quote
  #10 (permalink)  
Old 10-23-2003, 09:31 AM
WebProWorld 1,000+ Club
 

Join Date: Jul 2003
Posts: 1,087
Sualdam RepRank 0
Default

If it is your ISP's proxy (mine does it and caches pages for up to about 24 hours), try this.

Assuming your page is 'index.htm' type in the Address bar:

http://www.psychlinks.ca/index.htm?1

and see what happens.

It should force the loading of a new page from the server and not the cached one (if it is that).

If it works, change the '1' to other numbers to test your page repeatedly.
__________________
Sualdam
Reply With Quote
  #11 (permalink)  
Old 10-23-2003, 10:52 AM
minstrel's Avatar
WebProWorld 1,000+ Club
 

Join Date: Jul 2003
Location: Ottawa, Canada
Posts: 3,619
minstrel RepRank 0
Default

Quote:
Originally Posted by carju1
OK so you've deleted all the local cache stuff which basically leaves your ISP's cache.

The solution I came up with was add a no cache to the index.htm page:
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
<meta HTTP-EQUIV="Expires" CONTENT="-1">
and upload it.

I then locally renamed index.htm to default.htm and uploaded. Viewed that page on-line a few times then asked for index.htm. Eventually the ISP will realise index.htm doesn't exist. When this happens change default.htm back to index.htm and re-upload.
Thanks, Julian: I'll give this a shot.
Reply With Quote
  #12 (permalink)  
Old 10-23-2003, 10:55 AM
minstrel's Avatar
WebProWorld 1,000+ Club
 

Join Date: Jul 2003
Location: Ottawa, Canada
Posts: 3,619
minstrel RepRank 0
Default

Quote:
Originally Posted by Sualdam
Assuming your page is 'index.htm' type in the Address bar:

http://www.psychlinks.ca/index.htm?1

It should force the loading of a new page from the server and not the cached one (if it is that).

If it works, change the '1' to other numbers to test your page repeatedly.
I just tried this now, Sualdam: for numbers 1-12 at least it made no difference...
Reply With Quote
  #13 (permalink)  
Old 10-23-2003, 11:05 AM
WebProWorld 1,000+ Club
 

Join Date: Jul 2003
Posts: 1,087
Sualdam RepRank 0
Default

My immediate thought would be that it can't be the cache - but there's nothing else it could be!

Odd :(
__________________
Sualdam
Reply With Quote
  #14 (permalink)  
Old 10-23-2003, 01:43 PM
WebProWorld 1,000+ Club
 

Join Date: Jul 2003
Location: Western Australia
Posts: 2,105
matauri RepRank 0
Default

David, if I put in your orignal url I get your new image. If I type in this one :
http://www.psychlinks.ca/index.htm?1 that Sualdam suggested...I get the old image.

Its got to be a ISP side cache prob I think.

Good luck anyway :-)


Cindy
__________________
Web Development Community ::: Forum ::: Library

It' time for Progressive Web & IT Development!
Reply With Quote
  #15 (permalink)  
Old 10-23-2003, 03:32 PM
WebProWorld Veteran
 

Join Date: Jul 2003
Location: Bristol, UK
Posts: 965
carbonize RepRank 0
Default

index.htm is old image, index2.htm is the new image.

I've checked both on 2 OS's, 2 resolutions, and 4 browsers and both pages work fine on all. The problem has to be your ISP's cache. Try uploading it again under a different name so that it's not cached.
__________________
Carbonize
Reply With Quote
  #16 (permalink)  
Old 10-23-2003, 09:50 PM
minstrel's Avatar
WebProWorld 1,000+ Club
 

Join Date: Jul 2003
Location: Ottawa, Canada
Posts: 3,619
minstrel RepRank 0
Default Thanks!

Thanks everyone who checked the pages for me and for your suggestions... I was thinking that I must be missing something here...

I'll try the suggestions and then contact my tech support people if that doesn't pan out.
Reply With Quote
  #17 (permalink)  
Old 10-26-2003, 01:27 AM
WebProWorld Veteran
 

Join Date: Aug 2003
Location: California,USA
Posts: 373
drummin RepRank 0
Default

Hi minstrel,
Looks to me like you still have the old code on your site. I copied this form their.

<TD width="122" height="53" valign="baseline" align="center" xpos="64">
[img]images/rsac.gif[/img]</TD>

It seems to me that you could just edit the file using FTP, open the file with edit. Highlight and replace the cell above with the new one, and save and reload. View the page and hit Ctrl F5 to dump the cache.
Maybe this too simple an answer, but that’s what I would do.
Drummin
__________________
Hello everyone! Newbie. Self-taught. Loves writing web-code.
Reply With Quote
  #18 (permalink)  
Old 10-26-2003, 01:52 AM
minstrel's Avatar
WebProWorld 1,000+ Club
 

Join Date: Jul 2003
Location: Ottawa, Canada
Posts: 3,619
minstrel RepRank 0
Default

Quote:
Originally Posted by drummin
Hi minstrel,
Looks to me like you still have the old code on your site. I copied this from there.

<TD width="122" height="53" valign="baseline" align="center" xpos="64">
[img]images/rsac.gif[/img]</TD>

It seems to me that you could just edit the file using FTP, open the file with edit. Highlight and replace the cell above with the new one, and save and reload. View the page and hit Ctrl F5 to dump the cache. Maybe this too simple an answer, but that’s what I would do.
Actually, you are viewing http://www.psychlinks.ca/index.htm and you're correct about the code there. That's because when I made the substitution of the graphic, it failed to display (at least on my computer, with caches cleared, etc.; other people apparently don't have this problem - see posts above), so I reloaded the original graphic for the default page on the site. The (new) altered version is at http://www.psychlinks.ca/index2.htm.

Hitting Refresh or F5 doesn't work - I haven't yet contacted tech support about an ISP cache because I've been working on other sections of the website but I suspect that is the next logical step...

As for simple FTPing, with some exceptions that can be a bad idea in FrontPage, because it doesn't update the local links and can result in a corrupted website. Thus, the best general advice for people publishing in FrontPage is "don't" - use one of the publishing modes available in FrontPage itself.

So, basically, it seems it isn't that simple, although it should be... (sigh).

Thanks anyway for taking the time to look at the page... I do appreciate your efforts and the efforts of everyone who did so.

I still think it's poltergeists... ;-)
Reply With Quote
  #19 (permalink)  
Old 10-26-2003, 02:16 AM
WebProWorld Veteran
 

Join Date: Aug 2003
Location: California,USA
Posts: 373
drummin RepRank 0
Default

So,
<TD width="122" height="53" valign="baseline" align="center" xpos="64">
[img]images/rsac.gif[/img]</TD>
Is the original at http://www.psychlinks.ca/index.htm


<TD width="131" height="34" valign="baseline" align="center">
[img]images/icra.gif[/img]</TD>
http://www.psychlinks.ca/index2.htm
Which is what you want, right?

And at http://www.psychlinks.ca/index.htm?1 you see the original, right?
Even if as Sualdam says,
"Assuming your page is 'index.htm' type in the Address bar:

http://www.psychlinks.ca/index.htm?1

and see what happens.

It should force the loading of a new page from the server and not the cached one (if it is that)."

I you still have
<TD width="122" height="53" valign="baseline" align="center" xpos="64">
[img]images/rsac.gif[/img]</TD>

as the original http://www.psychlinks.ca/index.htm

Loaded as index, so rebooting is reloading the old file?

Assuming you have both upload, could you delete “index.htm” and rename “index2”?

Hey, maybe I’ll leave this alone. I was only trying to help. I guess I don’t know what I’m talking about.
Reply With Quote
  #20 (permalink)  
Old 10-26-2003, 02:22 AM
WebProWorld Veteran
 

Join Date: Jul 2003
Location: Bristol, UK
Posts: 965
carbonize RepRank 0
Default

OH the joys of being a frontpage user hey Minstrel :p

Can't you simply ftp in, change the files code remotely, then use notepad to change the locally stored copy?
__________________
Carbonize
Reply With Quote
  #21 (permalink)  
Old 10-26-2003, 02:33 AM
minstrel's Avatar
WebProWorld 1,000+ Club
 

Join Date: Jul 2003
Location: Ottawa, Canada
Posts: 3,619
minstrel RepRank 0
Default

I'm telling you.... it's poltergeists... possibly FrontPage poltergeists, but nonetheless... ;-)

None of the logical explanations make any sense, including the "ISP cache one", because I have in fact renamed files, uploaded as different names, etc., etc. No matter what I do, the pages display correctly locally and when other people download the pages, but not when I download the page with icra.gif to my computer. I have changed the names around on the two index pages - I still get the problem.
Reply With Quote
  #22 (permalink)  
Old 10-26-2003, 03:27 AM