Re: Cached pages
Jorge Arellano Cid <[email protected]>
| Newsgroups | gmane.comp.web.dillo.devel |
|---|---|
| Message-ID | <[email protected]> |
Hi Nick, On Sun, Apr 03, 2016 at 08:31:14PM +0100, Nick Warne wrote: > Hi all, > > I first used 'dillo' many years go on a 486 running Mandrake Linux around > 2004. Since then, forgot all about it. Until now - it is brilliant. Good to hear you like it, thanks. > > Anyway, to the point. I run my own web server, and while debugging CGI perl > scripts etc. dillo somehow caches the results from the output produced. > > Usually shift+[refresh] drops the cache and gets the new page, but the only > way I get get dillo to do this is exit, and restart (no big deal with a 0.02 > second start-up time :) ) > > Ideas? Strange, I just tested this trivial cgi script and a simple reload does the trick (button press or Ctrl-r). Does it work for you? -- Cheers Jorge.- -- #!/bin/sh # # Simple bash CGI script. # Return current time and date # # # HTTP doc type (2 newlines needed). echo "Content-type: text/html" echo # HTML content echo " <html><body> <PRE> `/bin/date` </PRE> </body></html> "