I had an issue with an infinite loop and the sfSslRequirement plugin. The problem for me was that my web host wasn't reporting the $_SERVER ['HTTPS'] to 'on', but rather to the numeric value '1'. The sfWebRequest->isSecure() method checks this value against the string 'on'.... and of course it was reporting back false even though the user was coming in through HTTPS.
I had to override the isSecure method to accommodate other values for this server variable. -Scott On Jul 3, 2007, at 9:32 AM, Lukas Kahwe Smith wrote: > > Jonathan H. Wage wrote: >> I was using the latest version from svn, did svn not have those >> changes? > > From what I saw Fabien did not do any changes to the code before the > release. Could you explain a bit more what your config is and what > happens, then I can help figure this one out. > > regards, > Lukas > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "symfony developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/symfony-devs?hl=en -~----------~----~----~----~------~----~------~--~---
