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: Benoit Hamet
Subject: Re: [Phpgroupware-users] VFS and M$ issues
Date: Thu, 18 Dec 2003 09:49:58 +0000

Sorry too be so late,
But I made this correction in a patch posted on Savannah. In
filemanager/index.php and in the class phpgwapi.browser. I think that most of
these patches were commited before Savannah was breaked...

I just repost them here.

Caeies.

PS: I perhaps forget one of them, and can't test them against a vanillia
phpgwapi since the cvs seems down (the savannah one).
Be carefull that some part of this patch were applied and some were forgot
(like the ! in the file2mime() function).



Daryl L. L. Houston (address@hidden) wrote:
>
> 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.
> >
> >
> >
>
>
>
>
> _______________________________________________
> Phpgroupware-users mailing list
> address@hidden
> http://mail.gnu.org/mailman/listinfo/phpgroupware-users
>

Attachment: patch-browser.diff
Description: Text document

Attachment: patch-mime_magic.diff
Description: Text document

Attachment: patch-filem-dlwnd-name2.diff
Description: Text document


reply via email to

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