• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

[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