phpgroupware-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Phpgroupware-users] VFS and M$ issues


From: Daryl L. L. Houston
Subject: Re: [Phpgroupware-users] VFS and M$ issues
Date: Wed, 17 Dec 2003 12:52:52 -0500
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.5) Gecko/20031007

To see what headers are being sent, go out and look for a program called Sam Spade. I think there's a Web version in addition to the application itself. It allows you to see what headers are being sent. It appears that the code you've pasted attempts to send the problem headers only if the browser's not IE except that the pragma: no-cache header is sent before the test. Weird.

D



Marco Gaiarin wrote:

Mandi! Daryl L. L. Houston
 In chel di` si favelave...

You'd just look for header() lines in the code for whatever module you're working on.

I've looked at phpwebhosting directory, and in phpgwapi directory, and
i've found only this:

--- class.browser.inc.php.orig  Wed Dec 17 18:30:15 2003
+++ class.browser.inc.php       Wed Dec 17 18:35:52 2003
@@ -283,10 +283,16 @@
if($nocache)
                               {
-                                       header('Pragma: no-cache');
+                                       if($this->get_agent() != 'IE')
+                                       {
+                                               header('Pragma: no-cache');
+                                       }
                                       header('Pragma: public');
                                       header('Expires: 0');
-                                       header('Cache-Control: must-revalidate, 
post-check=0, pre-check=0');
+                                       if($this->get_agent() != 'IE')
+                                       {
+                                               header('Cache-Control: 
must-revalidate, post-check=0, pre-check=0');
+                                       }
                               }
                       }
               }


but does nothing. ;(


There's some other place to look at?!
How can i display the header lines of an http request?!

Tnx.







reply via email to

[Prev in Thread] Current Thread [Next in Thread]