Re: [PHP-DEV] [PATCH] Add option to disable POST data processing

2010-12-07 Thread John Mertic
things, the super globals are already populated by the time the script starts execution. So, ini_set() will have no impact. Can you set an ini option for a single script via some other method? Maybe thru an .htaccess file? That should work. Otherwise, +1 for the patch from me. John Mertic

Re: [PHP-DEV] [PATCH] Add option to disable POST data processing

2010-12-07 Thread John Mertic
On Tue, Dec 7, 2010 at 7:37 AM, Richard Quadling rquadl...@gmail.com wrote: On 7 December 2010 12:11, John Mertic jmer...@php.net wrote: On Tue, Dec 7, 2010 at 6:40 AM, Richard Quadling rquadl...@gmail.com wrote: On 7 December 2010 07:08, Gustavo Lopes glo...@nebm.ist.utl.pt wrote: The very

Re: [PHP-DEV] Re: Hold off 5.4

2010-12-02 Thread John Mertic
will always give user's confusion, especially since there's many many PHP 6 books on bookshelves that speak of it. I think it's better to recognize what has happened with PHP 6, be honest to the community about what happened and why, and move on as best as we can. John Mertic jmer...@gmail.com | http

[PHP-DEV] [PATCH] Bug #46367 - fputcsv does not add the correct newline character on Windows

2009-07-07 Thread John Mertic
Hi All, Bringing this one back once more; let me know what everyone thinks about it. If it's safe to commit than if someone could ( or give me the karma to do so ) that would be great. If not, let me know what should be done about it instead. Thanks! John Mertic jmer...@gmail.com | http

Re: [PHP-DEV] [PATCH] Bug #46367 - fputcsv does not add the correct newline character on Windows

2009-07-07 Thread John Mertic
The big issue I saw was that fgetcsv() used PHP_EOL for determining line endings, but fputcsv() didn't, which on Windows was causing csv files written by PHP not be able to be read back ( assuming auto_detect_line_endings is turned off ). John Mertic jmer...@gmail.com | http

Re: [PHP-DEV] Test for edge cases with __get and property access flags

2009-06-05 Thread John Mertic
Here's that test. I don't have commit rights to that area of CVS so someone will need to do it for me. John Mertic jmer...@php.net On 6/5/09 5:58 AM, Stan Vassilev wrote: 3. When the caller tries to retrieve $object-foo, and foo is a private/protected member the caller has no access

Re: [PHP-DEV] [PATCH] Bug #46367 - fputcsv does not add the correct newline character on Windows

2008-11-06 Thread John Mertic
On Wed, Oct 22, 2008 at 1:28 PM, John Mertic [EMAIL PROTECTED] wrote: On Wed, Oct 22, 2008 at 1:16 PM, Ilia Alshanetsky [EMAIL PROTECTED] wrote: You cannot use smart_str_appendc() in this case, since the EOL could be a 2 byte string \r\n. smart_str_appendl(csvline, PHP_EOL, sizeof(PHP_EOL)-1

[PHP-DEV] [PATCH] Bug #46367 - fputcsv does not add the correct newline character on Windows

2008-10-22 Thread John Mertic
2107c2107 smart_str_appendc(csvline, '\n'); --- smart_str_appendc(csvline, PHP_EOL); John Mertic [EMAIL PROTECTED] http://jmertic.wordpress.com Explaining a joke is like dissecting a frog: you understand it better, but the frog dies in the process. --Mark Twain -- PHP Internals

Re: [PHP-DEV] [PATCH] Bug #46367 - fputcsv does not add the correct newline character on Windows

2008-10-22 Thread John Mertic
Mertic [EMAIL PROTECTED] http://jmertic.wordpress.com Explaining a joke is like dissecting a frog: you understand it better, but the frog dies in the process. --Mark Twain On Wed, Oct 22, 2008 at 10:14 AM, Stefan Walk [EMAIL PROTECTED] wrote: John Mertic wrote: Hi All, My first patch so

Re: [PHP-DEV] [PATCH] Bug #46367 - fputcsv does not add the correct newline character on Windows

2008-10-22 Thread John Mertic
1.530 +++ file.c 22 Oct 2008 18:21:10 - @@ -2104,7 +2104,7 @@ } } - smart_str_appendc(csvline, '\n'); + smart_str_appendc(csvline, PHP_EOL); smart_str_0(csvline); ret = php_stream_write(stream, csvline.c, csvline.len); John Mertic

Re: [PHP-DEV] [PATCH] Bug #46367 - fputcsv does not add the correct newline character on Windows

2008-10-22 Thread John Mertic
On Wed, Oct 22, 2008 at 1:16 PM, Ilia Alshanetsky [EMAIL PROTECTED] wrote: You cannot use smart_str_appendc() in this case, since the EOL could be a 2 byte string \r\n. smart_str_appendl(csvline, PHP_EOL, sizeof(PHP_EOL)-1); should be used here. On 22-Oct-08, at 2:35 PM, John Mertic wrote

Re: [PHP-DEV] PHP 5.2.6RC5 Released

2008-04-11 Thread John Mertic
Thanks everyone! I'd like to provide some help too with getting the the MSI installers built. Especially on snaps.php.net where we haven't had a successful MSI build in over 2 months ( some permissions issues ) and I know there are some fixes for Vista and FastCGI configuration problems solved.

Re: [PHP-DEV] PHp Warning

2007-10-24 Thread John Mertic
-- John Mertic [EMAIL PROTECTED] http://jmertic.wordpress.com Explaining a joke is like dissecting a frog: you understand it better, but the frog dies in the process. --Mark Twain -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: Too many extensions bundled with the Windows Installer?

2007-08-27 Thread John Mertic
dlls on pecl4win ). I can put together a framework for an installer if that's the route we want to go. Edin, can you no longer add in the PECL libraries to the installer when building it... -- -- John MerticExplaining a joke is like dissecting a frog: you

Re: [PHP-DEV] Re: Too many extensions bundled with the Windows Installer?

2007-08-21 Thread John Mertic
extensions or at least those that don't even load, especially before 5.2.4. Scott John Mertic wrote: Hi, On 7/2/07, Antony Dovgal [EMAIL PROTECTED] wrote: On 03.07.2007 00:50, John Mertic wrote: If an author would like his extension in the Windows installer then they could just

Re: [PHP-DEV] Re: Too many extensions bundled with the Windows Installer?

2007-08-21 Thread John Mertic
in the installer with a stable and unstable branch may be an idea. Or remove the ones in beta completely. Scott John Mertic wrote: Make a list of what's considered non-stable and I can drop them from the builds for 5.2.4. On 8/21/07, Scott MacVicar [EMAIL PROTECTED] wrote: There is now

Re: [PHP-DEV] PHP.net endorsed installer method

2007-08-17 Thread John Mertic
/17/07, John Mertic [EMAIL PROTECTED] wrote: In an effort to help the windows installer get more widespread use, I would like to propose changing the following warning in the manual at http://www.php.net/manual/en/install.windows.php from: There are several all-in-one installers over

Re: [PHP-DEV] 5.2.4RC2

2007-08-17 Thread John Mertic
appreciated. Edin John Mertic wrote: Edin, I noticed that I can't download 5.2.4RC installer builds; getting a 403 - Forbidden error. Also the latest snapshot log is complaining about 'Access is denied': ---snip--- Building ExtensionsComponents.wxs Removing File yazDLL because

[PHP-DEV] PHP.net endorsed installer method

2007-08-17 Thread John Mertic
/downloads.php is the best choice to have your system secure and optimised. I might be proposing this in the wrong place, but since the verbage endorsed by PHP.net is in there I thought it would be prudent to post it to internals. -- -- John MerticExplaining

Re: [PHP-DEV] Re: Too many extensions bundled with the Windows Installer?

2007-07-03 Thread John Mertic
Hi, On 7/2/07, Antony Dovgal [EMAIL PROTECTED] wrote: On 03.07.2007 00:50, John Mertic wrote: If an author would like his extension in the Windows installer then they could just ask, would prevent unmaintained and unstable extensions included in the build. But we are shipping them

[PHP-DEV] Re: Too many extensions bundled with the Windows Installer?

2007-07-02 Thread John Mertic
them up based upon stability instead? Scott John Mertic wrote: On 2 Jul 2007 09:30:13 -, [EMAIL PROTECTED] The Windows Installer seems to allow someone to enable just about every extension that can be built, roughly about 118. It seems that most people assume that they need every feature

Re: [PHP-DEV] Re: Help with the snaps site

2007-05-26 Thread John Mertic
it up there? -- -- John MerticExplaining a joke is like dissecting a frog: you [EMAIL PROTECTED] understand it better, but the frog dies in the process

[PHP-DEV] Re: Help with the snaps site

2007-05-25 Thread John Mertic
or make the nicer looking page like above. This keeps the snaps page cleaner since I would think most people would be looking for the latest snap and not necessarily one of the previous 4 ones. Let me know if my approach and design sounds reasonable. -- -- John Mertic

Re: [PHP-DEV] Re: Help with the snaps site

2007-05-25 Thread John Mertic
: Hannes Magnusson wrote: Hi John On 5/25/07, John Mertic [EMAIL PROTECTED] wrote: Below is a link to my take on the redesign: http://files.edin.dk/php/installer/snaps-html/index.html Looks really good. Yes, it looks excellent. One suggestion: how about removing the left column (next

Re: [PHP-DEV] Re: Help with the snaps site

2007-05-25 Thread John Mertic
Thanks for the compliments and the suggestion. I've made the whole section underneath each branch in the light blue highlighted color. I agree it makes it much easier to read now. John On 5/25/07, Christopher Jones [EMAIL PROTECTED] wrote: John Mertic wrote: Below is a link to my take

Re: [PHP-DEV] Re: Help with the snaps site

2007-05-25 Thread John Mertic
the googler who lands on the snaps page but wants something stable to use. A problem even with the current snaps page is that the PHP logo doesn't link to php.net. And I'd prefer the snap page had the stand php.net header links. Chris John Mertic wrote: Thanks for the compliments and the suggestion

[PHP-DEV] Re-spin Windows Installer

2007-05-21 Thread John Mertic
? -- -- John MerticExplaining a joke is like dissecting a frog: you [EMAIL PROTECTED] understand it better, but the frog dies in the process. -Mark Twain

[PHP-DEV] Re: Re: Help with the snaps site

2007-05-04 Thread John Mertic
on this. -- -- John MerticExplaining a joke is like dissecting a frog: you [EMAIL PROTECTED] understand it better, but the frog dies in the process. -Mark

[PHP-DEV] CVS Account Request: jmertic

2006-08-29 Thread John Mertic
Maintaining Windows Installer. -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] RE: PHP 5.2.0RC2 Released!

2006-08-21 Thread John Mertic
SIGNATURE- -- Later, John Mertic Explaining a joke is like dissecting a frog: you [EMAIL PROTECTED] understand it better, but the frog dies in the blog at http://jmertic.dotgeek.org process. -Mark Twain -- PHP

[PHP-DEV] More updates to the PHP Windows Installer

2006-07-31 Thread John Mertic
it. Download from http://mirrors.emini.eu/php-installer/php-5.2.0RC1-win32-installer.msi. -- Later, John Mertic Explaining a joke is like dissecting a frog: you [EMAIL PROTECTED] understand it better, but the frog dies in the process

Re: Fwd: Fw: [PHP-DEV] New Installer for PHP 5.2

2006-07-27 Thread John Mertic
everyone else think? -- Later, John Mertic Explaining a joke is like dissecting a frog: you [EMAIL PROTECTED] understand it better, but the frog dies in the process. -Mark Twain -- PHP Internals - PHP Runtime

[PHP-DEV] Updated PHP Windows Installer

2006-07-27 Thread John Mertic
it by issuing the following command: msiexec /i php-5.2.0RC1-win32-installer.msi REINSTALL=ALL REINSTALLMODE=vomus Again any feedback would be appreciated. -- Later, John Mertic Explaining a joke is like dissecting a frog: you [EMAIL PROTECTED] understand it better

Re: Fw: [PHP-DEV] New Installer for PHP 5.2

2006-07-26 Thread John Mertic
could see working well; you'd still have the risk of a non-working install, but making it work again is simply commenting out one line. Steph, do you think this approach would work? -- Later, John Mertic Explaining a joke is like dissecting a frog: you [EMAIL PROTECTED

Re: [PHP-DEV] New Installer for PHP 5.2

2006-07-26 Thread John Mertic
] wrote: Is this live yet? I have a newbie wanting to try IIS/PHP. Doesn't want Sambar or Apache, and I don't have IIS. On 24/07/06, John Mertic [EMAIL PROTECTED] wrote: Hi there, With the guidance of Phil Driscoll, I have put together a new installer for PHP on Windows. It replicates much

Fwd: Fw: [PHP-DEV] New Installer for PHP 5.2

2006-07-26 Thread John Mertic
for editing from within a wix installer though - is that possible or not? This isn't directly possible, but you can create call external scripts to do this ( this is how IIS is configured ). Probably I'd do the same here. -- Later, John Mertic Explaining a joke is like dissecting a frog: you

Re: Fw: [PHP-DEV] New Installer for PHP 5.2

2006-07-26 Thread John Mertic
so PHP should be available then ). Thanks again for all your insight into how to get Apache configured correctly. -- Later, John Mertic Explaining a joke is like dissecting a frog: you [EMAIL PROTECTED] understand it better, but the frog dies in the process

Re: Fw: [PHP-DEV] New Installer for PHP 5.2

2006-07-26 Thread John Mertic
the script with if not cmd :) I'm thinking so, with confirmation that it did the right thing. I do something similar with IIS already so it should be rather straightforward. -- Later, John Mertic Explaining a joke is like dissecting a frog: you [EMAIL PROTECTED

Re: [PHP-DEV] New Installer for PHP 5.2

2006-07-25 Thread John Mertic
). Thanks again... -- Later, John Mertic Explaining a joke is like dissecting a frog: you [EMAIL PROTECTED] understand it better, but the frog dies in the process. -Mark Twain -- PHP Internals - PHP Runtime

[PHP-DEV] New Installer for PHP 5.2

2006-07-24 Thread John Mertic
installer with fewer components and if so what would those be? -- Later, John Mertic Explaining a joke is like dissecting a frog: you [EMAIL PROTECTED] understand it better, but the frog dies in the process. -Mark Twain

Fwd: [PHP-DEV] New Installer for PHP 5.2

2006-07-24 Thread John Mertic
-- Forwarded message -- From: John Mertic [EMAIL PROTECTED] Date: Jul 24, 2006 1:06 PM Subject: Re: [PHP-DEV] New Installer for PHP 5.2 To: Steph Fox [EMAIL PROTECTED] On 7/24/06, Steph Fox [EMAIL PROTECTED] wrote: 1) I didn't notice anywhere to choose the path for the install

Re: [PHP-DEV] New Installer for PHP 5.2

2006-07-24 Thread John Mertic
install that contains only the built-in extensions and web server support ) we could probably get it down to under 6mb. And I believe it should also be possible to upgrade this to the full version as well. -- Later, John Mertic Explaining a joke is like dissecting a frog: you [EMAIL PROTECTED

Re: [PHP-DEV] Re: internals Digest 9 Jun 2006 23:10:50 -0000 Issue 993

2006-06-11 Thread John Mertic
[EMAIL PROTECTED] wrote: The problem is that there is no standard location for anything in PHP on Windows, and a lot of people take advantage of, and rely on, that fact. --Wez. On 6/10/06, John Mertic [EMAIL PROTECTED] wrote: Actually, there is also an option that allows you to scan a specific

[PHP-DEV] Re: internals Digest 9 Jun 2006 23:10:50 -0000 Issue 993

2006-06-10 Thread John Mertic
for Windows and having something like this would *greatly* simplify things for me. -- Later, John Mertic Explaining a joke is like dissecting a frog: you [EMAIL PROTECTED] understand it better, but the frog dies in the process