The activities that make a website available for use on a remote system.
0
votes
1answer
32 views
java.lang.NoClassDefFoundError: apache-tomcat-7.0.25
While deploying my application to a tomcat server I'm facing following errors:
2013-06-14 07:54:36 ErrorLogger [ERROR] Job (DEFAULT.NearByRioDeJaneiro threw an exception.
...
0
votes
2answers
27 views
Why is my jQuery.Get query parameter banned from the action method?
I'm trying to do a $.get() to refresh a list, but no matter what I try, the action method either doesn't get the query parameter, or it gets a null value.
This is my page:
@model ...
1
vote
1answer
18 views
How to create a restricted Git release branch that contains sensitive data?
I have a simple web-store, some php/html/css/js files. The master branch on Bitbucket is actually a development branch, i.e. developers push into it and then I pull the changes to development ...
0
votes
0answers
14 views
deploying rails on ec2 with rubber
I am trying to follow the steps outlined in http://www.ginzametrics.com/blog/deploy-rails-app-to-ec2-with-rubber/ but I have a couple of problems.
The first one has to do with the ssh key pair. I ...
0
votes
1answer
24 views
Git branching scheme for ASP.NET MVC project with Areas
1. Repository folder structure:
- repository root
-- ASP.NET MVC4 Project Folder
--- Views & Controllers
---- Index, Login, Dashboard, Common styles and scripts
--- ...
0
votes
1answer
9 views
Tomcat6 Duplicate Deployment
I am facing the issue of Tomcat double deployment. I have read the context information available on Apache site, and well, lets just say, it left me confused.
Environment :
Tomcat 6 with 5 ...
-1
votes
1answer
36 views
Drop down menu is not working? [closed]
I started developing my website and being frank I downloaded the website layout and started to edit the code. Starting I have a normal menu but now I want to change it into a dropdown menu and wrote ...
0
votes
0answers
30 views
Will several Azure instances complicate the database migration?
I'm running an Azure web-application using EF and database migrations. Currently I'm running only one instance of the web-application, but my question here concerns the case where several instances ...
0
votes
2answers
55 views
What happens with an Azure website while it's being upgraded?
What happens to an Azure website while it's being upgraded through an deployment? Usually it goes so quick so you don't see it. But what if you have a huge database that through migration scripts will ...
0
votes
3answers
45 views
Setting Default Homepage for Website Domain
Wondering how do you set the Homepage for a website
When you visit www.example.com/home.html
That would be the home page.
But when you visit www.example.com/
I would like it to go to /home.html
...
1
vote
2answers
35 views
expose elasticsearch service directly to the client or put it behind a middleware
I write a client server application. I have setup an elastic-search service on the server.
The client(iOS app) queries information from the elastic-search service.
I have two options:
1. put the ...
0
votes
0answers
16 views
Convert PDF to JPG without Imagemagick [migrated]
Is there a way to convert a common UTF-8 encoded PDF to a JPG without using imagemagick or Goastscript?
The reason im asking is, that i have to replace or "simply" double layer a small part (date) of ...
0
votes
2answers
42 views
Best Practices to deploy javascript applications
I just started to think about the layout for the build environment of a javascript application that will become quite big in the future. I solved quite a lot of issues but one thing I still have not ...
2
votes
1answer
36 views
how to find git merge commits which merges into current branch
At my company we are using git flow to manage the development of a number of sites.
All of these sites are forks of a base repo. It is easy enough to update the sites with updates from the upstream ...
0
votes
1answer
50 views
jQuery - Callback function
How can I allow a jQuery function to finish executing before a new page reloads?
Here's my code:
$(document).ready(function(){
$("#box1").click(function(){
var div=$("#box1");
...