Mike Kear wrote: > It's Off-Topic for this list, so I guess off line would be better to > handle this, but i have a hosting client who's using PHP on my server, > adn is complaining that its running slow. He says the reason his CMS > is running slowly is because the site is on a windows box, and PHP is > not normally recommended on Windows OS.
Traditionally this is correct. The reason is that traditionally IIS would hand off the request to a php.exe executable that got started once for every request. Obviously there is considerable overhead there. There have been several attempts to improve that execution model and allow one process to handle more requests before dying. Are you using the tradional model or something like FastCGI? Jochem ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;203748912;27390454;j Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:309978 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

