deployment

Customized ClickOnce Installed App Directory

Hello, How to change the default directory for app installed with ClickOnce? I mean how to change it for example to "C:\Program Files\CompanyName\Applications\etc.." ...

Best practises for Magento Deployment

I am looking setting up a deployment process for a highly customised Magento site, and was wondering how other people do this. I will be setting up dev, UAT and prod environments. All the Magento files will be in source control (SVN). At this stage, I can't see any requirements for changing the DB, so the 3 databases will be manually m...

are all parts of the web.config required once compiled

Hi, hopefully this doesn't sound ridiculous, but are some parts of the web.config not required once the web application (or website) has been pre-compiled (published)? I'm thinking of things like user control declarations...or others? thanks heaps! ...

Is there an auto-upgrade library / framework available for windows that has similar features as the ones Sparkle for Mac OSX provides ?

Our app is built using Qt and I would like to use a framework similar to Sparkle in our Windows version, to replace our custom solution. Is there anything like this ? ...

How to create roles and superuser in an ASP.NET MVC application in a secure way

This could be considered a duplicate question, as a similar one has already been asked, but I don't like any of the answers, and security was not addressed. When deploying an ASP.NET MVC app, what's the right way to create roles and a superuser without risks? Two ways come to my mind: using Application_Start or a custom action (better ...

Is there a way to force ClickOnce updates even while my app is not running?

I would like to periodically check for updates for my ClickOnce application even if it is not currently running. I found a post about using ClickOnce to deploy a background service, which would allow me to run a service that checks for updates, but the setup is kind of tricky so I'm wondering if there is an easier or more straightforward...

Configure Tomcat to use properties file to load DB connection information

What are the accepted practices for creating a Tomcat deployment that reads configuration parameters from a properties file? It would be nice to be able to deliver a WAR file and specify that the client need only create or edit a properties file in a specific directory. Is this a somewhat regular way of doing things? Is there a better ...

Drupal6 Deployment: Developed on XAMPP, when online localhost is still the base path

I developed a Drupal site on XAMPP. I deployed it to an Apache webserver by uploading a zip file and .sql file of the database. However, the links on pages generated by Views 2 are still as they were on XAMPP - http://localhost, etc. (So instead of www.example.com, it's http://localhost). Where do I change this setting? I looked in sett...

install application for all users using vs2005 setup project

How do i install application for all users using vs2005 setup project, i have enabled install all users property in setup project to true, but there is no impact after installation. my application not loaded in other user accounts (shows an error message). ...

Application is not loading in simulator using Eclipse

Hi friends, I am able to build a application what I have , however when I check in simulator there is no application icon available using Eclipse, i have checked carefully there are no errors. When I run same application in JDE ,application icon is available. ...

Build .SQL File with Batch file not working

I have a folder C:\Scripts. In that folder I have 2 sub folders, Procedures and another Views. In the Procedures folder I have 2 files proc1.sql proc2.sql in the Views table I have 2 files view1.sql view2.sql I am trying to combine these files into one .sql file with the following batch file Copy Procedures\*.sql proc.sql Copy Vie...

Web setup project failed to find the binary

I'm using visual studio to build the setup project for my web application. The build failed because it seeks binary output at the bin\Debug\ folder while the binary I generated is actually under the bin folder. What can I do to fix this? Thanks in advance! ...

connecting jdeveloper 11 to tomcat server

Hello all, I would like to deploy my application with Jdeveloper 11 to tomcat server. For that I created a new connection to my tomcat server, but it says after opening the deplyments in the tree of Application Server Navigator: Connection Error What is this connection error? Where can I check the reason of it? What can be teh reason of...

Will major config changes discourage users from deploying code?

I'm beginning development on a solution that will plug into an existing application. It will be made available for public use. I have the option of using a newer technology that promotes better architecture, flexibility, speed, etc... or sticking with existing technology that is tried and tested which the application already uses. The ...

Fresh OpenEMM installation shows bean errors on some pages

We have deployed a fresh openemm installation on a resin server (which wasn't exactly straight forward due to an enormous amount of dependencies although resin is the recommended and default application server). This is our setup: latest Gentoo GNU/Linux OpenEMM 5.1.1 (compiled from source, including a huge amount of dependent jars) Re...

How to setup ClickOnce for multifile assemblies

My solution has 4 projects, each project contains many namespaces. Currently my DLL size is nearly 30 MB. Just a small change to a class means that the user needs to download a new version of the DLL which size is too large and it takes a long time. How can a ClickOnce project be set up for multifile assemblies? ...

Ruby on Rails getting HTTP 500 with no error logged (hosted on Media Temple)

Hi, I am trying to deploy my Ruby on Rails application on Media Temple. The application starts fine (Mongrel starts up fine) but I keep on getting a HTTP 500 error. The problem is that nothing gets written to the log, so I do now know what might be causing this problem. I have 256M of memory available so I do not believe memory is a...

How to create a thread that runs all the time my application is running

EDIT: I'm now sure that the problem is related to the while (true) loop holding all other commands as I've commented it out and the application deploys without the attached exception. I'm not sure how much it is important but my ServletContextListener implementation looks like this: public class BidPushService implements ...

Rundll32 load order problem

My product consists of two dlls (A.dll and B.dll for clarity), A.dll depends on B.dll. Both A and B dlls are in the same folder (say c:\app). At the same time old version of B.dll is in Windows\System32 folder. When I try to run following command from command prompt (current folder is c:\app): rundll32.exe "c:\app\A.dll",DoWork I recei...

How to change URL for web app?

When I deploy myWebApp.war in JBoss I can access this web application by next URL: http://localhost%3A8080/myWebApp But I want to have next URL: http://localhost%3A8080/support/myWebApp What shopuld I do in order to have such URL? ...