Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
all browsers work exept Chrome ?
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Plusnet Community
- :
- Forum
- :
- Help with my Plusnet services
- :
- Everything else
- :
- all browsers work exept Chrome ?
all browsers work exept Chrome ?
21-10-2010 6:06 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Sorry of this is sopmething really obvious but as you will tell from my web space I am a complete novice on web desgin....I have a problem where the naviagtion buttons on my sites dont work in Chrome, they work in every other browser ! if I try and naviagte to another page of the site i get an Authentication Required box, URL of site is www.charliebrownsdiner.co.uk if anybody has any advice I would be very grateful

Message 1 of 6
(8,821 Views)
5 REPLIES 5
Re: all browsers work exept Chrome ?
21-10-2010 7:27 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Even with Firefox trying to go beyond the front page (eg to Menu) brings up several FTP authorisation boxes for me. If I close each of these a page of text appears with menu image. However the (HTML) menu buttons are empty.
Have you set directory and file permissions appropriately so that the server can enter the charlies_files directory and read the image files?
At the moment it is possible to list the files in the charlies_files directory. Allowing that is a security risk.
Have you set directory and file permissions appropriately so that the server can enter the charlies_files directory and read the image files?
At the moment it is possible to list the files in the charlies_files directory. Allowing that is a security risk.
David
Message 2 of 6
(455 Views)
Re: all browsers work exept Chrome ?
22-10-2010 3:12 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Hi
I think the main problem is that you have used Microsoft Word to produce the pages. The outcome of this is that the code is very convoluted and about 100 times longer and more complicated than it needs to be. The authorisation problems arise from trying to load the images from the server via FTP. This is not the normal way of calling images into an HTML document. I would suggest that you get hold of a purpose made html editor and start again from scratch, I don't think the pages you have written are recoverable, SORRY!
You could try CoffeeCup Free HTML Editor http://webdesign.about.com/od/freewebeditors/fr/coffeecup-free-html-editor.htm or Kompozer http://kompozer.net/
I can't say that I have tried either of these but a quick Google will find others.
Just for info I created an html document with one image and four words using Microsoft Word, it made a document 501 lines long :o. The same document from Dreamweaver was just 12 lines long ... For info your home page is 2310 lines long it should probably be about 40 (less if you use CSS for the layout and styling). It may be worthwhile looking at http://www.w3schools.com/web/web_html.asp or similar.
Good Luck
I think the main problem is that you have used Microsoft Word to produce the pages. The outcome of this is that the code is very convoluted and about 100 times longer and more complicated than it needs to be. The authorisation problems arise from trying to load the images from the server via FTP. This is not the normal way of calling images into an HTML document. I would suggest that you get hold of a purpose made html editor and start again from scratch, I don't think the pages you have written are recoverable, SORRY!
You could try CoffeeCup Free HTML Editor http://webdesign.about.com/od/freewebeditors/fr/coffeecup-free-html-editor.htm or Kompozer http://kompozer.net/
I can't say that I have tried either of these but a quick Google will find others.
Just for info I created an html document with one image and four words using Microsoft Word, it made a document 501 lines long :o. The same document from Dreamweaver was just 12 lines long ... For info your home page is 2310 lines long it should probably be about 40 (less if you use CSS for the layout and styling). It may be worthwhile looking at http://www.w3schools.com/web/web_html.asp or similar.
Good Luck
Message 3 of 6
(455 Views)
Re: all browsers work exept Chrome ?
03-11-2010 2:33 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
I would agree with Cign with this. The HTML is this site makes little sense to me, it could be much more straight forward than it is currently.
When building any site it is a good idea to have several browsers installed on your machine and a local webserver. In my case I use apache (you can run this on the local computer), IE, Firefox and Chrome.
Routinely save your work and refresh each browser so you can spot the issues straight away and long before the site goes live. Two monitors or a second computer/laptop on the network makes this process easier.
You will quickly learn what html tags etc. behave differently in each browser, for example the paragraph tag <p> will cause Firefox to jump two lines instead of one in IE. For this reason I avoid it completely and use the break tag instead <br>
I cannot comment on various HTML editors as I only use Dreamweaver but I do know that Microsoft Word, if anything like Front Page should be avoided like the plague.
When building any site it is a good idea to have several browsers installed on your machine and a local webserver. In my case I use apache (you can run this on the local computer), IE, Firefox and Chrome.
Routinely save your work and refresh each browser so you can spot the issues straight away and long before the site goes live. Two monitors or a second computer/laptop on the network makes this process easier.
You will quickly learn what html tags etc. behave differently in each browser, for example the paragraph tag <p> will cause Firefox to jump two lines instead of one in IE. For this reason I avoid it completely and use the break tag instead <br>
I cannot comment on various HTML editors as I only use Dreamweaver but I do know that Microsoft Word, if anything like Front Page should be avoided like the plague.
Message 4 of 6
(455 Views)
Re: all browsers work exept Chrome ?
04-11-2010 5:05 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Yes, that code is horrible, and it is all Word's fault! I can vouch for Kompozer, which does produce fairly neat code.
To get the images working in the short term, you could open each html file in a text editor (e.g. Notepad). Anywhere you find a link to an image, like this one,
change it to
The easiest way to do it would be to do a Find and Replace to change all the instances of "ftp://ftp.plus.net/htdocs/charlies" to ".."
Might still be easier to start from scratch, though! Not only will a proper editor produce better code, the neater HTML will be easier to read alongside the preview, so it will be easier to learn a bit about what the code is doing.
To get the images working in the short term, you could open each html file in a text editor (e.g. Notepad). Anywhere you find a link to an image, like this one,
Quote <img width=984 height=311 src="ftp://ftp.plus.net/htdocs/charlies/charlies_files/image4011.gif" v:shapes="_x0000_s1025">
change it to
Quote <img width=984 height=311 src="../charlies_files/image4011.gif" v:shapes="_x0000_s1025">
The easiest way to do it would be to do a Find and Replace to change all the instances of "ftp://ftp.plus.net/htdocs/charlies" to ".."
Might still be easier to start from scratch, though! Not only will a proper editor produce better code, the neater HTML will be easier to read alongside the preview, so it will be easier to learn a bit about what the code is doing.
Message 5 of 6
(455 Views)
Re: all browsers work exept Chrome ?
04-11-2010 5:13 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
If you want to work with websites, knowing HTML is a must. You absolutely have to understand what the code is doing. Best way is to start building sites with Microsoft Notepad. I know that sounds mad but that is how I started many years ago before discovering FrontPage and then even better, Dreamweaver.
Those early experiences with Notepad gave me an invaluable insight into HTML which is still incredibly useful even when working with the best web authoring software like Dreamweaver.
Those early experiences with Notepad gave me an invaluable insight into HTML which is still incredibly useful even when working with the best web authoring software like Dreamweaver.
Message 6 of 6
(455 Views)
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Plusnet Community
- :
- Forum
- :
- Help with my Plusnet services
- :
- Everything else
- :
- all browsers work exept Chrome ?