CDNQuilter

msg:3364068 | 5:32 am on Jun 11, 2007 (gmt 0) |
My first guess would be that when you last viewed the page in Opera, the page was cached and so when you re-load the page(as opposed to refresh) it gets the page from cache instead. Opera's cache settings are under tools/preferences/advanced/history Play around with them to see if setting check documents to always fixes the problem. edited to fix spelling [edited by: CDNQuilter at 5:34 am (utc) on June 11, 2007]
|
Simone100

msg:3364074 | 5:41 am on Jun 11, 2007 (gmt 0) |
Thanks that helps a lot. It doesn't seem to be a cache issue? I edited the cache preferences and also looked to see if there was anything in advanced, nothing helped this. [edited by: Simone100 at 6:01 am (utc) on June 11, 2007]
|
Simone100

msg:3364107 | 7:05 am on Jun 11, 2007 (gmt 0) |
Maybe I should see if I can reset Opera back to a default in case I accidentally messed something up. Anyone now if opera has a reset to default? Thanks.
|
Simone100

msg:3364145 | 8:16 am on Jun 11, 2007 (gmt 0) |
I downloaded a new version 9.21 of Opera at opera.com/download for English version number 2 and I'm having the same problem. After deleting the first one and restarting the computer. So doesn't look like its me, look likes its Opera. Hoping someone will see this that knows what is wrong.
|
CDNQuilter

msg:3364365 | 2:45 pm on Jun 11, 2007 (gmt 0) |
The browser doesn't see your php. It only sees the html generated at the server by your php. So it has to be either a cache issue or something somewhere else in your code. To set the browser so that it always loads a fresh page, do not use the tools/advanced use tools/preferences/advanced/history Beside the Disk cache drop down box, click on Empty Cache and in the drop down box beside check documents select 'always' How many different pages are you choosing from? A random selection means that there is a definite chance that sometimes the same page as the one you are viewing will be chosen. If you have only a few pages to select from, then this will happen fairly frequently.
|
eelixduppy

msg:3364367 | 2:48 pm on Jun 11, 2007 (gmt 0) |
You can always force the browser to grab the new content. Try adding this to the top of your php script:
#taken from manual header("Cache-Control: no-cache, must-revalidate"); header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
|
Simone100

msg:3364842 | 10:54 pm on Jun 11, 2007 (gmt 0) |
I'll try it eelix. That would be the best way because I'm worried about other people that use opera's browsers not reading the code too. Its not a random issue picking the same item, this same thing happens on other codes that aren't picked randomly. [edited by: Simone100 at 10:55 pm (utc) on June 11, 2007]
|
Simone100

msg:3364853 | 11:15 pm on Jun 11, 2007 (gmt 0) |
What normal header am I supposed to remove? It says header has already been sent.
|
eelixduppy

msg:3364858 | 11:27 pm on Jun 11, 2007 (gmt 0) |
>>It says header has already been sent. That means exactly what it says, you have had headers sent out before you called this function. You must have the code I gave you at the very top of the script before any output is sent to the browser (this includes text, whitespace, etc...)
|
Simone100

msg:3364872 | 11:53 pm on Jun 11, 2007 (gmt 0) |
This is how I have it, no white space. <?php header("Cache-Control: no-cache, must-revalidate"); header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); $getfile = rand(1,8); $includefile = "file" . $getfile . ".txt"; include ($includefile); ?> Is it talking about conflicting with a html header at the top of the page? This is how the top of the page looks. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type" /> <title>starter</title> <style type="text/css"> .main { border: 5px solid rgb(0, 0, 0); margin: auto; width: 600px; } .body { margin: auto; display: block; width: 100%; height: 100px; } </style> </head> <body>
|
Simone100

msg:3367186 | 8:12 am on Jun 14, 2007 (gmt 0) |
Anyone know why my page is saying header has already been sent? Thanks a lot. <?php header("Cache-Control: no-cache, must-revalidate"); header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); $this = rand(1,8); $includefile = "file" . $this . ".txt"; include ($includefile); ?>
|
omoutop

msg:3367210 | 8:40 am on Jun 14, 2007 (gmt 0) |
it is just eelixduppy suggested. White spces, text or something is sent to the borwser. make sure that no include file outputs anything before headers. check whitespaces in your scrip[t, in includes, in everything check error reporting (you'll never know) if you still see this message, check again. Try testing this page in IE and Opera. If it works on one, then its cashe problem, else .... check again. Sorry, but there isnt much you can do in this case (at least none that i am familiar with). If anyone has any suggestion, please let us know.
|
Simone100

msg:3369188 | 12:13 am on Jun 16, 2007 (gmt 0) |
I put this in a page all by itself and not getting the double header message anymore. But this still does not change an item in opera without using opera's refresh button. All other browsers are fine. <?php header("Cache-Control: no-cache, must-revalidate"); header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); $this = rand(1,8); $includefile = "file" . $this . ".txt"; include ($includefile); ?> So this header didn't help. I really don't get it, doesn't opera honor php? By doing a page refresh when it first opens a page or comes back to a page from another page? Seeing if I can find an opera forum in these forums.
|
eelixduppy

msg:3369460 | 1:30 pm on Jun 16, 2007 (gmt 0) |
>> I really don't get it, doesn't opera honor php? The browser doesn't get the php code - only what the php outputs. >> Seeing if I can find an opera forum in these forums. [webmasterworld.com...] It definitely is a cache problem, however, I cannot figure out why.
|
|