Use this tag for questions pertaining to the process of moving code and data from a development environment to a production environment.
0
votes
0answers
32 views
Missing stylesheets in production-environment?
I am experiencing inconsistent styling between environments after pushing an update to my production server. My development machine runs Mongrel with SQLite, while my production server runs Passenger ...
0
votes
1answer
12 views
Dealing with errors on live build that don't appear on tests
I've just uploaded my changes to a client's website.
I made sure that everything worked perfectly on my test environment (runs off my dev pc with a remote database that isn't where the live database ...
0
votes
0answers
41 views
How to track javascript errors in production?
I minify my all javascript files when deploying to the production server and it became really hard to track javascript errors via window.onerror event. It doesn't provide a stack trace or column ...
1
vote
1answer
83 views
Prestashop Test/Production Server Best Practices
We have an eShop build on prestashop and we are developing new features every week. I'm writing here because I don't find the correct way to update our production environment with the changes, without ...
0
votes
1answer
45 views
Few files on production are not working asp.net c# 3.5
I created an ASP.NET C# site using .NET Framework 3.5. Its working fine on development server.
I have two folders namely
signup
settings
I than hosted my site to domain somee everything is working ...
0
votes
1answer
136 views
Rails javascript doesn't work in production mode
I got an object which shows icons selection toolbar like in skype. Icon images are shown correctly, but when I click on an icon in production mode, the selected icon doesn't appear in text.
I put the ...
0
votes
4answers
117 views
How can i change the callback module of a gen_server in erlang? (gen_server:swap_handler)
I am building an app which can run in two modes. A sandbox mode and a production one.
In sandbox mode, i want to make many checks in my gen_server against the database : if table doesn't exist then ...
1
vote
1answer
59 views
Search is case insensitive in development but sensitive in production environment
I have a search bar that performs a case insensitive search when running on localhost in the development environment, but when I push to Heroku and run in the production environment, the search is ...
5
votes
2answers
55 views
Differentiating between debug and production environments in WSGI app
We need to load different configuration options in our Python WSGI application, according to production or debugging environments (particularly, some server configuration information relating to the ...
1
vote
1answer
36 views
Transfer mySQL from development to production
I need to synch development mysql db with the production one.
Production db gets updated by user clicks and other data generated via web.
Development db gets updated with processing data.
What's ...
0
votes
1answer
251 views
.NET MVC Error 500 when publishing to production server
My MVC website is working perfectly on my debug machine when I press F5 in Visual Web Developper Express 2010. I've publish it a couple of time without problem but I did a lot of change lately and my ...
1
vote
3answers
197 views
Heroku: What to change when you go live?
I've built an app on heroku and we're getting close to going live. Right now I'm using the 'Shared Database 5MB' add-on and I can't find where to change to the production DB.
What other changes ...
0
votes
1answer
208 views
Minimized vs. Development Sencha Touch Scripts [closed]
I need some mechanical turk help on this one. I'm developing an app using Sencha Touch Version 2 on a framework I'm working on to build mobile apps in WordPress.
I present two links. The first is ...
1
vote
4answers
381 views
rails 3 actionmailer works in development, but not on heroku
I have an external smtp server I'm using for actionmailer. I have the exact same action_mailer configs in both development and production configs. It works perfectly in development, but when I run it ...
0
votes
1answer
112 views
Making local Drupal installation accessible through Virtual Host
I am trying to introduce a staging step in my company's code-production process. We currently have ~10 eng clients who commit code individually, update local codebase - debug/check locally, then we ...
0
votes
1answer
50 views
How can a git working copy conflict when nothing's changed locally?
We use git to manage our code, and a CI system to build, copy and re-push the build artifacts back to git. We push to the master branch, the CI system pulls down the changes, builds, and pushes to a ...
1
vote
0answers
164 views
iOS Push Notification Not Sending
I've been developing an app with push notifications powered through UrbanAirship and its been working great for development. The problem is when I create an Ad Hoc build. The push notifications seem ...
2
votes
0answers
81 views
Javascript/CSS File locations for development branch vs production branch
I've set up my web server to follow the common git / web focused workflow for the most part.
So I have a dev branch in one folder as a subdomain and the master branch in my root folder / domain.
...
0
votes
0answers
71 views
Mercurial development to Production configuration strategy
I'm new to using Mercurial, and would like some advice on deployment strategies that people are using. I have a VPS with 10-15 websites running on it. A lot of the sites I just push out to ...
0
votes
0answers
34 views
How change their filesystem structure from development to production?
I am doing front end work on a web app where the directories for development are nothing like what they are on the live website. Is this standard practice? and what is being used on the backend to ...
1
vote
2answers
69 views
Bad routing or rails bug?
I have setup my routes into namespaces, so it look like
root to: "home#index"
namespace :users do
root to: "profile#index"
resources :registrations
resources :sessions
end
namespace :admin do
...
1
vote
1answer
121 views
Local and production versions of php and mysql using git
I have a question regarding how to set up local and production versions of a WordPress website that uses, PHP an MySQL.
I want to have these two versions (local and production) use different ...
1
vote
0answers
82 views
Deploy a media folder without storing it on github with capistrano
I work on a php website that deploys to our servers with capistrano. The site has a very large media folder that needs to be moved into the current deploy every time. Currently what happens is I ...
1
vote
1answer
140 views
Configuring the webserver on a production site for Symfony
I am setting up my Symfony project on the production site. @ this point it states:
This project uses the symfony libraries. If you see no image in this page, you may need to configure your web server ...
1
vote
2answers
812 views
Initializing private repositories on production server
What I want to do now is to initialize a private repository on my production server in to app's www folder (ex: /var/www/app.com/web/) and then clone it as a staging repository to my testing site (ex: ...
-1
votes
2answers
2k views
Javascript function error (function not defined)
I wrote a javascript function (already tested it and it works) on a file in a development server and it works just fine, I uploaded the file to the production server and when I test it I get the ...
0
votes
1answer
88 views
What is the best way to check if the “Admin” Group is in the user groups (using has_and_belong_to_many relationships) in Rails 3?
I just want to check if the "Admin" Group is in the user groups. User and Group model has a has_and_belong_to_many relationship.
I had the system working fine with rails in developer mode, but when I ...
1
vote
0answers
189 views
Flex Flash Builder Form. No Errors in Local Dev but Errors on Production Server
I have been going crazy trying to figure this problem out.
I have a Flex Form application that works perfectly on my local development server. I'm using Flash Builder 4.5.1 with Zend Server community ...
3
votes
2answers
1k views
Running a Rails site: development vs production
I'm learning Ruby on Rails. At the moment I'm just running my site locally with rails server in the OS X Terminal. What changes when a Rails site is run on a production box?
Is the site still ...
1
vote
1answer
195 views
managing django local and site settings with multiple developers?
After looking around I have come up with the following code this seems to work well I was wondering what others have come up with and feedback would be great.
settings/init.py
import sys
import ...
0
votes
2answers
2k views
How can I drop the tables and syncdb for just one app in my Django project?
I have a Django app deployed on DjangoZoom. People have been signing up, so there are users in that database.
I want to restructure the database of one of my apps within the project. My plan was to ...
0
votes
1answer
195 views
Iframe working correctly on localserver but not production server
A question like this was asked before and the person got nothing but criticisms, hope this won't be the case here.
I have a website that allows a business to add their menu to my site, and some have ...
7
votes
1answer
7k views
Symfony2: access same route in production as development
I'm developing a little application using Symfony2. I can access all routes with no problems in my dev environment:
http://symfony/app_dev.php/cp ("symfony" is in my hosts file to resolve to ...
0
votes
1answer
326 views
How to keep the data moving from development to production DB: Rails3 application
Boys and girls,
So, I have finished my Rails3 webapp and I am trying to deploy it. Am using Passenger, I have managed to configure it as to point to the rails app, that is fine.
Now, since in ...
0
votes
3answers
233 views
What are good strategies for updating a live database table?
I have a db table that gets entirely re-populated with fresh data periodically. This data needs to be then pushed into a corresponding live db table, overwriting the previous live data.
As the table ...
0
votes
1answer
292 views
Drupal multi-site to single-site go-live
I have a colleague asking me to provide a single tarball containing an entire Drupal site, which they can drop on their server with no configuration beyond connecting the database.
To my knowledge ...
0
votes
2answers
96 views
How can one reference subdomains on a dev server that also correctly resolve on a production server? [closed]
I've got a LAMP dev server at something like dev.example.com. Eventually this will be replicated to something like www.example.com where we will have root access.
I'd like to have the sys admin set ...
3
votes
1answer
271 views
How do I disable code from running in the development environment on Rails?
How can I remove code when my Rails app is in development mode? For example, I want to remove my Google Analytics reference when in development but have it render in the production environment.
Is ...
1
vote
3answers
167 views
Building Production Release - DB Connection Credentials
We have a build that can package war files for specific environments where all our property files are embedded in the archive (war file).
We are now about to build for production. My concern is the ...
52
votes
2answers
13k views
Git production/staging server workflow
Currently my website (production server) already have a lot of code in it.
And now I want to start using Git for my projects and setup a staging server for my team.
Can anybody give me any advise?
...
10
votes
5answers
320 views
Code & data tracking / deployment
For a long time now, we've held our data within the project's repository. We just held everything under data/sql, and each table had its own create_tablename.sql and data_tablename.sql files.
We have ...
11
votes
5answers
4k views
What is a good way to set up a dev, staging and production workflow with wordpress
Wordpress presents some challenges since it tends to keep too much in the database, making it hard to move from server to server.
What are some other issues to look out for?
What was your workflow ...
11
votes
6answers
2k views
Django: sqlite for dev, mysql for prod?
Quick question: is it a good idea to use sqlite while developing a Django project, and use MySQL on the production server?
