php-windows Digest 12 Apr 2010 13:20:06 -0000 Issue 3787
Topics (messages 30003 through 30008):
Re: error compiling php-5.3.2
30003 by: Tomasz Krawczyk
30005 by: Pierre Joye
30006 by: Ferenc Kovacs
30007 by: Pierre Joye
Re: FastCGI error with IIS (was Windows binaries)
30004 by: Pierre Joye
Mail Function Not Working
30008 by: Alice Wei
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 ---
Hi
>>>> crypt.obj : error LNK2001: unresolved external symbol _crypt
>>>> Release\php5.dll : fatal error LNK1120: 1 unresolved externals
>>>> NMAKE : fatal error U1077: '"C:\Program Files\Microsoft Visual Studio
>>>> 9.0\VC\Bin\cl.exe"' : return code '0x2'
>>>> Stop.
I did silly error. I had put suhosin directory into extensions directory
then I decided to make clean PHP compilation just to be sure I'm able to
compile PHP. Suhosin contains patch for crypt but PHP sources was not
patched by suhosin patch. I think it was my problem. Eventually I saw this
SAPI sapi\cgi build complete
I have my own PHP !!! :-)
Pierre thanks for your time.
--
pozdrawiam
Tomek
--- End Message ---
--- Begin Message ---
hi,
On Sun, Apr 11, 2010 at 10:51 AM, Tomasz Krawczyk <tomkr...@gmail.com> wrote:
> Hi
>
>>>>> crypt.obj : error LNK2001: unresolved external symbol _crypt
>>>>> Release\php5.dll : fatal error LNK1120: 1 unresolved externals
>>>>> NMAKE : fatal error U1077: '"C:\Program Files\Microsoft Visual Studio
>>>>> 9.0\VC\Bin\cl.exe"' : return code '0x2'
>>>>> Stop.
>
> I did silly error. I had put suhosin directory into extensions directory
> then I decided to make clean PHP compilation just to be sure I'm able to
> compile PHP. Suhosin contains patch for crypt but PHP sources was not
> patched by suhosin patch. I think it was my problem. Eventually I saw this
You don't need suhosin on windows nor with 5.3 (all platforms) as 5.3
has all crypt features provided by the suhosin extension (with some
more fixes not available in the latest patch).
> Pierre thanks for your time.
You are welcome :)
Cheers,
--
Pierre
@pierrejoye | http://blog.thepimp.net | http://www.libgd.org
--- End Message ---
--- Begin Message ---
On Sun, Apr 11, 2010 at 12:41 PM, Pierre Joye <pierre....@gmail.com> wrote:
> hi,
>
> On Sun, Apr 11, 2010 at 10:51 AM, Tomasz Krawczyk <tomkr...@gmail.com>
> wrote:
> > Hi
> >
> >>>>> crypt.obj : error LNK2001: unresolved external symbol _crypt
> >>>>> Release\php5.dll : fatal error LNK1120: 1 unresolved externals
> >>>>> NMAKE : fatal error U1077: '"C:\Program Files\Microsoft Visual Studio
> >>>>> 9.0\VC\Bin\cl.exe"' : return code '0x2'
> >>>>> Stop.
> >
> > I did silly error. I had put suhosin directory into extensions directory
> > then I decided to make clean PHP compilation just to be sure I'm able to
> > compile PHP. Suhosin contains patch for crypt but PHP sources was not
> > patched by suhosin patch. I think it was my problem. Eventually I saw
> this
>
> You don't need suhosin on windows nor with 5.3 (all platforms) as 5.3
> has all crypt features provided by the suhosin extension (with some
> more fixes not available in the latest patch).
>
could you tell more about this?
Tyrael
>
>
> Pierre thanks for your time.
>
> You are welcome :)
>
> Cheers,
> --
> Pierre
>
> @pierrejoye | http://blog.thepimp.net | http://www.libgd.org
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
--- End Message ---
--- Begin Message ---
hi,
On Sun, Apr 11, 2010 at 5:33 PM, Ferenc Kovacs <tyr...@gmail.com> wrote:
>> > I did silly error. I had put suhosin directory into extensions directory
>> > then I decided to make clean PHP compilation just to be sure I'm able to
>> > compile PHP. Suhosin contains patch for crypt but PHP sources was not
>> > patched by suhosin patch. I think it was my problem. Eventually I saw
>> > this
>>
>> You don't need suhosin on windows nor with 5.3 (all platforms) as 5.3
>> has all crypt features provided by the suhosin extension (with some
>> more fixes not available in the latest patch).
>
> could you tell more about this?
I added blowfish and other algorithms to php 5.3, they are now enabled
on all platfroms (even windows). As soon as on algorithm is missing,
the bundled versions are used.
Cheers,
--
Pierre
@pierrejoye | http://blog.thepimp.net | http://www.libgd.org
--- End Message ---
--- Begin Message ---
On Fri, Apr 9, 2010 at 3:56 AM, Tommy Pham <tommy...@gmail.com> wrote:
hi,
> The binaries were downloaded from PHP & MySQL. Using 5.2.13-nts does work
> for FastCGI with IIS and MySQL but now PostgreSQL doesn't work, which is same
> as 5.3.2-nts with IPv6 uninstalled. Looking at the netstat, I don't see
> MySQL bound to IPv6...
The IPv6 limitation is the same for 5.2 or 5.3. About pgsql, be sure
to have the PHP directory in your path as the pgsql extensions need
the libpq.dll.
Cheers.
--
Pierre
@pierrejoye | http://blog.thepimp.net | http://www.libgd.org
--- End Message ---
--- Begin Message ---
Hi,
I have an issue here where I see no PHP errors on my mail
function usage, and yet I am not getting the mail in the desired
account. Here is what I have for my PHP code:
$headers = "From: aj...@alumni.iu.edu" ;
$to = $email;
$subject =
"Comments Regarding My Site";
$body = "From: $your_name\n E-Mail:
$email\n Reason Contact: $question\n Comments:\n $comments";
mail($to,
$subject, $body,$headers);
This is what I have in my PHP.ini:
[mail
function]
; For Win32 only.
SMTP = smtp.live.com
smtp_port =
587
; For Win32 only.
sendmail_from = aj...@alumni.iu.edu
;
For Unix only. You may supply arguments as well (default: "sendmail -t
-i").
;sendmail_path =
; Force the addition of the specified
parameters to be passed as extra parameters
; to the sendmail binary.
These parameters will always replace the value of
; the 5th
parameter to mail(), even in safe mode.
;mail.force_extra_parameters =
Yet, I don't see any mail in the mail box with the address $email is at. Can
anyone on the list please give me
some pointers on what I may have done wrong here?
Thanks for your help.
Alice
_________________________________________________________________
Hotmail is redefining busy with tools for the New Busy. Get more from your
inbox.
http://www.windowslive.com/campaign/thenewbusy?ocid=PID28326::T:WLMTAGL:ON:WL:en-US:WM_HMP:042010_2
--- End Message ---