• I am running Windows 10 Pro IIS Manager (V10.0.14933.0) on my PC.
    I install via Web platform > WordPress 4.7.3 and the associated PHP, SQL etc..
    I Start https://localhost/Wordpress/index.php the next error appears

    HTTP Error 500.0 – Internal Server Error
    File monitoring is enabled for a file which could not be found

    Detailed Error Information:
    Module FastCgiModule
    Notification ExecuteRequestHandler
    Handler PHP55_via_FastCGI
    Error Code 0x80070003

    Can somebody help me out?

    Thx Rob70

    • This topic was modified 7 years, 11 months ago by Rob.
Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi @rob70
    Maybe if you can try setting “Enable 32bit Applications” option in the “Advanced Settings” of the application pool to “true“.

    Please advise
    Thanks

    Thread Starter Rob

    (@rob70)

    Yes “Enable 32bit Applications” is working, thanks
    One problem left

    Login wordpress https://192.168.2.1/wordpress/index.php the welkom message is displayed

    Login wordpress https://192.168.2.1/wordpress the welkom message is NOT displayed

    Means IIS block index.php. (Set by Default?)

    I test the connection and get this information

    OK Authentication Pass-through authentication (DefaultAppPool:ApplicationPoolldentity)
    !!! Authorization Cannot verify access to path (C:\ inetpub\wwwroot).

    Is this an Authorization question?

    Thx Rob70 I am now 73 (Age)

    • This reply was modified 7 years, 11 months ago by Rob.

    Hello @rob70

    Please add We.config configuration run without PHP

    
    <?xml version="1.0" encoding="UTF-8"?>
    <configuration>
    <system.webServer>
    <rewrite>
    <rules>
    <rule name="Main Rule" stopProcessing="true">
    <match url=".*" />
    <conditions logicalGrouping="MatchAll">
    <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
    <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
    </conditions>
    <action type="Rewrite" url="index.php" />
    </rule>
    </rules>
    </rewrite>
    </system.webServer>
    </configuration>
    
    Thread Starter Rob

    (@rob70)

    Many thxs for your reply, greet
    >Please add Web.config configuration run without PHP
    I did but is NOT working.
    The conflicting information is that I need to run index.php
    General speaking i need permission to run this file..
    https://xxxxx.nl HTTP Error 403.4 – Forbidden (0x80070005)
    https://xxxxx.nl HTTP Error 403.14 – Forbidden (0x00000000)
    If I run next URL’s it is working partly
    https://xxxxx.nl/wordpress/wp-admin/index.php I get my wordpress login screen
    https://xxxxx.nl/wordpress/index.php I get my site
    Only this 2 URL’s works other URL don’t work
    In the wwwroot I have an index.php file that will NOT rum
    Can be 2 reasons
    01 issue of permission
    02 running .php files has to enable?

    Rob70

    • This reply was modified 7 years, 11 months ago by Rob.
    • This reply was modified 7 years, 11 months ago by Rob.
    • This reply was modified 7 years, 11 months ago by Rob.
    • This reply was modified 7 years, 11 months ago by Rob.
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Installing Worpress on my PC using IIS resulting in HTTP Error 500.0’ is closed to new replies.