GotDotnet workspace opened

I just setup a workspace in Gotdotnet for dScribe (CMS project).

Alias : http://workspaces.gotdotnet.com/dscribe

I would like to say thanks to everybody for the nice encouragements I received ;-)

On the workspace you can find a message board if you need to send me some feedback.

And ooops ! In the last files upload, the web config was missing.

Here we go (It's also available on the workspace)

<?xml version="1.0" encoding="utf-8" ?>
<configuration>

  <system.web>

    <!--  DYNAMIC DEBUG COMPILATION
          Set compilation debug="true" to insert debugging symbols (.pdb information)
          into the compiled pageBecause this creates a larger file that executes
          more slowlyyou should set this value to true only when debugging and to
          false at all other timesFor more informationrefer to the documentation about
          debugging ASP.NET files.
    -->
    <compilation defaultLanguage="vb" debug="true" />

    <!--  CUSTOM ERROR MESSAGES
          Set customErrors mode="On" or "RemoteOnly" to enable custom error messages"Off" to disable
          Add <error> tags for each of the errors you want to handle.

          "On" Always display custom (friendlymessages.
          "Off" Always display detailed ASP.NET error information.
          "RemoteOnly" Display custom (friendlymessages only to users not running
           on the local Web serverThis setting is recommended for security purposesso
           that you do not display application detail information to remote clients.
    -->
    <customErrors mode="RemoteOnly" />

    <!--  AUTHENTICATION
          This section sets the authentication policies of the applicationPossible modes are "Windows"
          "Forms""Passport" and "None"

          "None" No authentication is performed
          "Windows" IIS performs authentication (BasicDigestor Integrated Windowsaccording to
           its settings for the applicationAnonymous access must be disabled in IIS
          "Forms" You provide a custom form (Web pagefor users to enter their credentialsand then
           you authenticate them in your applicationA user credential token is stored in a cookie.
          "Passport" Authentication is performed via a centralized authentication service provided
           by Microsoft that offers a single logon and core profile services for member sites.
    -->
    <authentication mode="Forms" >
<forms loginUrl="login.aspx" name="login" protection="All" />
</authentication>

    <!--  AUTHORIZATION
          This section sets the authorization policies of the applicationYou can allow or deny access
          to application resources by user or roleWildcards"*" mean everyone"?" means anonymous
          (unauthenticatedusers.
    -->
    <authorization>
        <deny users="?" /> <!-- Allow all users -->

            <!--  <allow     users="[comma separated list of users]"
                             roles="[comma separated list of roles]"/>
                  <deny      users="[comma separated list of users]"
                             roles="[comma separated list of roles]"/>
            -->
    </authorization>

    <!--  APPLICATION-LEVEL TRACE LOGGING
          Application-level tracing enables trace log output for every page within an application
          Set trace enabled="true" to enable application trace logging.  If pageOutput="true"the
          trace information will be displayed at the bottom of each page.  Otherwiseyou can view the
          application trace log by browsing the "trace.axd" page from your web application
          root
    -->
    <trace enabled="false" requestLimit="10" pageOutput="false" traceMode="SortByTime" localOnly="true" />


    <!--  SESSION STATE SETTINGS
          By default ASP.NET uses cookies to identify which requests belong to a particular session
          If cookies are not availablea session can be tracked by adding a session identifier to the URL
          To disable cookiesset sessionState cookieless="true".
    -->
    <sessionState
            mode="InProc"
            stateConnectionString="tcpip=127.0.0.1:42424"
            sqlConnectionString="data source=127.0.0.1;Trusted_Connection=yes"
            cookieless="false"
            timeout="20"
    />

    <!--  GLOBALIZATION
          This section sets the globalization settings of the application
    -->
    <globalization requestEncoding="utf-8" responseEncoding="utf-8" />
  </system.web>
   <appSettings>
    <add key="setup" value="true" />
    <add key="database" value="dscribe" />
    <add key="datasource" value="YourSQLServer" />
    <add key="userid" value="DatabaseUser" />
    <add key="password" value="DatabasePassword" />
    <add key="timeout" value="" />
    <add key="smtpserver" value="" />
    <add key="ready" value="true" />

  </appSettings>

</configuration>

Generated using PrettyCode.Encoder

No Comments