Rank: Member
Medals: Joined: 12/8/2008 Posts: 22 Points: 66
Thanks: 0 times Was thanked: 0 time(s) in 0 post(s)
|
I am having a huge problem with Godaddy and hosting blogengine and yetanother forum on my site. The blog is hosted properly on the domain and then I go to host the forum on the subdomain and there seems to be some kind of problem on like 102 of the web.config file that came with the blogengine upload. It seems that something needs to be edited on line 102. Anyways I have also started a thread on Yetanother forum' forum which can be found here http://forum.yetanotherforum.net/yaf_postsm36055_Help-Me-Please-Save-me-YetAnotherForum.aspx#post36055This will give you more of an idea what kind of issues I am having. Below is also the web.config file from the blogengine file which is having issues on line 102. If anyone can help me find and edit line 102 to make both the blogengine and yetanother forum work in the same hosting I would kindly appreciate it. Code:
<?xml version="1.0"?> <configuration> <configSections> <sectionGroup name="BlogEngine"> <section name="blogProvider" requirePermission="false" type="BlogEngine.Core.Providers.BlogProviderSection, BlogEngine.Core" allowDefinition="MachineToApplication" restartOnExternalChanges="true"/> </sectionGroup> </configSections> <BlogEngine> <blogProvider defaultProvider="DbBlogProvider"> <providers> <add name="DbBlogProvider" type="BlogEngine.Core.Providers.DbBlogProvider, BlogEngine.Core" connectionStringName="BlogEngine" /> </providers> </blogProvider> </BlogEngine> <!-- configSource is not implemented in Mono. <connectionStrings configSource="sql.config" /> --> <connectionStrings> <clear/> <add name="LocalSqlServer" connectionString="dummy"/> <!-- Mono complains if LocalSqlServer isn't specified --> <add name="BlogEngine" connectionString="Data Source=new0919703073031.db.4665915.hostedresource.com;User ID=new0919703073031;Password=Hitachi888;persist security info=False;initial catalog=new0919703073031;" providerName="System.Data.SqlClient"/> </connectionStrings> <appSettings> <add key="BlogEngine.FileExtension" value=".aspx"/> <!-- You can e.g. use "~/blog/" if BlogEngine.NET is not located in the root of the application --> <add key="BlogEngine.VirtualPath" value="~/"/> <!-- The regex used to identify mobile devices so a different theme can be shown --> <add key="BlogEngine.MobileDevices" value="(nokia|sonyericsson|blackberry|samsung|sec\-|windows ce|motorola|mot\-|up.b|midp\-)"/> <!-- The name of the role with administrator permissions --> <add key="BlogEngine.AdminRole" value="Administrators"/> <!--This value is to provide an alterantive location for storing data.--> <add key="StorageLocation" value="~/App_Data/"/> <!--A comma separated list of script names to hard minify. It's case-sensitive. --> <add key="BlogEngine.HardMinify" value="blog.js,widget.js,WebResource.axd"/> </appSettings> <system.web> <compilation debug="true"> <assemblies> <add assembly="System.Management, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> </assemblies> </compilation>
<globalization requestEncoding="utf-8" responseEncoding="utf-8" culture="auto" uiCulture="auto"/> <!-- Web.Config Configuration File -->
<httpRuntime enableVersionHeader="false" useFullyQualifiedRedirectUrl="true" maxRequestLength="16384" executionTimeout="3600" requestLengthDiskThreshold="16384"/> <machineKey validationKey="D9F7287EFDE8DF4CAFF79011D5308643D8F62AE10CDF30DAB640B7399BF6C57B0269D60A23FBCCC736FC2487ED695512BA95044DE4C58DC02C2BA0C4A266454C" decryptionKey="BDAAF7E00B69BA47B37EEAC328929A06A6647D4C89FED3A7D5C52B12B23680F4" validation="SHA1" decryption="AES"/> <authentication mode="Forms"> <forms timeout="129600" name=".AUXBLOGENGINE" protection="All" slidingExpiration="true" loginUrl="~/login.aspx" cookieless="UseCookies"/> </authentication> <pages enableSessionState="false" enableViewStateMac="true" enableEventValidation="true"> <controls> <add namespace="Controls" tagPrefix="blog"/> </controls> </pages> <customErrors mode="On"> <error statusCode="404" redirect="~/error404.aspx"/> </customErrors> <membership defaultProvider="DbMembershipProvider"> <providers> <clear/> <add name="SqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="BlogEngine" applicationName="BlogEngine"/> <add name="DbMembershipProvider" type="BlogEngine.Core.Providers.DbMembershipProvider, BlogEngine.Core" passwordFormat="Hashed" connectionStringName="BlogEngine"/> </providers> </membership> <roleManager defaultProvider="DbRoleProvider" enabled="true" cacheRolesInCookie="true" cookieName=".BLOGENGINEROLES"> <providers> <clear/> <add name="SqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="BlogEngine" applicationName="BlogEngine"/> <add name="DbRoleProvider" type="BlogEngine.Core.Providers.DbRoleProvider, BlogEngine.Core" connectionStringName="BlogEngine"/> </providers> </roleManager> <siteMap defaultProvider="PageSiteMap" enabled="true"> <providers> <add name="PageSiteMap" description="The site map provider that reads in the .sitemap XML files." type="BlogEngine.Core.Web.Controls.PageSiteMap, BlogEngine.Core"/> <add name="SecuritySiteMap" description="Used for authenticated users." type="System.Web.XmlSiteMapProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" securityTrimmingEnabled="true" siteMapFile="Web.sitemap"/> </providers> </siteMap> <httpModules> <add name="WwwSubDomainModule" type="BlogEngine.Core.Web.HttpModules.WwwSubDomainModule, BlogEngine.Core"/> <add name="UrlRewrite" type="BlogEngine.Core.Web.HttpModules.UrlRewrite, BlogEngine.Core"/> <add name="CompressionModule" type="BlogEngine.Core.Web.HttpModules.CompressionModule, BlogEngine.Core"/> <add name="ReferrerModule" type="BlogEngine.Core.Web.HttpModules.ReferrerModule, BlogEngine.Core"/> <!--Remove the default ASP.NET modules we don't need--> <remove name="PassportAuthentication"/> <remove name="Profile"/> <remove name="AnonymousIdentification"/> </httpModules> <httpHandlers> <add verb="*" path="file.axd" type="BlogEngine.Core.Web.HttpHandlers.FileHandler, BlogEngine.Core" validate="false"/> <add verb="*" path="image.axd" type="BlogEngine.Core.Web.HttpHandlers.ImageHandler, BlogEngine.Core" validate="false"/> <add verb="*" path="syndication.axd" type="BlogEngine.Core.Web.HttpHandlers.SyndicationHandler, BlogEngine.Core" validate="false"/> <add verb="*" path="sitemap.axd" type="BlogEngine.Core.Web.HttpHandlers.SiteMap, BlogEngine.Core" validate="false"/> <add verb="*" path="trackback.axd" type="BlogEngine.Core.Web.HttpHandlers.TrackbackHandler, BlogEngine.Core" validate="false"/> <add verb="*" path="pingback.axd" type="BlogEngine.Core.Web.HttpHandlers.PingbackHandler, BlogEngine.Core" validate="false"/> <add verb="*" path="opensearch.axd" type="BlogEngine.Core.Web.HttpHandlers.OpenSearchHandler, BlogEngine.Core" validate="false"/> <add verb="*" path="metaweblog.axd" type="BlogEngine.Core.API.MetaWeblog.MetaWeblogHandler, BlogEngine.Core" validate="false"/> <add verb="*" path="rsd.axd" type="BlogEngine.Core.Web.HttpHandlers.RsdHandler, BlogEngine.Core" validate="false"/> <add verb="*" path="css.axd" type="BlogEngine.Core.Web.HttpHandlers.CssHandler, BlogEngine.Core" validate="false"/> <add verb="*" path="js.axd" type="BlogEngine.Core.Web.HttpHandlers.JavaScriptHandler, BlogEngine.Core" validate="false"/> <add verb="*" path="rating.axd" type="BlogEngine.Core.Web.HttpHandlers.RatingHandler, BlogEngine.Core" validate="false"/> <add verb="*" path="opml.axd" type="BlogEngine.Core.Web.HttpHandlers.OpmlHandler, BlogEngine.Core" validate="false"/> <add verb="*" path="blogml.axd" type="BlogEngine.Core.Web.HttpHandlers.BlogMLExportHandler, BlogEngine.Core" validate="false"/> <add verb="*" path="sioc.axd" type="BlogEngine.Core.Web.HttpHandlers.Sioc, BlogEngine.Core" validate="false"/> <add verb="*" path="apml.axd" type="BlogEngine.Core.Web.HttpHandlers.Apml, BlogEngine.Core" validate="false"/> <add verb="*" path="foaf*.axd" type="BlogEngine.Core.Web.HttpHandlers.Foaf, BlogEngine.Core" validate="false"/> </httpHandlers> </system.web> </configuration>
|