Trying to get a simple command that displays a webpage with a flash file in it. `cat /path/to/file.html` gives me a blank screen, as does `curl http://mydomain.com/path/to/file.html%60. However, running curl to an old url that provides a link to the page does load the movie.
Any idea what's up? ___________________ Ben Jackson Diretor de Desenvolvimento
ben@incomumdesign.com http://www.incomumdesign.com
On 17/11/2005, at 15:05, Benjamin Jackson wrote:
Trying to get a simple command that displays a webpage with a flash file in it. `cat /path/to/file.html` gives me a blank screen, as does `curl http://mydomain.com/path/to/file.html%60.
Try: echo '<meta http-equiv="refresh" content="0; tm-file:///path/to/ file.html">'
[...] Any idea what's up?
It should work -- but if the page reference resources (i.e. the movie is embedded!?!) there's likely to be a base URL problem, and there's also a problem with webkit not wanting to load file://-resources before first jumping through the tm-file://-scheme.
So redirecting to the page (through tm-file://) is generally better, if resources are referenced from the page.