MindTouch Core を IIS8 にインストールしようとしています。インストールは正常に機能しますが、次のメッセージが表示されます。どういう意味ですか?
ASP.NET が完全にインストールされているため、問題になることはありません。また、アプリケーション プールの問題ではありません。すべて試しました。
サイトのweb.config
ファイルは次のとおりです。
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<validation validateIntegratedModeConfiguration="false"/>
<handlers accessPolicy="Read, Execute, Script">
<clear/>
<add name="PHP via FastCGI" path="*.php" verb="*" modules="FastCgiModule" resourceType="Unspecified" scriptProcessor="D:\MindTouch\redist\php\php-cgi.exe"/>
<add name="StaticFile" path="*" verb="*" type="" modules="StaticFileModule,DefaultDocumentModule,DirectoryListingModule" scriptProcessor="" resourceType="Either" requireAccess="Read" preCondition=""/>
</handlers>
<isapiFilters>
<filter name="IsapiRewrite4" path="D:\MindTouch\web\bin\IsapiRewrite4.dll"/>
</isapiFilters>
<defaultDocument>
<files>
<add value="index.php"/>
</files>
</defaultDocument>
</system.webServer>
</configuration>