Help with Word Press

Discussion in 'Third-party applications' started by Melissa, Oct 27, 2015.

Tags:
  1. Hi All,

    Trying to install wordpress. When I click through to the link it give me the following message. What am I doing wrong?

    Server Error in '/wordpress' Application.
    Configuration Error
    Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.

    Parser Error Message: Could not load file or assembly 'CMS.OutputFilter' or one of its dependencies. The system cannot find the file specified. (E:\web\callforhelp\htdocs\web.config line 53)

    Source Error:

    An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.

    Source File: E:\web\callforhelp\htdocs\web.config Line: 53

    Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.34249
     
  2. martino

    martino DiscountASP.NET Staff

    Looks like your inheriting settings from the root application onto your Wordpress directory.

    See this web page article on how to prevent web.config inheritance here: http://stackoverflow.com/questions/...ld-web-application-using-inheritinchildapplic

    Basically you have to download your web.config file located in the root of your site account. Open it with a text editor like Notepad.

    Look for certain sections that your child application (in your case Wordpress) is calling on from your parent web.config file and add the following setting to prevent the rule from propagating down to the child applications:

    Code:
    <location path="." inheritInChildApplications="false">
    
    <!-- Stuff you don't want to pass down to the child application is in here. -->
    
    </location>
    A better example can be found in the web page article above.

    Code:
    <!-- disable inheritance for the connectionStrings section -->
    <location path="." inheritInChildApplications="false">
       <connectionStrings>
       </connectionStrings>
    </location>
    
    <!-- leave inheritance enabled for appSettings -->
    <appSettings>
    </appSettings>
    
    <!-- disable inheritance for the system.web section -->
    <location path="." inheritInChildApplications="false">
       <system.web>
            <webParts>
            </webParts>
            <membership>
            </membership>
    
            <compilation>
            </compilation>
          </system.web>
    </location>
     
    mjp and RayH like this.

Share This Page