Forum Moderators: phranque
In the case of a blank page, you might visit the HTML Validator link on [w3c.org...] and see if your page validates. It's entirely possible a code error could be the culprit.
It's also possible AOL cannot connect with your server or the IP address is being banned somehow, although I've no info on how to find that out. In the past, Ive worked for a company that hosted one particular site that had nightmare problems with AOL customers getting to their site, and no one ever found a solution to this.
1. Case sensitivity - many servers are configured to locate files regardless of case structure, but I just encountered one that doesn't. Index.html and index.html may or may not be considered two different files. This is particulary important or linking images - if you put logo.jpg in your web page and the file is Logo.jpg, it may give you the red X.
2. Image path - some WYSIWYG editors, such as the Netscape Editor, Front Page, and others, will insert your LOCAL PATH in the page instead of just the file name. For a picture, for example:
<img src="C:\Documents and Settings\My Pictures\logo.jpg">
Shows it is going to look for the image on your computer, in Documents and Settings->My Pictures. When you upload it to the server, the directory C:\Documents and Settings\My Pictures doesn't exist on the server. So check your image linking code, it sohuld read
<img src="logo.jpg" width="100" height="50" border="0" alt="logo">
(width, height, border, alt may vary.)
Also make sure the image file name is EXACTLY the same as what's in your page. If your page is looking for logo.jpg and the file is named Logo.jpg, it may still give you the X.
3. Upload format - When uploading PAGES, select the ASCII button in WS_FTP. When uploading PICTURES, select the Binary button. That's all you need to know about that. :-)
And yes, get that link in your profile, someone will probably be able to spot the problem right off.
For best results always use all lower case for filenames. It will cause you less problems in the end.
Validate your HTML code at [validator.w3.org...]
Check all your on-site links using a program like Xenu LinkSleuth - it can find a lot of problems.
rocknbil
In regards to what you said about the logo. A very nice friend of mine made the log for me and I just copied and pasted the info she gave me. I noticed now when I looked at it that it says img id=log instead of the logo. Does that make a difference?
For now, I've just been using Wordpad and recently a free htmlkit. My husband did give me Frontpage for a present but haven't even gotten to attempting to learn it yet. I'm definitely not even on the same radar with you guys here :) I only have a high school edu., and have only taught myself html, etc. from reading books and asking people questions and having them be nice enough to answer for me. I definitely try to pick people's brains to learn from them:)
What you said about the image paths is very helpful and I'm sure when I venture into Frontpage.....I'll have more questions for you here.:)
I did read somewhere about the upoading ASCII and Binary. With the htmlkit, it did all that on it's own and I didn't have to do anything about it.:)
As for: And yes, get that link in your profile, someone will probably be able to spot the problem right off. I'm assuming you mean the link to my site? I didn't think people wanted you to do that at forums? I'd be happy to put a link, but I'm not the most thick-skinned person lol and probably don't want people to trash my site. lol Constructive criticism is ok, but sometimes people can be pretty rough.
g1smd
Thank you for your help, too.:) Achieving the w3.org's blessing is on hold for a little bit til I learn more.:) Some of the affiliate links don't do well with it and I'm not brave enough to change them without fearing I'll mess them up. A very nice affiliate manager actually downloaded Xenu LinkSleuth for my site but I haven't had the time to really look at it yet. I intend to, though.
With my site, my husband's and I made a site for a niece of mine who's a teacher, I've gotten behind on quite a bit of things lately. My Dad's been recently diagnosed with Parkinson's and has had some other health issues so I've been dealing with those and trying to play catch up with the rest. :)
Thank you again to all of you. I really appreciate your help and the fact that you haven't talked down to me or anything either:) I realize my questions must sound like pretty basic things to all of you who are a lot more experienced than me.:)