CodingForums.com

CodingForums.com (http://www.codingforums.com/index.php)
-   HTML & CSS (http://www.codingforums.com/forumdisplay.php?f=13)
-   -   web-confiq File (http://www.codingforums.com/showthread.php?t=285207)

africaon 01-03-2013 04:23 PM

web-confiq File
 
Hi I have hosting package with Godaddy and some of my website displays error messages

I was given this code to insert in my web-confiq File but do not know where and also the indentation. Please assist

Code:

<configuration>
    <system.webServer>
        <httpErrors errorMode="Detailed" />
        <asp scriptErrorSentToBrowser="true"/>
    </system.webServer>
    <system.web>
        <customErrors mode="Off"/>
        <compilation debug="true"/>
    </system.web>
</configuration>


This is my web confiq file below


Code:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.webServer>
    <rewrite>
      <rules>
                        <rule name="wordpress" patternSyntax="Wildcard">
                                <match url="*"/>
                                        <conditions>
                                                <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>

Please assist in combining the two codes. I need to come up with a new web-confiq file to locate the error message

kind regards


All times are GMT +1. The time now is 02:17 AM.

Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.