I am hosting a cache manifest file for a friend, because his server serves manifest files as plain text and he can't change it. He's hosting the rest of his pages himself, on his server. So his <html> tag has a manifest attribute that is a complete URL that points to my server.

But it doesn't seem to be working. Is this because the cache manifest file is from a different host as the web page that it is in?

link|improve this question

2  
He could use PHP to serve up the cache.manifest with the correct MIME type. Ex set manifest="manifest.php" then in manifest.php you only need two lines: header('Content-Type: text/cache-manifest'); readfile('cache.manifest'); – dosboy Apr 25 '11 at 6:24
feedback

1 Answer

up vote 3 down vote accepted

The manifest attribute can point to an absolute URL or relative path, but an absolute URL must be under the same origin as the web application

Source.

link|improve this answer
Grumble grumble grumble. – roufamatic Jul 14 '11 at 18:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.