[PHP-DEV] Re: Running 4.3.x and 5.0.x on WinXP/Apache1.3
In a message dated 11/15/2003 1:08:59 AM Eastern Standard Time, GPHemsley writes: Forgive me if this is the wrong place to ask, but I'd like to be able to run both the latest version of the 4.3.x branch and the 5.0.x branch simultaneously, differentiating only by extension (.php vs. .php5). I am running Windows XP Professional and Apache 1.3, and would like to be able to do this for both my own developmental purposes and for whatever bugs I may find for my current setup. If this isn't the right place to ask, I'd appreciate any insight into where I should ask. Thanks, Gordon Hemsley Just wondering if anyone has any ideas on this; it seems to have gotten lost in the shuffle. Gordon Hemsley
[PHP-DEV] Re: Running 4.3.x and 5.0.x on WinXP/Apache1.3
php.windows is probably a better place, or php.general.. Anyway, I use this: LoadFile C:/PHP/php4ts.dll LoadModule php4_module c:\php\sapi\php4apache.dll AddType application/x-httpd-php .php AddType application/x-httpd-php-source .phps ScriptAlias /php3/ "c:/php3/" ScriptAlias /php4/ "c:/php/" ScriptAlias /php5/ "D:/php5/" AddType application/x-httpd-php5 .php5 Action application/x-httpd-php5 "/php5/php.exe" AddType application/x-httpd-php4 .php4 .phtml Action application/x-httpd-php4 "/php4/php.exe" AddType application/x-httpd-php3 .php3 Action application/x-httpd-php3 "/php3/php.exe" -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com ## Please, if you are using windows, you may be infected by Swen. Please go here to find out more: http://us.mcafee.com/virusInfo/default.asp?id=helpCenter&hcName=swen http://securityresponse.symantec.com/avcenter/venc/data/[EMAIL PROTECTED] ## <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > In a message dated 11/15/2003 1:08:59 AM Eastern Standard Time, GPHemsley > writes: > Forgive me if this is the wrong place to ask, but I'd like to be able to run > both the latest version of the 4.3.x branch and the 5.0.x branch > simultaneously, differentiating only by extension (.php vs. .php5). I am running Windows XP > Professional and Apache 1.3, and would like to be able to do this for both my > own developmental purposes and for whatever bugs I may find for my current > setup. If this isn't the right place to ask, I'd appreciate any insight into > where I should ask. > > Thanks, > Gordon Hemsley > Just wondering if anyone has any ideas on this; it seems to have gotten lost > in the shuffle. > > Gordon Hemsley > -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php
[PHP-DEV] #26153
Hi Can someone with karma take car of http://bugs.php.net/26153 ? It will also fix the file for Beta 3 :) didou -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP-DEV] #26153
done. On Mon, 17 Nov 2003, Mehdi Achour wrote: >Hi > >Can someone with karma take car of http://bugs.php.net/26153 ? It will >also fix the file for Beta 3 :) > >didou > -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php
[PHP-DEV] Re: ZTS issues
> I have been looking at the IIS isapi issues and came up with the > following patch: > > http://www.ctindustries.net/patches/zts-php5.diff.txt Rob, I've done some work in the past on ISAPI threading issues (although I by no means claim to understand how all the ZTS stuff works). Can you explain why you added the calls to ts_free_thread() after the DLL_PROCESS_ATTACH and then each call to HttpExtensionProc()? In both cases the actual thread under IIS does continue to exist and can be called on again when a new HTTP request arrives at the server. It would appear to me that this change would be causes PHP to have to reinitialize with each request. Is there a specific issue that you were able to fix with this change? Michael Sisolak [EMAIL PROTECTED] __ Do you Yahoo!? Protect your identity with Yahoo! Mail AddressGuard http://antispam.yahoo.com/whatsnewfree -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php