Setting up Development and Live web site environment


 
Thread Tools Search this Thread
Top Forums Web Development Setting up Development and Live web site environment
# 1  
Old 10-09-2009
Setting up Development and Live web site environment

Hi,

I am fairly new to unix so please go easy on me.. I have a VPS on which I would like to setup a development and live web site environment and can't seem to work out what is the best technique for doing so.

I would like to be able to mirror the live site and have a "check out" and subsequent promotion techniques to copy only the "checked out" files. Is this an achivable goal, and if so I would be gratefull for some suggestions on reading materials that would help me achive the goal.

Thanks, Jon.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Solaris

Solaris live upgrade on Active boot environment

Hi, Is it possible to perform an luupgrade on the active boot environment in Solaris? I want to perform this on BEAlpha - the disk that has BEOmega will be unavailable whilst performing the upgrade but I still want to install the patches using luupgrade. Boot Environment Is... (4 Replies)
Discussion started by: Mr_Webster
4 Replies

2. UNIX for Dummies Questions & Answers

Setting up your environment

Hi I am new to Solaris and was just given my id and need to setup my environment, what do i need to do to run certain commands without putting in the complete path. How do I create my .profile, I do not see under my login? Any help would be greatly appreciated. (5 Replies)
Discussion started by: sa_ken
5 Replies

3. Web Development

First time setting up site on Apache

Hello All, I am relatively new to using Apache, I have recently set it up on Ubuntu. What I'm trying to do is make "/home/yves/MyFirstPHP/MyFirstPHP/HelloWorld.php" accessible through my browser using the URL: The UNIX and Linux Forums - Learn UNIX and Linux from Experts. The tutorials I have... (1 Reply)
Discussion started by: DarkMatter2009
1 Replies

4. Linux

Process time-to-live setting

I have a cron job scheduled to run every 5 mins, and run a php script. Something was not right about the script and when I checked the server had very little spare memory. Looked in running processes and I could see that many instances of the script were still running. I am new to this whole... (1 Reply)
Discussion started by: edzillion
1 Replies

5. Shell Programming and Scripting

I need help in creating my first web site?

I have always wanted to create my own site, I've only had one class about the basics in creating web pages but know i would like to get into more and more detailed info about doing so anyone with alot of experience please help me out.:b: (0 Replies)
Discussion started by: kprescod4158
0 Replies

6. AIX

intranet web site

hello I would like to create an internal web site, but how do i make it with Aix ? I must to install apache and send my http pages in the declared repertory ? There are some configuration files to modify ?? thank you (2 Replies)
Discussion started by: pascalbout
2 Replies

7. UNIX for Dummies Questions & Answers

Web Site Creation - testing .*pl etc....

Hiya All, How can I test my PERL Scripts whilst making my web site? I'm hoping there is some software out there that emulates a Web Server - without all the hassle of my building/setting up a Web Server from Stratch (Never done anything like that before - my next big project! 8) ) ... (7 Replies)
Discussion started by: marty 600
7 Replies

8. UNIX for Dummies Questions & Answers

Web site mirroring

I have a unix server running RedHat Linux 9.0. I want to mirror my site on a different server with the same configuration so if the main server goes down, the other server will take over. How is this best accomplished? (1 Reply)
Discussion started by: wvmlt
1 Replies

9. UNIX for Dummies Questions & Answers

Web site setup

Hi, I have a m/c loaded with redhat linux, static IP address and this m/c intern connected to the internet thro leaseline. Now i need to setup a company website has www.abc.xyz.com. What necessary configuration i need to do so that others can view our website. Thanks Bache Gowda (5 Replies)
Discussion started by: bache_gowda
5 Replies
Login or Register to Ask a Question
System.getEnv(3kaya)					       Kaya module reference					      System.getEnv(3kaya)

NAME
System::getEnv - Get the value of an environment variable. SYNOPSIS
String getEnv( String env ) ARGUMENTS
env The name of the environment variable DESCRIPTION
Retrieves the value of an environment variable. This is often necessary in a web application as the web server will set environment variables in the program. Some of these headers are set by the server environment, others are set based on the current request (and so may be trivially forged by the user's browser). ua = getEnv("HTTP_USER_AGENT"); // Contents of User-Agent header host = getEnv("HTTP_HOST"); // the IP address of the web server user = getEnv("REMOTE_USER"); // the username under HTTP authentication ip = getEnv("REMOTE_ADDR"); // the client's IP address Environment variables are also useful for command-line programs home = getEnv("HOME"); // The user's home directory on Posix systems proxy = getEnv("HTTP_PROXY"); // The HTTP proxy to use for outgoing connections If the environment variable is not set, the empty String will be returned. AUTHORS
Kaya standard library by Edwin Brady, Chris Morris and others (kaya@kayalang.org). For further information see http://kayalang.org/ LICENSE
The Kaya standard library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License (version 2.1 or any later version) as published by the Free Software Foundation. RELATED
System.getArgs(3kaya) System.getPID(3kaya) Kaya October 2012 System.getEnv(3kaya)