[PHP] Re: [PHP-DEV] PHP 4.4.6 RC1 Released

2007-02-22 Thread Edin Kadribasic
Hi,

Windows build is available at:

http://downloads.php.net/edink/php-4.4.6RC1-Win32.zip

Edin


Derick Rethans wrote:
 Hello!
 
 I packed PHP 4.4.6RC1 today, which you can find here:
 http://downloads.php.net/derick/
 
 This release candidate addresses an issues that unfortunately crept 
 into PHP 4.4.5:
 
 - Fixed segfault in ext/session when register_globals=On. (Tony)
 
 And some other issues:
 
 - Fixed bug #40578 (imagettftext() multithreading issue). (Tony)
 - Fixed bug #40502 (ext/interbase compile failure). (Tony)
 - Fixed bug #40286 (PHP fastcgi with PHP_FCGI_CHILDREN don't kill 
   children when parent is killed). (Dmitry)
 
 It also updates the PCRE library to version 7.0.
 
 Please test it carefully, and report any bugs in the bug system. 
 
 If everything goes well, we can release it somewhere at the end of next 
 week.
 
 regards,
 Derick
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: [PHP-DEV] PHP 4.4.5RC2

2007-02-01 Thread Edin Kadribasic

The Windows build is ready as well:

http://downloads.php.net/edink/php-4.4.5RC2-Win32.zip

Edin

Derick Rethans wrote:

Hello!

I packed PHP 4.4.5RC2 today, which you can find here: 
http://downloads.php.net/derick/


Please test it carefully, and report any bugs in the bug system, but 
only if you have a short reproducable test case.


If everything goes well, we can release it somewhere at the end of next 
week.


regards,
Derick

  


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: [PHP-DEV] PHP 4.4.5RC1

2007-01-05 Thread Edin Kadribasic

Hi,

Windows distribution is available at:

http://downloads.php.net/edink/php-4.4.5RC1-Win32.zip

Edin

Derick Rethans wrote:

Hello!

I packed PHP 4.4.5RC1 today, which you can find here:

http://downloads.php.net/derick/php-4.4.5RC1.tar.bz2
ee9238175c6b6ecec8712954065451c4

http://downloads.php.net/derick/php-4.4.5RC1.tar.gz
5337c72e3d70fb88b932215957e250f8

Windows binaries will follow suit.

Please test it carefully, and report any bugs in the bug system, but 
only if you have a short reproducable test case.


If everything goes well, we will probably release PHP 4.4.5 before the 
end of the month.


regards,
Derick

  


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] FastCGI optmized Windows build of 5.2.1RC2

2007-01-05 Thread Edin Kadribasic

Hello,

I have made a second build of 5.2.1RC2 for Windows with no thread safety 
enabled. This will only work for non threaded SAPIs such as CGI/FastCGI 
and CLI. The reason for this is that managing per thread state takes 
some CPU time from the main task of running PHP scripts making non 
thread safe PHP significantly faster. My initial benchmarks show 20-30% 
performance increase.


This, together with the new fastcgi implementation for IIS from 
Microsoft should bring PHP performance on Windows to a new level.


http://downloads.php.net/edink/php-5.2.1RC2-nts-Win32.zip
(76aa90a7fdb0bd2eb62c1172501d6c6e)
http://downloads.php.net/edink/pecl-5.2.1RC2-nts-Win32.zip
(a493bdf794a5d44d749f6dcd2a55f9da)
http://downloads.php.net/edink/php-debug-pack-5.2.1RC2-nts-Win32.zip
(cbfd474fcdb61522d4c750b5c02d3df9)

Edin

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] FastCGI optmized Windows build of 5.2.1RC2

2007-01-05 Thread Edin Kadribasic
Well you can already use PHP/fastcgi with Apache and IIS6 on windows 
using 3rd party fastcgi modules for these servers. What IIS7 
(http://www.iis.net/) brings is native fastcgi implementation.


Edin


Vincent DUPONT wrote:
hello, 


thanks for this good news for Win poeple.
Do you have any info on what version(s) of IIS/win32 this release soul be used?

thank you  


Vincent Dupont
Ausy Belgium



-Original Message-
From: Edin Kadribasic [mailto:[EMAIL PROTECTED]
Sent: Fri 1/5/2007 14:27
To: PHP internals; php-general@lists.php.net
Subject: [PHP] FastCGI optmized Windows build of 5.2.1RC2
 
Hello,


I have made a second build of 5.2.1RC2 for Windows with no thread safety 
enabled. This will only work for non threaded SAPIs such as CGI/FastCGI 
and CLI. The reason for this is that managing per thread state takes 
some CPU time from the main task of running PHP scripts making non 
thread safe PHP significantly faster. My initial benchmarks show 20-30% 
performance increase.


This, together with the new fastcgi implementation for IIS from 
Microsoft should bring PHP performance on Windows to a new level.


http://downloads.php.net/edink/php-5.2.1RC2-nts-Win32.zip
(76aa90a7fdb0bd2eb62c1172501d6c6e)
http://downloads.php.net/edink/pecl-5.2.1RC2-nts-Win32.zip
(a493bdf794a5d44d749f6dcd2a55f9da)
http://downloads.php.net/edink/php-debug-pack-5.2.1RC2-nts-Win32.zip
(cbfd474fcdb61522d4c750b5c02d3df9)

Edin

  


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] FastCGI optmized Windows build of 5.2.1RC2

2007-01-05 Thread Edin Kadribasic
Well to correct myself, Microsoft has released their FastCGI module for 
earlier versions of IIS as well. Take a look at


http://www.iis.net/default.aspx?tabid=2subtabid=25i=1207

Edin

Edin Kadribasic wrote:
Well you can already use PHP/fastcgi with Apache and IIS6 on windows 
using 3rd party fastcgi modules for these servers. What IIS7 
(http://www.iis.net/) brings is native fastcgi implementation.


Edin


Vincent DUPONT wrote:

hello,
thanks for this good news for Win poeple.
Do you have any info on what version(s) of IIS/win32 this release 
soul be used?


thank you 
Vincent Dupont

Ausy Belgium



-Original Message-
From: Edin Kadribasic [mailto:[EMAIL PROTECTED]
Sent: Fri 1/5/2007 14:27
To: PHP internals; php-general@lists.php.net
Subject: [PHP] FastCGI optmized Windows build of 5.2.1RC2
 
Hello,


I have made a second build of 5.2.1RC2 for Windows with no thread 
safety enabled. This will only work for non threaded SAPIs such as 
CGI/FastCGI and CLI. The reason for this is that managing per thread 
state takes some CPU time from the main task of running PHP scripts 
making non thread safe PHP significantly faster. My initial 
benchmarks show 20-30% performance increase.


This, together with the new fastcgi implementation for IIS from 
Microsoft should bring PHP performance on Windows to a new level.


http://downloads.php.net/edink/php-5.2.1RC2-nts-Win32.zip
(76aa90a7fdb0bd2eb62c1172501d6c6e)
http://downloads.php.net/edink/pecl-5.2.1RC2-nts-Win32.zip
(a493bdf794a5d44d749f6dcd2a55f9da)
http://downloads.php.net/edink/php-debug-pack-5.2.1RC2-nts-Win32.zip
(cbfd474fcdb61522d4c750b5c02d3df9)

Edin

  





--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] New windows build

2006-12-18 Thread Edin Kadribasic
Hello all,

Since we will soon be switching to the new Microsoft compiler for making
official PHP builds I have created a couple test builds to see how it
goes. There were some initial problems and we do have to adjust things
in the build to accommodate for changes of how the C++ redistributable
is packaged. We are now at a point where we have a usable build.

I encourage PHP users on Windows to download the test build from
http://edin.dk/archives/24-Second-PHP-build-using-the-new-compiler.html
and provide feedback on any issues thy might have experienced.

Edin

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] FQDN of the server thru CLI

2006-04-21 Thread Edin Kadribasic
php_uname('n')

Edin


Venkat Venkataraju wrote:
 Hi All
 
 I'm writing a bunch of cron scripts that send reports periodically using
 phpmailer.
 
 I'm having a hard time trying to find the FQDN of the server. I need
 that information to construct the from address for the emails.
 
 The $_ENV['HOSTNAME'] works only if the script is executed manually. the
 cron does not pass the HOSTNAME env variable to the scripts.
 
 When executed from the CLI, the $_SERVER['HOSTNAME'] does not have the
 fqdn, but just the hostname part of the FQDN.
 
 Unless i hard code the corntab file with
 HOSTNAME=fqdn
 
 i do not want to hardcode the hostname anywhere as these script will be
 copied onto many servers. is there a way i can find the fully qualified
 domain name thru PHP?
 
 Thanks
 /V
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: [PHP-DEV] PHP 4.4.2RC2

2006-01-05 Thread Edin Kadribasic
Hi,

Windows package is available at:

http://downloads.php.net/edink/php-4.4.2RC2-Win32.zip

Edin


Derick Rethans wrote:
 Hello!
 
 I packed PHP 4.4.2RC2 today, which you can find here:
 http://downloads.php.net/derick/
 
 Please test it carefully, and report any bugs in the bug system, but 
 only if you have a short reproducable test case. Please do not commit 
 any changes to the PHP_4_4 tree until PHP 4.4.2 is released, unless it's 
 a critical bugs. Please confer with me first then.
 
 If everything goes well, we can release it somewhere at the end of next 
 week.
 
 regards,
 Derick
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] STDERR not opened with php 5.0.5

2005-09-13 Thread Edin Kadribasic
Hi,

Perhaps your /usr/local/bin/php505 is a cgi instead of cli?

Edin


Florent Monnier wrote:
 Hi,
 
 on http://www.php.net/manual/en/features.commandline.php is writen:
 STDERR - An already opened stream to stderr. This saves opening it with:
 ?php
 $stderr = fopen('php://stderr', 'w');
 ?
 
 
 But this does not work:
 #! /usr/local/bin/php505 -q
 ?php
 fwrite(STDERR, error!\n);
 ?
 
 
 This does work:
 #! /usr/local/bin/php505 -q
 ?php
 define('STDERR', fopen('php://stderr', 'w'));
 fwrite(STDERR, error!\n);
 ?
 
 
 Is the manual wrong or does php 5.0.5 have change this property ?
 
 Thanks
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] spam report

2005-08-25 Thread Edin Kadribasic
This list are not moderated, but Derick has taken care of this
particular problem :)

Edin


Xuefer wrote:
 From: [EMAIL PROTECTED]
 
 Subject of the message: [PHP] Re: anyone get corrupted response with
 php-fcgi when zlib.output_compression=On?
 Recipient of the message: PHP LIST php-general@lists.php.net
 ===
 is anyone moderate this mailinglist? and get him out of the list?
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: [PHP-DEV] 5.0.5 download URL

2005-08-22 Thread Edin Kadribasic
The Windows binaries are available at:

http://downloads.php.net/edink/php-5.0.5RC1-Win32.zip
http://downloads.php.net/edink/pecl-5.0.5RC1-Win32.zip

Edin


Zeev Suraski wrote:
 By popular demand, you can now get these binaries at
 http://downloads.php.net/zeev/php-5.0.5RC1.tar.gz
 http://downloads.php.net/zeev/php-5.0.5RC1.tar.bz2
 
 as well.
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: [PHP-DEV] PHP 5.0.4RC1 and PHP 4.3.11RC1 rolled

2005-03-14 Thread Edin Kadribasic
Windows binaries are now available at:

PHP 5.0.4RC1
http://downloads.php.net/edink/php-5.0.4RC1-Win32.zip

PHP 4.3.11RC1
http://downloads.php.net/edink/php-4.3.11RC1-Win32.zip

Additional downloads for PHP 5.0.4RC1:
http://downloads.php.net/edink/pecl-5.0.4RC1-Win32.zip
http://downloads.php.net/edink/php-debug-pack-5.0.4RC1-Win32.zip

Edin

- Original Message - 
From: Zeev Suraski [EMAIL PROTECTED]
To: php-general@lists.php.net; internals@lists.php.net
Sent: Monday, March 14, 2005 11:13 AM
Subject: [PHP-DEV] PHP 5.0.4RC1 and PHP 4.3.11RC1 rolled


 Everyone,

 We've rolled initial release candidates for PHP 5.0.4 and 4.3.11. As
usual,
 these 3rd digit releases include a variety of bug fixes and minor updates.

 PHP 5.0.4RC1 source:
 http://downloads.php.net/zeev/php-5.0.4RC1.tar.bz2
 http://downloads.php.net/zeev/php-5.0.4RC1.tar.gz

 PHP 4.3.11RC1 source:
 http://downloads.php.net/ilia/php-4.3.11RC1.tar.bz2
 http://downloads.php.net/ilia/php-4.3.11RC1.tar.gz

 Windows binaries will be posted and announced soon.

 Changes in PHP 5.0.4RC1:
http://cvs.php.net/co.php/php-src/NEWS?r=1.1760.2.286
 Changes in PHP 4.3.11RC1:
http://cvs.php.net/co.php/php-src/NEWS?r=1.1247.2.854

 Any help in testing these release candidates would be appreciated!

 Zeev

 -- 
 PHP Internals - PHP Runtime Development Mailing List
 To unsubscribe, visit: http://www.php.net/unsub.php




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] php-cli stopping on exit.

2003-08-26 Thread Edin Kadribasic
It works fine here. Do you have any additional extensions enabled in
php.ini?

Edin

- Original Message - 
From: Simon Fredriksson [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, August 26, 2003 7:24 AM
Subject: [PHP] php-cli stopping on exit.


Can someone explain why PHP freezes when I don't specify a file for
it?
Like when I run php -v it outputs:

PHP 4.3.3 (cli) (built: Aug 24 2003 22:05:23)
Copyright (c) 1997-2003 The PHP Group
Zend Engine v1.3.0, Copyright (c) 1998-2003 Zend Technologies

Then stops. It doesn't return to the commandprompt. System: WinXP
Pro.

//Simon

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP 5 won't install

2003-06-26 Thread Edin Kadribasic
You need to copy dlls\*.dll to winnt\system32 too.

Edin

- Original Message -
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, June 26, 2003 6:26 PM
Subject: [PHP] PHP 5 won't install


 I downloaded PHP 5-dev from snaps last night but it is giving me an error
 when I try to install it. The error is: The dynamic link library
libxml2.dll
 could not be found in the specified path.

 I have been downloading and installing PHP 5 from snaps for some time and
 haven't had any problem installing it prior to this. Is this a change,
 something different about the installation procedure? Or is there a
problem
 with PHP 5 on snaps.

 I am using Windows 2000. I download the zip file, unzip into the PHP
 directory, and copy php4ts.dll into winnt\system32. This has worked many
 times in the past.

 Thanks,

 Janet

 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP 5 won't install

2003-06-26 Thread Edin Kadribasic
Yes, this is something that would probably be changed before the final
release, maybe even in the upcoming beta1.

Edin
- Original Message -
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Thursday, June 26, 2003 10:34 PM
Subject: Re: [PHP] PHP 5 won't install


 In a message dated 6/26/2003 1:08:02 PM Pacific Daylight Time,
 [EMAIL PROTECTED] writes:

 You need to copy dlls\*.dll to winnt\system32 too.

 Yes, but my question is about the change. There are two, libxml2 and
iconv,
 that I had to copy into the system directory before PHP 5 would run. I
didn't
 have to do this when I previously installed PHP 5. I just started having
to
 copy these dlls yesterday. My question is whether this is a permanent
change
 to the installation process or something that will be fixed.

 Janet




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Another Guru's Help Needed...

2001-01-22 Thread Edin Kadribasic

Web analyzer Analog makes nice search engine report. The source could
give you some clues.

http://www.analog.cx/

Edin

-Original Message-
From: Dallas Kropka [mailto:[EMAIL PROTECTED]]
Sent: Saturday, January 20, 2001 5:12 AM
To: jeremy brand
Cc: Michael Kimsal; PHP LIST
Subject: RE: [PHP] Another Guru's Help Needed...


Ya know, I was afraid you were going to say something like that does
anyone know of anything like this that has been done? And does anyone
know
where I can find a list of Search Engine IP adds?

BTW Jeremy, Thanks.


-Original Message-
From: jeremy brand [mailto:[EMAIL PROTECTED]]
Sent: Friday, January 19, 2001 8:14 PM
To: Dallas Kropka
Cc: Michael Kimsal; PHP LIST
Subject: RE: [PHP] Another Guru's Help Needed...


You are going to have to research the query string for each search
engine that you intend to support, and then parse it out.

for example: go to google.  search for [jeremy brand], notice the
REQUEST_URI:
/search?q=jeremy+brand

In google's case, since they always use q=, you can parse this out.

You'll need to do this and write a module for each search engine
(since they all will have their own behavior).

Maybe someone has done this work, but you always have to keep curent
because search engines are free to chenge their own code any time they
want.

Jeremy

Jeremy Brand :: Sr. Software Engineer :: 408-245-9058 ::
[EMAIL PROTECTED]
http://www.JeremyBrand.com/Jeremy/Brand/Jeremy_Brand.html for more
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
"LINUX is obsolete"  -- Andy Tanenbaum, January 29th, 1992
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
   http://www.JEEP-FOR-SALE.com/ -- I need a buyer
  Get your own Free, Private email at http://www.smackdown.com/

On Fri, 19 Jan 2001, Dallas Kropka wrote:

 Date: Fri, 19 Jan 2001 20:06:27 -0600
 From: Dallas Kropka [EMAIL PROTECTED]
 To: Michael Kimsal [EMAIL PROTECTED]
 Cc: PHP LIST [EMAIL PROTECTED]
 Subject: RE: [PHP] Another Guru's Help Needed...

 Most likely but how do I strip it to determine the string of keywords?

 Note to list: I cant depend on site logs.

 -Original Message-
 From: Michael Kimsal [mailto:[EMAIL PROTECTED]]
 Sent: Friday, January 19, 2001 7:33 PM
 To: Dallas Kropka
 Cc: PHP LIST
 Subject: Re: [PHP] Another Guru's Help Needed...


 Isn't this info in the HTTP_REFERER field normally?


 Dallas Kropka wrote:

  I need to grab the referring search engines keywords used in the
search.
I
  need to be able to determine what the keywords were, and what the
engine
  was... (Lycos, AltaVista etc...).
 
  How can I do this, where can I find info on this, or is there
something
 that
  will do this already that I can integrate into my code?


 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail:
[EMAIL PROTECTED]




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]