473,404 Members | 2,170 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,404 software developers and data experts.

Wierd error (web server not running 1.1)

I have both ASP.NET 1.1 and 2.0 on my system. Most of my sites are 1.1.

All of a sudden when I load any solution I get this error:

VS.NET has detected that the specified Web server is not running ASP.NET
v1.1. You will be unable to run ASP.NET web applications or services.

When I check IIS, under "Web Sites", there is a ERROR stop sign icon next to
"Default Web Site (Stopped)". When I click on it and hit the "play"/start
button I get this error:

Unexpected error 0x8ffe2740 occurred.

Any ideas what's going on and how I can fix this?

Thanks!
Dec 17 '05 #1
7 2730
Try using the following command:

c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspne t_regiis.exe -i

It will make framework v1.1 active.

HTH,
Brett

Dec 18 '05 #2
I tried it but I get the same error. In IIS all the websites show up as
regular yellow folders now. Any ideas? Thanks.

<br************@gmail.com> wrote in message
news:11**********************@o13g2000cwo.googlegr oups.com...
Try using the following command:

c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspne t_regiis.exe -i

It will make framework v1.1 active.

HTH,
Brett

Dec 19 '05 #3
What OS are you running?
--
Christopher A. Reed
"The oxen are slow, but the earth is patient."

"VB Programmer" <do**@emailme.com> wrote in message
news:uD**************@TK2MSFTNGP14.phx.gbl...
I tried it but I get the same error. In IIS all the websites show up as
regular yellow folders now. Any ideas? Thanks.

<br************@gmail.com> wrote in message
news:11**********************@o13g2000cwo.googlegr oups.com...
Try using the following command:

c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspne t_regiis.exe -i

It will make framework v1.1 active.

HTH,
Brett


Dec 21 '05 #4
xp media center
ideas?

"Christopher Reed" <ca****@nospam.nospam> wrote in message
news:eL*************@TK2MSFTNGP11.phx.gbl...
What OS are you running?
--
Christopher A. Reed
"The oxen are slow, but the earth is patient."

"VB Programmer" <do**@emailme.com> wrote in message
news:uD**************@TK2MSFTNGP14.phx.gbl...
I tried it but I get the same error. In IIS all the websites show up as
regular yellow folders now. Any ideas? Thanks.

<br************@gmail.com> wrote in message
news:11**********************@o13g2000cwo.googlegr oups.com...
Try using the following command:

c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspne t_regiis.exe -i

It will make framework v1.1 active.

HTH,
Brett



Dec 22 '05 #5
You state that the Default Website has an error icon next to it. If this is
the case, then it sounds like your default website is gone. Verify that you
still have c:\inetpub\wwwroot. If you don't, then do you know where your
default WWW root directory is?
--
Christopher A. Reed
"The oxen are slow, but the earth is patient."

"VB Programmer" <do**@emailme.com> wrote in message
news:OL**************@TK2MSFTNGP14.phx.gbl...
I have both ASP.NET 1.1 and 2.0 on my system. Most of my sites are 1.1.

All of a sudden when I load any solution I get this error:

VS.NET has detected that the specified Web server is not running ASP.NET
v1.1. You will be unable to run ASP.NET web applications or services.

When I check IIS, under "Web Sites", there is a ERROR stop sign icon next
to "Default Web Site (Stopped)". When I click on it and hit the
"play"/start button I get this error:

Unexpected error 0x8ffe2740 occurred.

Any ideas what's going on and how I can fix this?

Thanks!

Dec 22 '05 #6
all of a sudden it works again... hmmm.... thanks....

"Christopher Reed" <ca****@nospam.nospam> wrote in message
news:er*************@TK2MSFTNGP09.phx.gbl...
You state that the Default Website has an error icon next to it. If this
is the case, then it sounds like your default website is gone. Verify
that you still have c:\inetpub\wwwroot. If you don't, then do you know
where your default WWW root directory is?
--
Christopher A. Reed
"The oxen are slow, but the earth is patient."

"VB Programmer" <do**@emailme.com> wrote in message
news:OL**************@TK2MSFTNGP14.phx.gbl...
I have both ASP.NET 1.1 and 2.0 on my system. Most of my sites are 1.1.

All of a sudden when I load any solution I get this error:

VS.NET has detected that the specified Web server is not running ASP.NET
v1.1. You will be unable to run ASP.NET web applications or services.

When I check IIS, under "Web Sites", there is a ERROR stop sign icon next
to "Default Web Site (Stopped)". When I click on it and hit the
"play"/start button I get this error:

Unexpected error 0x8ffe2740 occurred.

Any ideas what's going on and how I can fix this?

Thanks!


Dec 22 '05 #7
SOLUTION:

I installed Skype, which must have been accessing port 80.

See this article: http://support.microsoft.com/?id=816944
"Unexpected Error 0x8ffe2740 Occurred" Error Message When You Try to Start a
Web Site
View products that this article applies to.
Article ID : 816944
Last Review : September 26, 2003
Revision : 1.0

SUMMARY
When you try to use Internet Information Services Manager (IIS Manager) to
start a Web site, the Web site does not start, and you may receive the
following error message:
Unexpected error 0x8ffe2740 occurred
CAUSE
This behavior may occur if a port conflict exists on the system. By default,
IIS uses port 80 for HTTP communication. If an application other than IIS is
running and is using port 80 on the same IP address, you may receive the
error message when you try to use IIS Manager to start the Web site.
RESOLUTION
To resolve this problem, you can do either of the following: . In IIS
Manager, change the port bindings for the Web site to a port other than port
80.
. Stop the application that is using port 80, and then start the Web
site from IIS Manager.

MORE INFORMATION
The third-party products that are discussed in this article are manufactured
by companies that are independent of Microsoft. Microsoft makes no warranty,
implied or otherwise, regarding the performance or reliability of these
products.

You can use third-party tools like TCPView or FPort to identify the other
application that is using port 80.
--------------------------------------------------------------------------------
"VB Programmer" <do**@emailme.com> wrote in message
news:OL**************@TK2MSFTNGP14.phx.gbl...
I have both ASP.NET 1.1 and 2.0 on my system. Most of my sites are 1.1.

All of a sudden when I load any solution I get this error:

VS.NET has detected that the specified Web server is not running ASP.NET
v1.1. You will be unable to run ASP.NET web applications or services.

When I check IIS, under "Web Sites", there is a ERROR stop sign icon next
to "Default Web Site (Stopped)". When I click on it and hit the
"play"/start button I get this error:

Unexpected error 0x8ffe2740 occurred.

Any ideas what's going on and how I can fix this?

Thanks!

Dec 28 '05 #8

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

Similar topics

1
by: Wayno | last post by:
My php logs are coming up empty. I have done all I can think of, and all that made sense to me. Can someone take a look at my php.ini please and tell me what you think may be the problem. I...
3
by: vool | last post by:
Hi all, I've got a really wierd problem here. When I access a web page that adds information to a database on a PC running XP Pro it works as it should. When I access the same page from a...
1
by: paul reed | last post by:
Hello, I am having some weird behavior between two machines...one which is running the 1.1 framework and one which is running 1.0. After opening a child form from a parent...I update the...
5
by: Lara | last post by:
Hi, I am getting the following error. All the files are stored in a directory named 'web' as told by the Server Administrtor can anyone help me Server Error in '/' Application....
16
by: | last post by:
Hi all, I have a website running on beta 2.0 on server 2003 web sp1 and I keep getting the following error:- Error In:...
4
by: news.citenet.net | last post by:
I keep getting the following error message after my web site running 2 or 3 days I share one folder with about 200 domain names Any one can help? ...
8
by: John Nagle | last post by:
Here's a wierd problem: I have a little test case for M2Crypto, which just opens up SSL connections to web servers and reads their certificates. This works fine. But if I execute ...
6
by: Ken Varn | last post by:
When I am running my ASP.NET 2.0 application using VS.NET 2005 ASP.NET Development Server, the session state seems to be getting lost at various times without warning. I am not sure why this is...
4
by: Cirene | last post by:
In my web.config I added <pages enableSessionState="true">. In each of my pages I also added EnableSessionState="True" to the Page declaration. (I didn't think this was necessary, but...) ...
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: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
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
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.