deployment

How to Update the installed Window Application (Creating Patches)

hi, i have requirement. i have created the window application and i have created the setup of that application that has been installed to client machine. Now the requirement is that if i will do the further modification to the project the client not need to install whole application again instead client only need to install Update of ...

Bundling only part of the prerequisites with ClickOnce

Is it possible to configure the ClickOnce installation so that it requires .Net Framework and VSTO but includes only the VSTO binaries and downloads .Net Framework if necessary? Including the VSTO in the package isn't too much of a problem but the 350MB .Net Framework is something I'd do away with if possible. (Dynamics CRM SDK depends ...

PHP - application patch build

I'm trying to come up with a better solution for our development group to build patches for our applications (PHP). We currently submit to SVN daily, but do not run a continuous integration server, as code checked in can be buggy. For building patches, we check against a "date modified", from the last build. A lot of times though, we'...

Uninstall non-setup created files

Hey everyone. I have a Setup project (MSI) in VS2008 which installs my project. Within the project, I create a settings file, for the application, in the SpecialFolder.CommonApplicationData + \\"settings" folder (the two slashes are in the C# code for escaping). However, the uninstaller doesn't get rid of this for me when it removes th...

How to install a django app in alwaysdata.com?

I've just singed for a free account at alwaysdata.com and I'd like to install a Django app. The problem is I don't know how to deploy it. The docs seem to be in french: http://wiki.alwaysdata.com/wiki/D%C3%A9ployer_une_application_Django Do you know any guide in english or spanish? ...

Problem deploying frozen Rails app - "could not find RubyGem rack"

I have a rails app which I develop on Windows with Rails 2.3.5, using sqlite3 as my database engine, and the internal Mongrel server as my webserver. I deploy this app to a hosted Linux machine running Rails 2.1.0, using Postgres as my database, and Apache (calling dispatch.cgi) as my webserver. I do not have permissions to update the n...

Should I clean *.vshost.exe and *.vshost.exe.config from release directories?

I have found a number of vshost files in production deployment folders. I know what these are for and that they don't belong here. My question is, do they do any harm? Is it worth me spending the time checking all of the deployment folders for 100+ applications to make sure that they are removed, or is this a waste of time? I would have...

phing + sftp to upload site as part of automated build

Hello, Does anybody know of an easy way to upload files to a remote server using SFTP from within a Phing build? I cant seem to find a custom or native Phing task to do this. The other problem is the interactivity of the SFTP unix command (requiring a password after reaching host, etc.) Any ideas? ...

Problem setting base sdk to 4.0 and OS Deployment Target to 3.1.3 (Using MapKit)

Hi, I'm building an application that uses MapKit functionality. The base sdk is 4.0 but I'm building to a 3.1.3 device (the OS Deployment Target is set to 3.1.3). After the app is installed and right when it begins to run, I run into the following error: dyld: Symbol not found: _CLLocationCoordinate2DMake Data Formatters temporarily un...

Error: Thread creation failed-Cannot allocate memory

Hello, I have deployed my Rails application on server. It is working fine, but it crashed on sign_up page and server will be stop. I Checked my mongrel.log file, it give the following error. libgomp: Thread creation failed: Cannot allocate memory How can I resolved this error? Thanks. ...

TFS2010 Build Definition to Deploy to multiple servers?

I've been looking into TFS2010 new build and deployment features with MSDeploy. So far everything is going well (although its been hard to find information about specific scenarios). Can I modify my Build Definition to specify 2 or more servers to deploy to? What I need to do is deploy to multiple servers (as I have two in my testing en...

How to enable maven to deploy the ear to the app. server automatically

Hi all, I am using maven2 with a struts-hibernate jee project and developing with myEclipse. When I run a maven build, clean&install, it generates myProject.ear under the myProject_ear\target folder as usual. However, I have to copy this ear file from that folder to the ..jboss-4.2.2.GA_2\server\default\deploy folder in order to deploy...

How to deploy a Python/SQLAlchemy application?

Dear all: SQLAlchemy allowed me to create a powerful database utility. Now I don't know how to deploy it. Let me explain how is it built with an example: # objects.py class Item(object): def __init__(self, name): self.name = name # schema.py from sqlalchemy import * from objects import Item engine=create_engine('sqlite:///mydb.db')...

How do you make an iOS 4.0 app compatible with iPhone OS 3.1.3?

So, I may have made a mistake in updating my application to iOS 4.0 by wiping my Xcode installation and only installing the 4.0 SDK (I can't even find SDK 3.1.3 in my backups, doh!). I have an app now that has been built with a base SDK of 4.0 and it says in iTunes it requires 4.0 but the only thing I added was the methods -applicationDi...

What is a recommended Develop-test-deploy strategy for Azure?

Hi, We are new to Azure and are going to deploy our first app in the next few days. I was just wondering if we need to have a more clear cut process in place for test and deploy and how to make it more cost effective. This is the process I was considering - 1.Develop on local Dev fabric Maintain a common Build server which also hos...

How to deploy a big application.

I have a drupal application which is in heavy developement. I need to deploy my app. and due to long list of images my deployment directory is more than 700Mb. How to deploy this on server, keeping track that while deploying next time only changed files will be deployed. Please gimme a simple solution. please don't give any advanced so...

iPhone Configuration Utility for Windows Error

Hello all, We are getting an error when deploying an iPhone application to iOS 4 using the Windows configuration Utility, 3.0. The application loads great using the configuration utility on a mac, fails on windows. We have confirmed that the provision is copied onto the device, it's just the app. The error is: Could not install...

Deploying a web app and local reports just does not work?!

I implemented a report (Microsoft Reporting Services) functionality in my ASP.NET web app. Its local mode (report file extension is rdlc). There is custom code as well, its in a seperate DLL which is referenced by the reports. Localy everything works fine, but after deploying I get Error while loading code module.... I searched the net...

which .net components does my application need?

I built a vb.net desktop application. it works beautifuuly on my pc. I created an installer and gave it to a co-worker to run. The program does not work. Question: How can I figure out which .net components i need to provide along with my application? Thanks ...

Should I use Git for deployment of web apps?

I use Git to track local changes in my PHP web applications, and I was wondering if it would be a good idea to use Git on the server as well, so that I could just use git push to deploy my changes. Would there be any pitfalls with this approach? ...