Advertisement
Guest User

Untitled

a guest
Nov 20th, 2015
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.12 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <!--
  3. For more information on how to configure your ASP.NET application, please visit
  4. http://go.microsoft.com/fwlink/?LinkId=169433
  5. -->
  6. <configuration>
  7. <configSections>
  8. <section name="loggingConfiguration" type="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.LoggingSettings, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.505.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="true"/>
  9. </configSections>
  10. <loggingConfiguration name="" tracingEnabled="true" defaultCategory="General">
  11. <listeners>
  12. <add name="LogBotListener" type="Microsoft.Practices.EnterpriseLibrary.Logging.TraceListeners.EmailTraceListener, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.505.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" listenerDataType="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.EmailTraceListenerData, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.505.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" toAddress="Logbot@talkingninja.com" fromAddress="Logbot@talkingninja.com" subjectLineStarter="Error Caught:" smtpServer="smtp.talkingninja.com" smtpPort="465" formatter="Text Formatter" authenticationMode="UserNameAndPassword" useSSL="true" userName="Amemhave@gmail.com" password="237657@M" traceOutputOptions="LogicalOperationStack, DateTime, Timestamp, ProcessId, ThreadId, Callstack"/>
  13. </listeners>
  14. <formatters>
  15. <add type="Microsoft.Practices.EnterpriseLibrary.Logging.Formatters.TextFormatter, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.505.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" template="Timestamp: {timestamp}{newline}&#xA;Message: {message}{newline}&#xA;Category: {category}{newline}&#xA;Priority: {priority}{newline}&#xA;EventId: {eventid}{newline}&#xA;Severity: {severity}{newline}&#xA;Title:{title}{newline}&#xA;Machine: {localMachine}{newline}&#xA;App Domain: {localAppDomain}{newline}&#xA;ProcessId: {localProcessId}{newline}&#xA;Process Name: {localProcessName}{newline}&#xA;Thread Name: {threadName}{newline}&#xA;Win32 ThreadId:{win32ThreadId}{newline}&#xA;Extended Properties: {dictionary({key} - {value}{newline})}" name="Text Formatter"/>
  16. </formatters>
  17. <categorySources>
  18. <add switchValue="All" autoFlush="false" name="General">
  19. <listeners>
  20. <add name="LogBotListener"/>
  21. </listeners>
  22. </add>
  23. </categorySources>
  24. <specialSources>
  25. <allEvents switchValue="All" autoFlush="false" name="All Events">
  26. <listeners>
  27. <add name="LogBotListener"/>
  28. </listeners>
  29. </allEvents>
  30. <notProcessed switchValue="All" autoFlush="false" name="Unprocessed Category">
  31. <listeners>
  32. <add name="LogBotListener"/>
  33. </listeners>
  34. </notProcessed>
  35. <errors switchValue="All" autoFlush="false" name="Logging Errors &amp; Warnings">
  36. <listeners>
  37. <add name="LogBotListener"/>
  38. </listeners>
  39. </errors>
  40. </specialSources>
  41. </loggingConfiguration>
  42. <system.net>
  43. <mailSettings>
  44. <smtp from="amemhave@gmail.com">
  45. <network host="smtp.gmail.com" port="465" userName="amemhave@gmail.com" password="TOTALLYMYPASSWORD" enableSsl="true"/>
  46. </smtp>
  47. </mailSettings>
  48. </system.net>
  49. <connectionStrings>
  50. <add name="MySQLConnection" connectionString="server=localhost; port=3306; database=talkingninjaLIVE; uid=DBAdapter; pwd=ed5e1aabb577fb81c298; Allow User Variables=True;"/>
  51. </connectionStrings>
  52. <system.webServer>
  53. <directoryBrowse enabled="false"/>
  54. <defaultDocument>
  55. <files>
  56. <clear/>
  57. <add value="Login.aspx"/>
  58. <add value="Registration.aspx"/>
  59. </files>
  60. </defaultDocument>
  61. <httpProtocol>
  62. <customHeaders>
  63. <clear/>
  64. <add name="Powered By" value="ASP.NET"/>
  65. </customHeaders>
  66. </httpProtocol>
  67. </system.webServer>
  68. <system.web>
  69. <compilation debug="true" targetFramework="4.0">
  70. <assemblies>
  71. <add assembly="MySql.Data, Version=6.9.7.0, Culture=neutral, PublicKeyToken=C5687FC88969C44D"/>
  72. <add assembly="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
  73. </assemblies>
  74. </compilation>
  75. <httpRuntime/>
  76. <customErrors mode="Off"/>
  77. <pages controlRenderingCompatibilityVersion="4.0"/>
  78. </system.web>
  79. <runtime>
  80. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  81. <dependentAssembly>
  82. <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35"/>
  83. <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
  84. </dependentAssembly>
  85. <dependentAssembly>
  86. <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35"/>
  87. <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
  88. </dependentAssembly>
  89. </assemblyBinding>
  90. </runtime>
  91. <appSettings>
  92. <add key="ForvoAPIKey" value="da2c2fef99904292bef89df204499320 "/>
  93. <add key="MicrosoftTranslator" value="J20q8+pwhhZXtYxvzzVdL2Di/q5Go+lVS+kFcB20MAg="/>
  94. </appSettings>
  95. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement