Showing posts with label attempting. Show all posts
Showing posts with label attempting. Show all posts

Wednesday, March 28, 2012

Installation problems

I get this error "A network error occurred while attempting to read from the file: C:\Dociments and Settings\username\Desktop\AtlasSetup[1].msi" when I try to install. Any help would be appreciated.

"AtlasSetup.msi"?

Are you trying to install an at-least-4-month-old version of it?


Actually I didn't even notice. I am opening ASPAJAXExtSetup.msi, but it's complaining about AtlasSetup[1].msi. Any ideas?

Well, if the filename has the "[1]", it sounds like it's a downloaded file by IE...

I'd do a search on the computer for that Atlas file name, remove it, goto the MS Ajax site again and re-download what you need....


well it turns out i hadn't uninstalled a previos version of atlas, so the asp.net ajax was trying to uninstall it... but the uninstall was corrupted.. i ended up just downloading a copy of atlassetup.msi and pointing the install to that file, and that seemed to work.. well at least the install finished.. havent tried it yet

I had the same problem and ended up having to use the Windows Installer Cleanup Utility to get rid of the bad install.

-Brandon

Installing AJAX on a production server...

i have a production server that I am attempting to install AJAX on. I have installed the latest release .msi file and I have the 2.0 framework running on it. do I need to do anything else? Here is the error I am getting when I run my sites that contain ajax controls...

Configuration Error

Description:An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.

Parser Error Message:Could not load file or assembly 'Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified. (C:\wmpub\WMRoot\web.config line 53)

Source Error:

Line 51: </httpHandlers>Line 52: <httpModules>Line 53: <add name="WebResourceCompression" type="Microsoft.Web.Handlers.WebResourceCompressionModule, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>Line 54: <add name="ScriptModule" type="Microsoft.Web.UI.ScriptModule, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>Line 55: </httpModules>

I have read a few postings about similar errors, but have had no luck when following the steps. Is there a "step by step" list on how to install AJAX on a production server? Thanks in advance!

Nathan

This is what i think, your project is using old AJAX dll

because by looking at Microsoft.Web.Extensions in the web.config

The Microsoft.Web.Extensions is not for latest AJAX

the latest AJAX is using "System.Web.Extensions"

In the web.config should be like below

<httpModules>
<add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
</httpModules>

so you have either version conflict or web.config setting is incorrect


Thanks for catching that... I had not updated by web.config... stupid error. I appreciated it!

Nathan