473,395 Members | 1,504 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

I'm totally stumped - IIS not working on two separate machines - 500 Internal Server Error

Hello - I'm having a serious problem with IIS on Windows XP pro.

Whenever I try to run ASP pages, I get

HTTP 500 - Internal server error

This behaviour happens identically, on two 'totally independent' machines. I
am trying to run Visual Studio 2003, however, the problem occurs before any
of this development software (or the CLR) is even installed.

Both machines are 'fully patched' via windows update. The problem however
occurs before and after patching.

I'm very surprised that I can't find any information on technet etc. The
fact that the two machines are exhibiting identical behaviour seems very
strange to me.

If anyone can point me in the right direction, I'd be most grateful. My
deadline is fast approaching for this site and, if I can't resolve this soon
I'll have to look at (shudder) other web servers.

Cheers
DS
Nov 18 '05 #1
6 1774
First, I wish to clarify whether you mean ASP or ASP.NET pages as they
require different component and setting to run.

Second, have you had your virtual directory being properly set up?

"Damien Sawyer" <da**********@yahoo.com.au> ???
news:d8**************************@posting.google.c om ???...
Hello - I'm having a serious problem with IIS on Windows XP pro.

Whenever I try to run ASP pages, I get

HTTP 500 - Internal server error

This behaviour happens identically, on two 'totally independent' machines. I am trying to run Visual Studio 2003, however, the problem occurs before any of this development software (or the CLR) is even installed.

Both machines are 'fully patched' via windows update. The problem however
occurs before and after patching.

I'm very surprised that I can't find any information on technet etc. The
fact that the two machines are exhibiting identical behaviour seems very
strange to me.

If anyone can point me in the right direction, I'd be most grateful. My
deadline is fast approaching for this site and, if I can't resolve this soon I'll have to look at (shudder) other web servers.

Cheers
DS

Nov 18 '05 #2
Make sure the extensions have been registered with your IIS server. Have you
installed the .Net Framework 1.1 to your IIS web server?

Check under services and make sure everything relating to web services is
running. Make sure IIS is running (you wouldn't believe how many times
people forget this one). Ensure the location of the ASP files have proper
permissions. ASP.NET folders need each folder to be Configured under
Application settings.

Did you have IIS running before you installed Visual Studio 2003 to your
machine. If not, uninstall VS.net, get IIS running properly and then install
VS.NET.

Please note that IIS on an XP Pro machine can handle only 10 concurrent
users. If you plan to have more users, then you will need to get the server
version.

--
G Vaught
"Damien Sawyer" <da**********@yahoo.com.au> wrote in message
news:d8**************************@posting.google.c om...
Hello - I'm having a serious problem with IIS on Windows XP pro.

Whenever I try to run ASP pages, I get

HTTP 500 - Internal server error

This behaviour happens identically, on two 'totally independent' machines. I am trying to run Visual Studio 2003, however, the problem occurs before any of this development software (or the CLR) is even installed.

Both machines are 'fully patched' via windows update. The problem however
occurs before and after patching.

I'm very surprised that I can't find any information on technet etc. The
fact that the two machines are exhibiting identical behaviour seems very
strange to me.

If anyone can point me in the right direction, I'd be most grateful. My
deadline is fast approaching for this site and, if I can't resolve this soon I'll have to look at (shudder) other web servers.

Cheers
DS

Nov 18 '05 #3
WJ
"Damien Sawyer" <da**********@yahoo.com.au> wrote in message
news:d8**************************@posting.google.c om...
Hello - I'm having a serious problem with IIS on Windows XP pro.

Whenever I try to run ASP pages, I get

HTTP 500 - Internal server error
"500 series" is Server side error. This means somethings erratic happening
on the IIS server. Does you page interact with any Database such as
SQL/Server ? Check to make sure SQL is up and running and your ASP page or
the account login has proper access right.
This behaviour happens identically, on two 'totally independent' machines. I am trying to run Visual Studio 2003, however, the problem occurs before any of this development software (or the CLR) is even installed.
Both machines are 'fully patched' via windows update. The problem
however occurs before and after patching.

For a developer PC (XP), I always follow the order of installations below:

1. Install XP and IIS at the same time.
2. Enable the Default site that came with the IIS to make sure that your IIS
is operational. If it does not, stop here and try to make the default
website work 1st before you move on. Because at this point your system is
still very simple (XP & IIS).

3. Install .NetFW 1.1.
4. Install MS/SQL Server (developer edition if you have)
5. Install Office Products if you have
6. Install Windows Security patches, SQL Service pack(s) if you have, and
Office Patches (if any)
7. Install VS.Net 2003.
8. At this point, check to make sure Windows/ASPNet account is created along
with the local group "VS Developers" created.
9. Inspect your Local Security Policy (user's right POL).
10. Check SQL Server Service to ensure if SQL is running (if you have it)
11. Reboot
12. Try out your site.

The 500 is very common error. Mostly related to database is not running and
or invalid database specification or bad logon credential. However, a 500
error means that your IIS is operational because it responds with 500. This
means you have successfully installed IIS Server on your box. Don't forget
that if you run the IIS Lock down tool, this could introduce 500 series too.

Good luck to you,

John
..
Nov 18 '05 #4
Can you tell us more about what you do to see the 500 error? Does this
happen on the first request to http://localhost ?

On 7 Jul 2004 19:33:24 -0700, da**********@yahoo.com.au (Damien
Sawyer) wrote:
Hello - I'm having a serious problem with IIS on Windows XP pro.

Whenever I try to run ASP pages, I get

HTTP 500 - Internal server error

This behaviour happens identically, on two 'totally independent' machines. I
am trying to run Visual Studio 2003, however, the problem occurs before any
of this development software (or the CLR) is even installed.

Both machines are 'fully patched' via windows update. The problem however
occurs before and after patching.

I'm very surprised that I can't find any information on technet etc. The
fact that the two machines are exhibiting identical behaviour seems very
strange to me.

If anyone can point me in the right direction, I'd be most grateful. My
deadline is fast approaching for this site and, if I can't resolve this soon
I'll have to look at (shudder) other web servers.

Cheers
DS


--
Scott
http://www.OdeToCode.com
Nov 18 '05 #5
In addition, you can flag IE to give you a message that means something.
View the "Advanced" tab in the IE options dialog. Toggle the "Show friendly
HTTP error messages" checkbox. Then try to access your sight. You should
be given a more descriptive error.

"GVaught" <gl****************@hotmail.com> wrote in message
news:uO**************@TK2MSFTNGP10.phx.gbl...
Make sure the extensions have been registered with your IIS server. Have you installed the .Net Framework 1.1 to your IIS web server?

Check under services and make sure everything relating to web services is
running. Make sure IIS is running (you wouldn't believe how many times
people forget this one). Ensure the location of the ASP files have proper
permissions. ASP.NET folders need each folder to be Configured under
Application settings.

Did you have IIS running before you installed Visual Studio 2003 to your
machine. If not, uninstall VS.net, get IIS running properly and then install VS.NET.

Please note that IIS on an XP Pro machine can handle only 10 concurrent
users. If you plan to have more users, then you will need to get the server version.

--
G Vaught
"Damien Sawyer" <da**********@yahoo.com.au> wrote in message
news:d8**************************@posting.google.c om...
Hello - I'm having a serious problem with IIS on Windows XP pro.

Whenever I try to run ASP pages, I get

HTTP 500 - Internal server error

This behaviour happens identically, on two 'totally independent' machines.
I
am trying to run Visual Studio 2003, however, the problem occurs before

any
of this development software (or the CLR) is even installed.

Both machines are 'fully patched' via windows update. The problem

however occurs before and after patching.

I'm very surprised that I can't find any information on technet etc. The
fact that the two machines are exhibiting identical behaviour seems very
strange to me.

If anyone can point me in the right direction, I'd be most grateful. My
deadline is fast approaching for this site and, if I can't resolve this

soon
I'll have to look at (shudder) other web servers.

Cheers
DS


Nov 18 '05 #6
I think Lau's probably right and it's something to do with your
virtual directory settings. But just in case it's not, I've had
problems in the past with my realtime AV software - some realtime
scanners conflict directly with asp.net. Each time asp.net tries to
compile for first time use, the realtime scanner thinks that the file
has changed and needs scanning. And when it tries to scan it, asp.net
thinks it needs recompiling...and so on.

This makes the file pretty much inaccessibly by asp.net and it throws
a 500 error. If this was the case, you'd need to either exclude the
physical directory which contains your web application from the
realtime scanner or exclude the aspnet_wp process.
"Lau Lei Cheong" <le****@yehoo.com.hk> wrote in message news:<uV**************@TK2MSFTNGP10.phx.gbl>...
First, I wish to clarify whether you mean ASP or ASP.NET pages as they
require different component and setting to run.

Second, have you had your virtual directory being properly set up?

"Damien Sawyer" <da**********@yahoo.com.au> ???
news:d8**************************@posting.google.c om ???...
Hello - I'm having a serious problem with IIS on Windows XP pro.

Whenever I try to run ASP pages, I get

HTTP 500 - Internal server error

This behaviour happens identically, on two 'totally independent' machines.

I
am trying to run Visual Studio 2003, however, the problem occurs before

any
of this development software (or the CLR) is even installed.

Both machines are 'fully patched' via windows update. The problem however
occurs before and after patching.

I'm very surprised that I can't find any information on technet etc. The
fact that the two machines are exhibiting identical behaviour seems very
strange to me.

If anyone can point me in the right direction, I'd be most grateful. My
deadline is fast approaching for this site and, if I can't resolve this

soon
I'll have to look at (shudder) other web servers.

Cheers
DS

Nov 18 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Ville Walveranta | last post by:
I'm trying to get CPAN or, preferably CPANPLUS working on a dual-CPU FreeBSD 4.8 server (with plenty of free memory), and have ran into a problem that I don't appear to resolve. Either of the...
8
by: James | last post by:
Our windows 2000 server will not allow any browser to access asp pages. I have tried browsing to the following url: http://localhost/iisHelp/iis/misc/default.asp What appears in the browser...
4
by: Ravikanth[MVP] | last post by:
Hi It is possible that IIS and SQL Server can reside on Seperate Machines and you can use Integrated Windows Authentication to connect. Ravikanth >-----Original Message-----
7
by: Joe Ross | last post by:
I've been working with Microsoft support for over 3 weeks now on an intermittent General Network Error we're seeing in our production environment between our ASP.NET application and SQL Server...
0
by: none | last post by:
I have followed http://java.sun.com/j2se/1.4.2/docs/guide/idl/GShome.html to build a corba application. When i run the orb, server and client on the same machine it works fine. When i follow...
1
by: Naveen | last post by:
Hi, I'm new to deploying ASP.NET applications. So got a few sample apps like DotNetNuke and others and tried to run them on the webhost account i have. But every time it gives the same error -- ...
9
by: JT | last post by:
Here is the overall structure I will be referring to: End-program ProvideWorkFlow.dll Forms and methods that properly manipulate calls to methods in AccessUtils AccessUtils (a web service)...
5
by: =?Utf-8?B?a25m?= | last post by:
I have a small application that initially loads two .net dlls and the app can run with .NET 1.1 or .NET 2.0. On 32-bit machines I am able to run these apps as a virtual directory under the Default...
8
by: The Natural Philosopher | last post by:
This is so weird. What I am trying to do is to upload files and stuff them in a mysql database. Everything works except the file content is zero. using the load_file command from mysql...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.