RE: [PHP] version difference or server difference?

2005-05-18 Thread Jay Blanchard
[snip] Why does a Win2K installation of PHP honor max_input_time and a FreeBSD machine does not? I am running version 5.0.0b2-dev on the windows machine and version 4.3.10 on the BSD machine would the version difference cause this problem? [/snip] According to http://us3.php.net/ref.info max_inpu

[PHP] version difference or server difference?

2005-05-18 Thread Lee Chen
Why does a Win2K installation of PHP honor max_input_time and a FreeBSD machine does not? I am running version 5.0.0b2-dev on the windows machine and version 4.3.10 on the BSD machine would the version difference cause this problem? -- PHP General Mailing List (http://www.php.net/) To unsubscrib

Re: [PHP] Re: php version difference - local installation very strict

2004-02-01 Thread Jason Wong
On Monday 02 February 2004 08:03, Phillip Jackson wrote: > i don't use register_globals - i have a function that massages data that > mimics register globals' behaivior via dynamically named variables. > > which one should i set it to - E_NOTICE? error_reporting = E_ALL display_errors = Off log_er

Re: [PHP] php version difference - local installation very strict

2004-02-01 Thread DvDmanDT
Once on every page... I include one file once, on each page, and in that one I have session_start()... -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "Phillip Jackson" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > That's great advice... the only questions i h

Re: [PHP] php version difference - local installation very strict

2004-02-01 Thread Phillip Jackson
That's great advice... the only questions i have then: I only need to call session_start ONCE in my entire application per instance of a session? when i published the application months ago to my production server i had errors on every page notifying me that a session had not been started so i cou

Re: [PHP] php version difference - local installation very strict

2004-02-01 Thread Justin French
On Monday, February 2, 2004, at 10:14 AM, Phillip Jackson wrote: these errors are foreign to me as i have combed my code 100's of times before i deployed my app online 3 months ago. do i NEED this newer,stricter version or can i install a deprecated one? It's not newer and stricter, and it's not

[PHP] Re: php version difference - local installation very strict

2004-02-01 Thread Phillip Jackson
i don't use register_globals - i have a function that massages data that mimics register globals' behaivior via dynamically named variables. which one should i set it to - E_NOTICE? ~Phillip Jackson "Dvdmandt" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Yes.. > error_reporting

[PHP] Re: php version difference - local installation very strict

2004-02-01 Thread DvDmanDT
Yes.. error_reporting=E_ALL & ~E_NOTICE in php.ini is most likely what your server uses.. :p Also, register_globals might give you problems.. :p -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "Phillip Jackson" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > Hi

[PHP] php version difference - local installation very strict

2004-02-01 Thread Phillip Jackson
Hi all, It seems that the version on my local apache installation is more strict than the version on my production server. How can i counteract this without potentially having to upgrade 300+ pages in my entire app? is there a setting in php.ini that i could locally kill some of this debugging inf

Re: [PHP] Version difference (4.0.4pl1-4.1.2)

2002-03-06 Thread bvr
Check the release notes or changelogs.. I believe there was a notable change in 4.0.5 regarding 'referencing' you may have to deal with, and 'reference counting' was added later on but this should have little affect on backwards compatibility. Also, the input mechanism has changed, although you

[PHP] Version difference (4.0.4pl1-4.1.2)

2002-03-05 Thread Aras Kucinskas
I want to upgrade PHP from 4.0.4 to 4.1.2. Where I can find docs apbout version differences. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Version Difference

2001-01-16 Thread Glen Scott
At 10:37 16/01/01, Gareth Davies wrote: >All is well in both the above until the user enters an apostrophe, upon >which the development environment nicely adds a backslash prior to it, >allowing it to be saved in Mysql with no additional effort. The live >environment, however, does not. Do yo

Re: [PHP] Version Difference

2001-01-16 Thread Gareth Davies
]> To: Gareth Davies <[EMAIL PROTECTED]> Cc: PHP List <[EMAIL PROTECTED]> Sent: Tuesday, January 16, 2001 10:43 AM Subject: Re: [PHP] Version Difference > > Hi all, > > > > With the following in one page: > > "; > > > > and this in the page cal

Re: [PHP] Version Difference

2001-01-16 Thread Philip Olson
> Hi all, > > With the following in one page: > "; > > and this in the page called: > echo "$document_title"; > > I am receiving two different results from two different environments > under some circumstances, which is causing me a massive headache. oh my! > My development environment is PH

[PHP] Version Difference

2001-01-16 Thread Gareth Davies
Hi all, With the following in one page: "; and this in the page called: echo "$document_title"; I am receiving two different results from two different environments under some circumstances, which is causing me a massive headache. My development environment is PHP 4.0.3pl1 running on Windows