Web.config Is Not Working While Hosting A Web Page

Aug 27, 2010

I have created a website using visual studio 2010 on .net3.5 framework. When I run the site on my local system it works fine but on the external hosting server I am getting a 500 internal server error. Upon speaking to the hosting service provider, they advised me to delete the web.config file, having followed their instructions, the website works fine without the web.config file. But now I have added AJAX controls on one of the pages and am not able to run this page on the hosting server. Do I have to configure my web.config file in order to get this working. Could someone please help me with this.

View 4 Replies


Similar Messages:

Uploaded A Working Application To Hosting Web Server And One Page?

Nov 18, 2010

I've uploaded a working application to my hosting web server and one page that I was working throws an error. In my web.config I have setting like this:
....
<customErrors mode="Off" defaultRedirect="errorpage.htm">
<error statusCode="403" redirect="bannedaddress.htm" />
<error statusCode="404" redirect="filenotfound.htm" />
</customErrors>
<compilation debug="true" targetFramework="4.0">
....

and I am redirected to errorpage.htm even though customErrors mode is set to Off. I can't find any info about the error (other than it occured) in the log files. The question is: what should I change to be able to debug the app?

View 2 Replies

Security :: How To Encrypt Connection String In Web.config On A Shared Hosting

Jun 1, 2010

I have looked for ideas on this and read several posts but none of them seems to be because the problem is that web.com (my host) doesnt allow us to update web.config on their server programmatically. I can use example codes and encrypt them on my local pc but heres the error i get when I run them on the live site:

An error occurred loading a configuration file: Request for the permission of type 'System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed. (machine.config)

View 2 Replies

Web Forms :: Setting Web Config For Sending Email Through 1and 1 Hosting?

Feb 21, 2011

I have mailbox with forward to gmail acound in 1and1 hosting

the code:

<system.net>
<mailSettings >
<smtp
deliveryMethod="Network" >

[Code].....

The code is not working and not bringing me an error.

View 4 Replies

Security :: Encrypting Connection String In Web.config In Shared Hosting Environment?

May 27, 2010

My problem is that I'm going to have a SQL Server database and website that accesses that database via a hosting provider, most likely GoDaddy.com, using ASP.Net. I need to make sure the connection string in the web.config file is as secure as possible, because the database will actually be storing trivia questions for a game I'm developing, and the clients will be accessing these questions, saving specific state related details, and other details, to the database, so every player that plays the game will have their details stored in this database. I need to ensure hacking is very difficult to accomplish.

From my research it appears as though the only viable solution for your web.config when you've got a hosting account with something like GoDaddy.com is to use SQL Server security to connect to your SQL Server database and place those details in the web.config file. Is this correct? It seems that this is the most likely scenario for most users, because we don't have access to our hosting providers IIS servers in order to use Windows authentication with SQL Server access and then use DPAPI encryption from there.

View 2 Replies

Configuration :: After Hosting Com Components Are Not Working?

Dec 30, 2010

I am trying to convert the Plugin's (Interfaces) developed in VB6.0 to .NET web services. Basically what I am trying to do is that making use of VB6.0 dlls in the web services. This works fine when I am checking the services in the debug mode but It fails to work in the Host enviornment(From IIS).Server: windows 2003Error : Creating an instance of the COM component with CLSID {3FF6ABC1-5FAC-45D3-AFA5-B3472443CAA7} from the IClassFactory failed due to the following error: 80010105.

View 3 Replies

AJAX :: AsyncFileUpload Not Working On Hosting Server?

Sep 8, 2010

i AsyncFileUpload this is working fine in my local server but when i upload the files into my hosting server no file is uploading. this is my code to save the file.

Protected Sub tbnSave_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles tbnSave.Click
Dim cmd As New MySqlCommand
Dim cn As New MySqlConnection
cn.ConnectionString = "server=localhost;User Id=root; password=papidm;database=jis;Persist Security Info=True"
cn.Open()
cmd.Connection = cn
cmd.CommandType = System.Data.CommandType.Text
cmd.CommandText = "Insert into PhotoAlbum (Photo,PhotoName,Descr,AlbumId) values (@Photo,@PhotoName,@Descr,@AlbumID)"
cmd.Parameters.Add(New MySqlParameter("@Photo", "~/images/" + txtFileName.Text + ".jpg"))
cmd.Parameters.Add(New MySqlParameter("@PhotoName", txtFileName.Text))
cmd.Parameters.Add(New MySqlParameter("@Descr", TextBox2.Text))
cmd.Parameters.Add(New MySqlParameter("@AlbumID", ddlArchive.SelectedValue))
cmd.ExecuteNonQuery()
fileName = MapPath("~/images/") + txtFileName.Text + ".jpg"
AsyncFileUpload1.SaveAs(fileName)
End Sub

View 3 Replies

Configuration :: Database Is Not Working In Shared Hosting?

Jul 13, 2010

i have just completed my website in asp.net using visual studio 2008 with sql server 2005 express edition.

my database is mdf file based..

i have uploaded my website in godaddy with the help of cute ftp..

but the problem is that my database is not working..

Is it ok to upload complete website along with database using cute ftp? or i have to create separate database for it and make connections...

i read somewhere that file based website doesnot required any connection, database is simply uploaded along with website..

View 2 Replies

HttpHandlers / Modules :: URL Rewrite Not Working On Hosting Server?

Mar 19, 2010

I have using code provided by this article :

[URL]

It works fine with IIS 7.0 on localhost but when i upload my site and try to access the rules written for url rewrite it gives me error message of 404 ..

here is my web.config file the require changes for Windows server 2003 IIS 6.0

[Code]....

View 5 Replies

ManagedFusion Url Rewriting Not Working On Godaddy 4th Generation Hosting?

Feb 4, 2011

I recently switched from Godaddy shared hosting to Godaddy 4th generation hosting or grid hosting.

As per my other question UrlRewriter.NET with .NET 4.0 and Godaddy not working I was unable to get UrlRewriter.NET to work.

So now I have tried ManagedFusion. It works locally but does not work on the Godaddy servers BUT the errors are different and I sense that this might actually work and I have done something wrong in the configuration.

So my web.config settings are (condensed version)

<configuration>
<configSections>
<section name="managedFusion.rewriter" type="ManagedFusion.Rewriter.Configuration.ManagedFusionRewriterSectionGroup"/>

[Code]....

Now this works perfectly fine on my local machine (Visual Studio 2010) but when I upload it to Godaddy servers I get a 404 that says it can't find /Campaign/List.aspx.

And on top of this it also goes to SSL, which I don't want as the SSL cert on that account is for a different subdomain and hence throws an SSL error.

Is there something I am doing wrong? It seems this time the URL module is handling all requests and this looks like I have configured it incorrectly somehow.

Additional Information
Running IIS 7.0 - Integrated Pipeline
.NET 4.0 Godaddy
4th Generation Hosting

View 1 Replies

IIS Configuration :: Uploading Files Not Working On Shared Web Hosting

May 7, 2015

I am using below link to upload files , the code wrking fine on my system with win 8 and studio2012 but when i put code on my hosting with shared hosting package the page giving error . my hosting runs on iis7.5. what to keep in web.config and what to remove. URL...

View 1 Replies

IIS Configuration :: URL Routing Not Working On Shared Hosting Server

May 7, 2015

i have implemented URL Routing in asp.net website using article (URL...) and it working file offline on my local system but when im trying to run online (from my hosting site) then it is showing error..

HTTP Error 404.0 - Not Found..

The resource you are looking for has been removed, had its name changed, or is temporarily unavailable.

View 1 Replies

Security :: Membership Working In Local DB But Not In The DB From Hosting Company Server

Jun 28, 2010

I'm using membership that created by asp.net configuration when you create users with roles when you create a user for your website using asp.net configuration in Visual Studio

After uploading my project and creating the Database, I can't login using the users that i have created, i'm 100% sure im using the right username and password but still can't login but they are working 100% in my local DB

after few search in google i found the solution is to execute the following command:

[Code]....

View 3 Replies

Web Forms :: AJAX Control Toolkit Not Working On Shared Hosting?

Apr 19, 2013

I have crated a web page in which i have used some ajax extension   its running properly here

but  when i have host that page it is giving error

CodeFile="Login.aspx.cs" Inherits="Login" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">

how to resolve this error

View 1 Replies

Configuration :: Configuration Error In Web.config [when Uploading To Hosting]?

Nov 2, 2010

when developing in my pc , all is fine , but when upload to hosting , it show error ~

[img]http://image.love9cube.net/images/sadsadcgc.jpg[/img]

View 2 Replies

Web Config Location Tag Not Working

Sep 23, 2010

We have an application that is making use of the location tag in the web.config file at the machine level - meaning like :WindowsMicrosoft.NETFrameworkv2.0...CONFIGweb.config, the one that applies to the whole server - this application has lots of virtual directories under it and for each one there is a <location path="IIS Web App NameCustomerA">...This seems to work ok for that app. But then we have a second app on the same server, and I'd like to add location tags to that app's web.config file - meaning the local web.config file in the app's directory - and have each one of them specify a location tag in a similar way

View 1 Replies

C# - Web.config DefaultRedirect Not Working?

Nov 25, 2010

I have a problem to redirect to my error page. In global.asax I have implemented Application_Error, so I can catch and log errors.

If I put this:

<customErrors mode="On" defaultRedirect="~/Errore.html" />

everything works...

with this:

<customErrors mode="On" defaultRedirect="~/Errore.aspx" />

it is show the page: http://localhost:3821/Errore.aspx?aspxerrorpath=/pagine/Ricerca.aspx

BUT on Errore.aspx Page_load() or OnError() are not called, and the page showed is just the standar one, (runtime error) that suggest to change to off the mode in customErrors.

This is on my pc, so there is not IIS... ...and I don't use authentication (not yet)

UPDATE:

The error occur in Global.aspx, in Application_Start() . When the error occur, redirecting to an .aspx page will cause an error because the app is not up. The solution is to redirec to an html page.

View 1 Replies

Security :: Web.config Not Working?

Feb 6, 2011

I have done forms authentication a couples of times before but this time I cant get my head around something.Somehow altough the user authenticated,the destination page does not get this.The destination page is called Approval.aspx and is located in the /Admin directory which is secured by having its own web config with those settings:

[Code]....

If I remove the <deny users="?" />,then everything works fine but obviously everyone has access to that page.I only want that the user of role Admin can access it. I have implemented the standard VS 2010 login controland the user gets to the destination page with a response redirect:

[Code]....

Why does the destination page not realize that the user is authenticated and does not treat the useras a user in role "Admin"?

[Code]....

While debugging the login page I can see that the user has the right role "Admin".

View 9 Replies

OnServerClick Not Working - ClientIDMode In Web.config

Jan 5, 2011

The event is simply not firing, what am I missing?

Code for the button:
<input type="button" class="button hide" id="savetext" style="float:right;" value="Hello" runat="server" OnServerClick="savetext_Click"/>

And the code that is generated (i.e. when opened in a browser and the source is viewed) is this:
<input onclick="__doPostBack('ctl00$Main$savetext','')" name="ctl00$Main$savetext" type="button" id="savetext" style="float:right;" class="button hide" value="Save to text" />

I've got <pages clientIDMode="Static" /> in web.config but the name and generated onclick event are prefixed despite that. Server side code:
Protected Sub savetext_Click(ByVal sender As Object, ByVal e As System.EventArgs)
End Sub

To be clear, my goal is to register a click on a button server-side, not just client-side.

View 1 Replies

Security :: Authentication In Web.config Not Working?

Feb 2, 2010

I have a basic intranet website for my company but there is one page that cannot allow anonymous as I need to grab the user's login. I created the site and everything works perfectly on my development machine. once moved to the production server it no longer works.

Here is the problem: I can get the login prompt when going to the secure page, but when trying to login I get a "401.1 - Unauthorized", even when trying to login as a server administrator. Here is the authentication portion in my web.config:

[Code]....

I have done this before and always gotten it to work. I hope I am just missing something very simple...

View 5 Replies

Security :: Web.Config Authorization Not Working At All?

Sep 30, 2010

I'm using a Custom Role Provider for authorization.

There are 2 roles: "VIEWER" and "SYSTEM_ADMINISTRATOR".

I have set up my role for my account as "VIEWER".

Roles.GetRolesForUser(this.User.Identity.Name) returns "VIEWER"
User.IsInRole("SYSTEM_ADMINISTRATOR") returns false

Web.Config contains below:

<location path="Administration">
<system.web>
<authorization>
<allow roles="SYSTEM_ADMINISTRATOR"/>
<deny users="*"/>
</authorization>
</system.web>
</location>

However, I can still access the ~/Administration pages.

Even if I change the web.config to:

<location>
<system.web>
<authorization>
<deny users="*"/>
</authorization>
</system.web>
</location>

I can still access any of the pages, but I shouldn't be able to access any page when this is set. Correct?

I'm pretty sure my Role Manager is working fine (see above calls to User and Roles), but here's the config:

<roleManager enabled="true" defaultProvider="MyRoleProvider" >
<providers>
<clear/>
<add type="MyNamespace.MyRoleProvider" name="MyRoleProvider"/>
</providers>
</roleManager>

I'm testing this on my local dev environment using Cassini and on a test web server running IIS 6. Both systems/sites work the same way and allow anyone access to any page. Both systems/sites also return correct data when programmatically checking Roles.GetRolesForUser and User.IsInRole.

View 1 Replies

Web Forms :: Hosting User Control In Page

Feb 11, 2011

I need a folder/file browser control in my ASP.Net page I have created a windows user control using C# and added it to my ASP.net page Here is the source code of it:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head><title>
Untitled Page
</title></head>
<body>
<form name="form1" method="post" action="default.aspx" id="form1">
<div>
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUJNzgzNDMwNTMzZGTRhODPdkC39bBdueaWdgWCc3VlWQ==" />
</div>
<div>
<OBJECT id="MyWinControl1" height="200" width="200" classid="http:CISFolderFileBrowser.dll#CISFolderFileBrowser.UserControl1" VIEWASTEXT>
<PARAM NAME="Title" VALUE="My Title">
</OBJECT>
</div>
</form>
</body>
</html>

I am running this page using ASP.Net Development Server But the control is not displayed in browser and no error message is displayed I have checked this url too: [URL]

View 6 Replies

Web.config Doubts While Working With Legacy Application

Mar 31, 2011

Coding with ASP.NET 2.0 C# on a legacy application. The database is in MySQL I would like to know whether anything breaks if I delete the following lines from my code

First <xhtmlConformance mode="Strict"/>
Then,
<compilers>
<compiler language="c#"
type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"
extension=".cs"
compilerOptions="/d:DEBUG;trACE"/>
</compilers>
And last,
<browserCaps>
<case match="^Mozilla/5.0 ([^)]*) (Gecko/[-d]+)(?'VendorProductToken' (?'type'[^/d]*)([d]*)/(?'version'(?'major'd+)(?'minor'.d+)(?'letters'w*)))?">
browser=Gecko
<filter>
<case match="(Gecko/[-d]+)(?'VendorProductToken' (?'type'[^/d]*)([d]*)/(?'version'(?'major'd+)(?'minor'.d+)(?'letters'w*)))">
type=${type}
</case>
<case>
<!-- plain Mozilla if no VendorProductToken found -->
type=Mozilla
</case>
</filter>
frames=true
tables=true
cookies=true
javascript=true
javaapplets=true
ecmascriptversion=1.5
w3cdomversion=1.0
css1=true
css2=true
xml=true
tagwriter=System.Web.UI.HtmlTextWriter
<case match="rv:(?'version'(?'major'd+)(?'minor'.d+)(?'letters'w*))">
version=${version}
majorversion=0${major}
minorversion=0${minor}
<case match="^b" with="${letters}">
beta=true
</case>
</case>
</case>
<!-- AppleWebKit Based Browsers (Safari...) //-->
<case match="AppleWebKit/(?'version'(?'major'd?)(?'minor'd{2})(?'letters'w*)?)">
browser=AppleWebKit
version=${version}
majorversion=0${major}
minorversion=0.${minor}
frames=true
tables=true
cookies=true
javascript=true
javaapplets=true
ecmascriptversion=1.5
w3cdomversion=1.0
css1=true
css2=true
xml=true
tagwriter=System.Web.UI.HtmlTextWriter
<case match="AppleWebKit/(?'version'(?'major'd)(?'minor'd+)(?'letters'w*))(.* )?(?'type'[^/d]*)/.*( |$)">
type=${type}
</case>
</case>
<!-- Konqueror //-->
<case match=".+[K|k]onqueror/(?'version'(?'major'd+)(?'minor'(.[d])*)(?'letters'[^;]*));s+(?'platform'[^;)]*)(;|))">
browser=Konqueror
version=${version}
majorversion=0${major}
minorversion=0${minor}
platform=${platform}
type=Konqueror
frames=true
tables=true
cookies=true
javascript=true
javaapplets=true
ecmascriptversion=1.5
w3cdomversion=1.0
css1=true
css2=true
xml=true
tagwriter=System.Web.UI.HtmlTextWriter
</case>
<!-- Opera //-->
<case match="Opera[ /](?'version'(?'major'd+)(?'minor'.(?'minorint'd+))(?'letters'w*))">
<filter match="[7-9]" with="${major}">
tagwriter=System.Web.UI.HtmlTextWriter
</filter>
<filter>
<case match="7" with="${major}">
<filter>
<case match="[5-9]" with="${minorint}">
ecmascriptversion=1.5
</case>
<case>
ecmascriptversion=1.4
</case>
</filter>
</case>
<case match="[8-9]" with="${major}">
ecmascriptversion=1.5
</case>
</filter>
</case>
</browserCaps>

I believe they all are not needed. Are they needed at all at present? What I would really like to know is whether anything breaks if I delete them. I would also like to know whether the snippet given below is relevant for ASP.NET 2.0

<sessionState mode="InProc"
stateConnectionString="tcpip=127.0.0.1:42424"
sqlConnectionString="data source=127.0.0.1;Trusted_Connection=yes"
cookieless="false"
timeout="100"/>

when my application is using MySQL as database and authentication mode is windows.

View 1 Replies

Visual Studio :: Web.config Transform Is Not Working?

Apr 16, 2010

I have easy to reproduce issue with web.config transform. Steps below are causing major grief.

Create new Web Application Project in VS 2010. Open web.debug.config, put following inside it

<?xml version="1.0"?>
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform" xdt:Transform ="Replace">
<applicationSettings>
<MyProject.Properties.Settings>
<setting name="Username" serializeAs="String">
<value>username</value>
</setting>
</MyProject.Properties.Settings>
</applicationSettings>
</configuration>

Now deploy to file system on local hardrive. Open resulting web.config and see <value> setting has extrac carriag return and bunch of tabs in front of it..

Screenshots can be downloaded below.

[URL]

View 1 Replies

C# - How To Retrieve The URL Address Of A Page Hosting Composite Control

Dec 8, 2010

I have a composite control, I need to get the address of page hosting it.

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved