wsp-10269: new defaults for extension paths and new code for finding installed extensions

This commit is contained in:
Olov Karlsson 2014-11-10 16:41:00 +01:00
parent 7c8a55c858
commit 5baacea349
4 changed files with 56 additions and 58 deletions

View file

@ -6070,3 +6070,15 @@ SELECT
WHERE [RDSCollectionId] in (SELECT [ID] FROM [RDSCollections] where [ItemId] = @ItemId )
RETURN
GO
-- wsp-10269: Changed php extension path in default properties for IIS70 and IIS80 provider
update ServiceDefaultProperties
set PhpPath='%PROGRAMFILES(x86)%\PHP\php-cgi.exe'
where ProviderId in(101, 105)
update ServiceDefaultProperties
set Php4Path='%PROGRAMFILES(x86)%\PHP\ph.exe'
where ProviderId in(101, 105)
GO