Re: [PHP] Semi-OT: PHP Login with client security

2008-05-21 Thread Tim Thorburn
Wolf wrote: IMHO, you should be testing this long before taking it to the customer and having another failure to show off. Personally, 2 failures is good reason NOT to purchase someone's services... Wolf Yes, I'm well aware of this - the point which you've continually failed to realize is tha

Re: [PHP] Semi-OT: PHP Login with client security

2008-05-20 Thread tedd
At 9:32 PM +0200 5/19/08, Per Jessen wrote: Wolf wrote: >and IE has always been more stringent in-so-far as displaying things that match up to THEIR standards instead of industry or fly-by-your-seat coding (accidentally leaving off a closing tag) then Mozilla and Firefox have historically been

Re: [PHP] Semi-OT: PHP Login with client security

2008-05-20 Thread Eric Butera
On Mon, May 19, 2008 at 4:03 PM, Richard Heyes <[EMAIL PROTECTED]> wrote: > Since when has that mattered? :-) :-) to you too. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Semi-OT: PHP Login with client security

2008-05-20 Thread Wolf
008 3:20 PM To: php-general@lists.php.net Subject: Re: [PHP] Semi-OT: PHP Login with client security robert wrote: > > On May 18, 2008, at 10:14 PM, Tim Thorburn wrote: > >> Hi all, >> >> Having a slight problem with a demo I gave at a clients last week - >> l

Re: [PHP] Semi-OT: PHP Login with client security

2008-05-19 Thread robert
On May 19, 2008, at 12:20 PM, Tim Thorburn wrote: robert wrote: On May 18, 2008, at 10:14 PM, Tim Thorburn wrote: Hi all, Having a slight problem with a demo I gave at a clients last week - looking for a little advise. Part of my demo involved a password protected area - the simplifie

Re: [PHP] Semi-OT: PHP Login with client security

2008-05-19 Thread Wolf
It sounds like your code is hokey, since IE is more stringent then other browsers, the code looks to be at fault. What browsers did you test this with before taking it to the client? Firewalls shouldn't be any type of issue at all in this case, unless your browser is trying to redirect to an

Re: [PHP] Semi-OT: PHP Login with client security

2008-05-19 Thread Wolf
--- Per Jessen <[EMAIL PROTECTED]> wrote: > Wolf wrote: > > > Per Jessen <[EMAIL PROTECTED]> wrote: > >> Wolf wrote: > >> > >>> ... since IE is more stringent then other browsers ... > >> You are either using a very unusual IE or you are on another planet. > >> > > > > Nope IE and Opera

Re: [PHP] Semi-OT: PHP Login with client security

2008-05-19 Thread Richard Heyes
Robert Cummings wrote: On Mon, 2008-05-19 at 21:03 +0100, Richard Heyes wrote: Because it is RFC. Since when has that mattered? :-) Always... unless you're one of the ignorant masses ;) Whatever works... :-) -- Richard Heyes Employ me http://www.phpgu

Re: [PHP] Semi-OT: PHP Login with client security

2008-05-19 Thread Robert Cummings
On Mon, 2008-05-19 at 21:03 +0100, Richard Heyes wrote: > > Because it is RFC. > > Since when has that mattered? :-) Always... unless you're one of the ignorant masses ;) Cheers, Rob. -- http://www.interjinn.com Application and Templating Framework for PHP -- PHP General Mailing List (http:

Re: [PHP] Semi-OT: PHP Login with client security

2008-05-19 Thread Richard Heyes
Because it is RFC. Since when has that mattered? :-) -- Richard Heyes Employ me http://www.phpguru.org/cv ++ | Access SSH with a Windows mapped drive | |http://www.phpguru.org/sftpdrive| +---

Re: [PHP] Semi-OT: PHP Login with client security

2008-05-19 Thread David Giragosian
On 5/19/08, Tim Thorburn <[EMAIL PROTECTED]> wrote: > Wolf wrote: > > Tim Thorburn <[EMAIL PROTECTED]> wrote: > > > > > Hi all, > > > > > > Having a slight problem with a demo I gave at a clients last week - > looking for a little advise. Part of my demo involved a password protected > area -

Re: [PHP] Semi-OT: PHP Login with client security

2008-05-19 Thread Tim Thorburn
robert wrote: On May 18, 2008, at 10:14 PM, Tim Thorburn wrote: Hi all, Having a slight problem with a demo I gave at a clients last week - looking for a little advise. Part of my demo involved a password protected area - the simplified process is: client enters password on login page > i

Re: [PHP] Semi-OT: PHP Login with client security

2008-05-19 Thread Tim Thorburn
Wolf wrote: Tim Thorburn <[EMAIL PROTECTED]> wrote: Hi all, Having a slight problem with a demo I gave at a clients last week - looking for a little advise. Part of my demo involved a password protected area - the simplified process is: client enters password on login page > if logi

Re: [PHP] Semi-OT: PHP Login with client security

2008-05-19 Thread Per Jessen
Wolf wrote: > Per Jessen <[EMAIL PROTECTED]> wrote: >> Wolf wrote: >> >>> ... since IE is more stringent then other browsers ... >> You are either using a very unusual IE or you are on another planet. >> > > Nope IE and Opera both wait for full page before displaying (while > firefox disp

Re: [PHP] Semi-OT: PHP Login with client security

2008-05-19 Thread Wolf
Per Jessen <[EMAIL PROTECTED]> wrote: > Wolf wrote: > > > ... since IE is more stringent then other browsers ... > > You are either using a very unusual IE or you are on another planet. > Nope IE and Opera both wait for full page before displaying (while firefox displays as output) and

Re: [PHP] Semi-OT: PHP Login with client security

2008-05-19 Thread Eric Butera
On Mon, May 19, 2008 at 12:52 PM, Richard Heyes <[EMAIL PROTECTED]> wrote: >> You should _always_ use an absolute URL in a redirect. I know it quite >> often works with a relative too. > > Why? > > -- > Richard Heyes > >Employ me >http://www.phpguru.org/cv > >

Re: [PHP] Semi-OT: PHP Login with client security

2008-05-19 Thread Richard Heyes
You should _always_ use an absolute URL in a redirect. I know it quite often works with a relative too. Why? -- Richard Heyes Employ me http://www.phpguru.org/cv ++ | Access SSH with a Windows mapped drive | |h

Re: [PHP] Semi-OT: PHP Login with client security

2008-05-19 Thread Per Jessen
robert wrote: > try to use a full url instead of relative. e.g. > > header('location: thankyou.php'); > > vs. > > header('location: http://www.mysite.com/thankyou.php'); You should _always_ use an absolute URL in a redirect. I know it quite often works with a relative too. /Per Jessen, Züri

Re: [PHP] Semi-OT: PHP Login with client security

2008-05-19 Thread robert
On May 18, 2008, at 10:14 PM, Tim Thorburn wrote: Hi all, Having a slight problem with a demo I gave at a clients last week - looking for a little advise. Part of my demo involved a password protected area - the simplified process is: client enters password on login page > if login/pass

Re: [PHP] Semi-OT: PHP Login with client security

2008-05-19 Thread Per Jessen
> Tim Thorburn <[EMAIL PROTECTED]> wrote: >> Hi all, >> >> Having a slight problem with a demo I gave at a clients last week - >> looking for a little advise. Part of my demo involved a password >> protected area - the simplified process is: client enters password on >> login page > if login

Re: [PHP] Semi-OT: PHP Login with client security

2008-05-19 Thread Per Jessen
Wolf wrote: > ... since IE is more stringent then other browsers ... You are either using a very unusual IE or you are on another planet. /Per Jessen, Zürich -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Semi-OT: PHP Login with client security

2008-05-19 Thread tedd
At 8:44 AM -0400 5/19/08, Wolf wrote: It sounds like your code is hokey, since IE is more stringent then other browsers, the code looks to be at fault. The term "stringent" isn't what comes to mind when I think about IE's. Tim: Did other browsers work? Cheers, tedd -- --- http://sperli

Re: [PHP] Semi-OT: PHP Login with client security

2008-05-19 Thread Bastien Koert
[snip] > > It sounds like your code is hokey, since IE is more stringent then other > browsers, the code looks to be at fault. > > What browsers did you test this with before taking it to the client? > > Firewalls shouldn't be any type of issue at all in this case, unless your > browser is trying

Re: [PHP] Semi-OT: PHP Login with client security

2008-05-19 Thread Wolf
Tim Thorburn <[EMAIL PROTECTED]> wrote: > Hi all, > > Having a slight problem with a demo I gave at a clients last week - > looking for a little advise. Part of my demo involved a password > protected area - the simplified process is: client enters password on > login page > if login/pas

Re: [PHP] Semi-OT: PHP Login with client security

2008-05-19 Thread Eric Butera
On Mon, May 19, 2008 at 1:14 AM, Tim Thorburn <[EMAIL PROTECTED]> wrote: > Hi all, > > Having a slight problem with a demo I gave at a clients last week - looking > for a little advise. Part of my demo involved a password protected area - > the simplified process is: client enters password on logi