I have a dot.net site that I need to setup on one of my servers.
I have no documentation associated with the site.
It is not a complicated site.
A small shopping cart with an access db backend.
Can someone give me a checklist of what I need to install to get this up and running?
Any hints, tips - things to be aware of... Anything to help me get this up and running...
Thank you in advance...You will need to install on the server:
1.0 or 1.1 .NET Framework (whichever the application is using)
Copy your files and database over to your server
Configure IIS with a virtual directory and set it to that directory
Not much else.
thank you for the reply.
I am halfway there..
I have the web site setup, and I can go to the site. The files I am going to is an aspx file.
it is reading the file - with no noticeable errors. But the contents from the database is not being displayed. But no errors that I can see..
Can I assume that dot.net is installed? If not how can I find out if it is?
Thank you
Hello, try to put this in the body of ur aspx page:
<% Response.Write(DateTime.Now); %>
This way, you will print today's date, if it printed well, then .net framework is installed.
Reply to us to know how to help you more.
good Luck.
hello,
no - it did not work
I am trying to install the dot.net but having a problem doing so...
--------
Microsoft .NET Framework Setup
--------
Microsoft .NET Framework Setup failed. If this problem continues, contact Product Support Services.
--------
OK
--------
Any clue?
Hello, you need to get.NET Framework 1.1, make sure you have no other versions of th e.net on ur pc.
Then, try to install the .netframework.
Do this and reply to me.
Regards.
Squeakita,
You can find a bunch of what you are looking for at
www.TechnicalVideos.net.
Ok - downloaded and install attempted. It still failed.
I checked to see if a previous version was installed. - no othere versions installed.
I did a system update prior to the install to make sure I was up todate.
I am getting 2 error message in the event log
#1
Windows Installer proxy information not correctly registered
#2
Failed to connect to server. Error: 0x80004005
BTW it's a Windows 2000 with service pack 4
I am at a loss right now.
If the page appears, then the Framework is installed. If the data is not there, then you have a code problem. Try enabling the Trace in the web.config file to see if it tells you any information like unhandled exceptions you might not see on the page itself.
I found this ...
Application Event 1014 against MsiInstaller, Windows Installer proxy information not correctly registered.
Application Event 1015 against MsiInstaller, failed to connect to server. Error 0x80070424.
In this case, re-registering the Windows Installer component should fix the problem. After re-registering Windows Installer, attempt to reinstall the Advanced Client.
To re-register Windows Installer:
#1 Unregister Windows Installer first, by typing the following in a CMD window and hitting the Enter key:
msiexec /unreg
#2 Next, in the same CMD window, re-register Windows Installer by typing the following and hitting the Enter key:
msiexec /regserver
I did it and now...it is installing
0 comments:
Post a Comment