Re: [Catalyst] Sharing session and login data

2007-03-01 Thread Tiziano Faion
Il giorno mer, 28/02/2007 alle 14.14 +, Ian Docherty ha scritto: I might be asking the blindingly obvious, but do the two applications use the same domain? Yep sure;) in the afternoon i'm working on it.I'll let you know how i solve the problem. Thanks for suggestions -- Tiziano [EMAIL

AW: [Catalyst] Session problems with IE and cookies

2007-03-01 Thread Hartmaier Alexander
Hi! Most of the users of my cat apps use IE6/7, some (and I) Firefox. Some times in the past IE users couldn't login, deleting the cookies solved the problem, but it occurred only 3-4 times so I didn't investigate further. And what should I do against browser bugs?! -Alex -Ursprüngliche

[Catalyst] IE6/7 HTTP POST form problems

2007-03-01 Thread Hartmaier Alexander
Hi! Since about two month I'm fighting a problem some IE users have: on send of a form they don't receive an answer from the web server. Tcpdump shows that the packets arrive at the web server but apache2.2 just ignores them. I disabled https on the internal site to make debugging easier but

Re: AW: [Catalyst] Session problems with IE and cookies

2007-03-01 Thread Tobias Kremer
Zitat von Hartmaier Alexander [EMAIL PROTECTED]: Most of the users of my cat apps use IE6/7, some (and I) Firefox. Some times in the past IE users couldn't login, deleting the cookies solved the problem, but it occurred only 3-4 times so I didn't investigate further. And what should I do

Re: AW: [Catalyst] Session problems with IE and cookies

2007-03-01 Thread Octavian Rasnita
Today I had that issue. I couldn't login on my site even though I've tried for more times with 2 different user names. I have also tried closing and opening again the browser, but I still wasn't able to login. So I wanted to read the HTTP headers sent and received by IE before trying to

AW: AW: [Catalyst] IE6/7 HTTP POST form problems

2007-03-01 Thread Hartmaier Alexander
Did both already and didn’t find anything similar ;-( Which is the ‘official’ irc channel for those types of problems? Couldn’t find a hint to IRC on the apache webpage. @IE: without IE7 (I mean the awesome JS library by Dean Edwards http://dean.edwards.name/IE7/ not the browser) I would

Re: [Catalyst] Regex -- optional index.html

2007-03-01 Thread Boris Ćeranić
On 01/03/07, Bill Moseley [EMAIL PROTECTED] wrote: I want to match these two (not using Chained, btw): /training/webcasts/webcast_data/186/ /training/webcasts/webcast_data/186/index.html But not this: /training/webcasts/webcast_data/186/foo.html (snip) I tried these:

Re: [Catalyst] Regex -- optional index.html

2007-03-01 Thread Jon
How about this: m!^training/webcasts/webcast_data/(\d+)/(index.html|$)! On Thu, 2007-03-01 at 14:51 -0800, Bill Moseley wrote: I want to match these two (not using Chained, btw): /training/webcasts/webcast_data/186/ /training/webcasts/webcast_data/186/index.html But not this:

RE: [Catalyst] Session problems with IE and cookies

2007-03-01 Thread Dylan Vanderhoof
I'm not really sure how to write a test case for something that only fails using IE (as best I can tell). Any suggestions? -D -Original Message- From: Kieren Diment [mailto:[EMAIL PROTECTED] Sent: Thursday, March 01, 2007 1:39 AM To: The elegant MVC web framework Subject: Re:

Re: [Catalyst] Regex -- optional index.html

2007-03-01 Thread Bill Moseley
On Fri, Mar 02, 2007 at 12:08:42AM +0100, Boris ?erani? wrote: Regex('^training/webcasts/webcast_data/(\d+)/?(index.html)?$') matches: ../186/index.html : yes ../186/foo.html : yes ../186/ : yes ../186