I recently took over doing some web maintainance and development for my on-campus job. The previous folks had not used a development box and instead did all their development on the production server. Obviously, this is bad practice and did, in fact, lead to several production server crashes and outages.
I've now got a development server running. However, I'm wondering how to go about deploying files from development to production. What little background I have with this sort of environment was with J2EE, but all this work is in PHP. With J2EE, everything has to be packaged up and then loaded by the J2EE container. Thus, it's fairly easy to deploy the updated package (and it easy to automate using something like Ant).
I'm looking for a way to deploy PHP pages in such a simple manner. Is something of the sort available or is my best bet just creating my own script to transfer files?
I've now got a development server running. However, I'm wondering how to go about deploying files from development to production. What little background I have with this sort of environment was with J2EE, but all this work is in PHP. With J2EE, everything has to be packaged up and then loaded by the J2EE container. Thus, it's fairly easy to deploy the updated package (and it easy to automate using something like Ant).
I'm looking for a way to deploy PHP pages in such a simple manner. Is something of the sort available or is my best bet just creating my own script to transfer files?