This is seriously starting to bake my noodle. I've just built and deployed (via FTP) a vanilla ASP.Net MVC application (version 1.0.0.0), but have struck the following problem after deployment:
Could not load file or assembly
'System.Web.Mvc, Version=1.0.0.0,
Culture=neutral,
PublicKeyToken=31bf3856ad364e35' or
one of its de...
After I deploy a build to staging. I would like to have a system that smoke tests all our webpages looking for error http status codes (400,500).
What is the easiest, fastest way to get a system like this into place.
If I use selenium or WebAII it seems like I'd have to do alot of work generating basic unit tests.
Ideally Id like t...
So I downloaded the .net 2.0 sp2 redistributable "NetFx20SP2_x64.exe" from the following site:
http://www.microsoft.com/DOWNLOADS/details.aspx?familyid=5B2C0358-915B-4EB5-9B1D-10E506DA9D0F&displaylang=en
Deployed on my x64 win2k3 server from which I run IIS in x86 mode. On the same server I also run services and utilities in x64 b...
I'm using Capistrano and have everything configured. The weird issue I have is that before, I got a nice Passenger error saying what was wrong (I hadn't fully uploaded my vendor/rails directory). After I do that, however, I'm now getting the general Rails We're sorry, but something went wrong 500 error instead of the Passenger error pa...
I would like to deploy the .NET Framework 2.0 sp2 redistrbutable (NetFx20SP2_x86.exe) with my app.
Do I need to uninstall 2.0 or 2.0 sp1 if they exist on the client machine first, or is it acceptable to simply install 2.0 sp2 over the top?
Thanks.
...
I'm using Capistrano and Rails 2.3.4. I've already done a deploy:cold to the remote server. Now on my local box I changed a layout file and committed it to the repository (I am using Netbeans 6 as my IDE). I type cap deploy and Capistrano runs through it's commands and tells me that it's checked out and deployed the most recent versio...
Hi!
I want my application to be distributable as a single .exe file but I want to be able to get nice error reports with source code line numbers (the application simply sends email with exception.ToString() and some additional information when unhandled exception occurs).
Is there any way to embed .pdb into assembly?
...
I'd like to programatically determine the "publish location" (the location on the server which contains the installation) of the click-once application I'm running. I know that the appref-ms file contains this information and I could parse this file to find it but the application has no idea as to the location of the appref-ms file and I...
Let's say we have version 2.0 of an application deployed with around 3000 users already running the application.
So far, the application was unsigned(signed by some auto generated certificate from VS).
The users are using .NET 2.0.
Now we would like to deploy a new version that will be signed using a certificate from tucows. One of t...
Edit:
Well maybe this can give a clue. When created a Rails app in cPanel on my web host, in order to access the app you need to create a rewrite rule. Which I did, but didn't know what it did. I tracked it down to it creating the following 2 files:
home/mydomain/public_html/.htaccess:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^mydoma...
We have an application on pilot implementation using clickonce to deliver fast updates. We have even automated the build proces with nant and we can control every step of the building of the deploy package.
This pilot, we delivered with the productname "PRODUCT TITLE (PILOT)", but now, we want to upgrade all our pilot users to the produ...
I just deployed a website into IIS 7 (about which I am woefully ignorant), and upon trying to build the site, I receive this error. I did a little googleing and I saw an article that said I should put system.web.extensions.dll into the /bin. But, I also saw an article saying not to do that. I tried it anyway, but I just received a dif...
Is there a good way of modifying a route based on the deployment type?
Basically, I have a route that has a :requirements => {:protocol => "https"}, and I'd like that to only happen in production, but not in development.
...
Hi,
i made a click once installer, in that i added direct X as a custom prerequisite. when i make the installer on my local machine only then the installation of DirectX works fine. but i need to make a clickonce deployment for the web so that a person can remotely access my installer and download it.
when i am adding a custom pre...
I found this:
http://stackoverflow.com/questions/1412882/changing-compiler-to-llvm-clang-on-existing-iphone-project
But that does not help.
I am still getting the error. Setting the BaseSDK to the iPhoneSimulator 3.1 seems to work. But I don't think this is the right thing to do...
...
I have looked through the related questions, and none of them have provided me the information I am looking for.
Currently the team I work on does deployments of individual .aspx (and .aspx.vb) files for bug fixes/enhancments. I am trying to affect change, as I really believe that deploying the "whole compiled site" is less error prone...
Hello,
I have to manually deploy my servlet war packages on an Apache tomcat instance running on an AWS (Amazon Web Services) machine (remote server).
Also i have Maven setup for dependency management and build packaging in local development environment.
What I want is to setup my maven install/deploy task such that my packaged war fi...
I need to access some files on servers from servlet. They have different paths on my development machine and on the deployment server. I would like to put some config file (with paths) somewhere (like shared dir in capistrano deployment) so application could read it. Or maybe set some property on the application server or anything like t...
We have a Sharepoint project where we have deployed the dll's of the project to the GAC.
We have seen that the best practices is to have them in the bin directory. This is based on the information in the answer to this question: http://stackoverflow.com/questions/1073347/web-part-dll-in-gac-or-bin-using-sharepoint-2007
What are the ste...
I'm starting a new webapp project in Python to get into the Agile mind-set and I'd like to do things "properly" with regards to deployment. However, I'm finding the whole virtualenv/fabric/zc.buildout/etc stuff a little confusing - I'm used to just FTP'ing PHP files to a server and pointing a webserver at it.
After deployment the server...