• The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

[solved] App Request Routing and Advanced Logging

C

ChristianE

Guest
Hello everyone,

Just wanted to give you this information. My Plesk sites broke after installing MS Advanced Logging and App Request Routing 2.0, the application pools would crash and the site would no longer be served.

I found out that MS is installing some of it's modules in the C:\Program Files (x86)\IIS folder where by default the plesk users which are assigned to the application pools don't have access to read/execute the .dll files.

So I added the following two lines to the DiskSecurity.xml file to get rid of the problem. Those two lines should make sure both 32bit and 64bit installations get their IIS folder settings corrected.

Regards, Christian Ehlers

<!-- IIS Modules -->
<Entry AccounType="1" Account="Psacln" Path="%ProgramFiles(x86)%" SubPath="IIS" AceFlags="ThisFolderSubfoldersAndFiles"
AccessMask="ReadAndExecute" EntryFlags="0x8" />
<Entry AccounType="1" Account="Psacln" Path="%ProgramFiles%" SubPath="IIS" AceFlags="ThisFolderSubfoldersAndFiles"
AccessMask="ReadAndExecute" EntryFlags="0x8" />
 
Back
Top