There's a web site I visit that includes a document which is returned with content type text/plain and my version of Google Chrome used to display it in the browser window, as plain text. I like it that way. However, it has started to download the document now when I visit it, instead, meaning I have to open it with a text editor to view it. How can I make Chrome return to the old behaviour?
|
|
The reason is most likely that the server is telling the client (browser) to download the file. This is controlled (usually) via the HTTP header
(optionally with a filename). Check if the server serves your document with this header. To view the headers, you can download the page using a tool that preserves HTTP headers (e.g. Then post the headers here, or even better, the document's URL (if you can). |
|||
|
|
|
Can you verify that the Content-Type is actually 'text/plain'? You can do so in by going to View -> Developer -> Developer Tools and viewing the response headers on the file. I've seen situations where the Content-Type is unrecognized (i.e. 'plain/text'), and therefore causes the file to be downloaded rather than displayed. |
|||
|
|
|
You could try doing
Which should let you see the document in chrome regardless of the headers |
|||||||
|
|
|
I strongly recommend that you check your url with other browser if it's working so may be you are facing this google Chrome issue If your text is utf-8 encoded but has some lower-ascii chars in it (e.g., ESC) that might be triggering the issue. If other browsers act the same as Chrome you have to check if the MIME type really is plain/text, use a web sniffer to verify the header content. Just do a "CTRL + SHIFT + i" in Chrome, then go to the "Network" tab. |
||||
|
|
|
What Chrome plugins do you have installed? There is a similar question on SO: http://stackoverflow.com/questions/13381152/chrome-downloads-page-instead-of-showing The solution was an issue with this plugin:
|
|||
|
|