php-windows Digest 2 Aug 2010 15:35:13 -0000 Issue 3850

Topics (messages 30269 through 30272):

Re: PHP 5.3.3 & Ldap_sasl_bind
        30269 by: Ferenc Kovacs
        30270 by: Pierre Joye
        30271 by: Bruno CHALOPIN

Question about PHP-CGI, Unicode Environment, and $_POST
        30272 by: Pierre Fauconnier

Administrivia:

To subscribe to the digest, e-mail:
        php-windows-digest-subscr...@lists.php.net

To unsubscribe from the digest, e-mail:
        php-windows-digest-unsubscr...@lists.php.net

To post to the list, e-mail:
        php-wind...@lists.php.net


----------------------------------------------------------------------
--- Begin Message ---
On Fri, Jul 30, 2010 at 9:25 AM, Bruno CHALOPIN
<bruno.chalo...@laposte.net> wrote:
> hi,
>
> On 29/07/2010 18:20, Pierre Joye wrote:
>>
>> Sasl won't make it to any VC6 versions. Only VC9. You should move to
>> VC9 versions.
>
> Is it due to technical issues with VC6 ? I wouldn't like to impose IIS to my
> customers.
>
> By the way, I've already writen an adapter using COM components to palliate
> the lack of this function on previous PHP versions but I don't really like
> writing specificities for an operating system.
>
> Regards,
>
> Bruno
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>

you can get VC9 apache builds from apachelounge

Tyrael

--- End Message ---
--- Begin Message ---
hi,

On Fri, Jul 30, 2010 at 9:25 AM, Bruno CHALOPIN
<bruno.chalo...@laposte.net> wrote:
> hi,
>
> On 29/07/2010 18:20, Pierre Joye wrote:
>>
>> Sasl won't make it to any VC6 versions. Only VC9. You should move to
>> VC9 versions.
>
> Is it due to technical issues with VC6 ? I wouldn't like to impose IIS to my
> customers.

With the libraries, but as Ferenc said, you can use VC9 versions of
Apache from Apachelounge.com.

It is also important to keep in mind that the VC9 versions have more
updated libraries and extensions than VC6 (also due to libraries). VC6
won't be supported anymore in the PHP major release (whatever will be
next :).

> By the way, I've already writen an adapter using COM components to palliate
> the lack of this function on previous PHP versions but I don't really like
> writing specificities for an operating system.

Agreed, PHP must remain portable, as long as it is possible.

Cheers,
-- 
Pierre

@pierrejoye | http://blog.thepimp.net | http://www.libgd.org

--- End Message ---
--- Begin Message ---
hi,

On 30/07/2010 10:16, Pierre Joye wrote:
VC6
won't be supported anymore in the PHP major release (whatever will be
next :).

Ok, no choice, I'll get VC9 version of Apache. It's a pity that ASF don't provide it. I'm usually chilly installing a non official version in production on my customers servers.

Or, as written here http://www.apachelounge.com/viewtopic.php?t=3548 I can use VC6 Official Apache package with VC9 PHP package using fcgi.

Anyway, I'll try and make some bench. Thanks for all your answers guys.

Regards,

Bruno

--- End Message ---
--- Begin Message ---
Hello comp.php.windows,

What is the environment variable to define, in order to work fine with unicode 
environment, and POST method, in CGI mode?

Regards,
Pierre.
-- 
My program launches the php-cgi.exe via a "CreateProcess" having its
"dwCreationFlags" set to "CREATE_UNICODE_ENVIRONMENT". (I have to use a more
recent compiler - previously there was no problem with its "ancient" 
ANSI version.)
The $_GET array is still well initialized - which means that the environment set
by my program is still ok, but now the $_POST array seems pretty bad.
Versions <= 5.3 show the issue - versions above 5.3: not checked.

_________________________  Script  ______________________________ 
As example, a PHP script sends a form containing 3 inputs, then displays the
results via phpinfo.
        echo <<<L02
<form name="selStudent" action="${_SERVER['PHP_SELF']}" method="$myMethod">
        <input type="text"      name="txtStuCod"/>
        <input type="hidden"    name="keyStuCod"        value="1"/>
        <input type="submit"    name="cmdStuCod"        value="Search"/>
</form>
L02;
_________________________  Results  ______________________________ 
Results extracted from phpinfo() with $myMethod = 'POST';
_GET("txtStuCod") 234.56
_GET("keyStuCod") 1
_GET("cmdStuCod") Search
_POST("t")        \02\03\04\0.\05\06\0
_________________________  See also  ______________________________ 
The full script [1 KB] http://pigii.sourceforge.net/f/check_get_post.phph
The phpinfo full results [53 KB] http://pigii.sf.net/f/check_get_post.html


--- End Message ---

Reply via email to