php, user-uploaded files, version control, and website deployment

Posted by user151841 on Stack Overflow See other posts from Stack Overflow or by user151841
Published on 2010-03-23T20:26:25Z Indexed on 2010/03/23 20:43 UTC
Read the original article Hit count: 302

I have a website that I regularly update the code to. I keep it in version control. When I want to deploy a new version of the site, I do an export and then symlink the served directory name to the directory of the deployment.

There is a place where users can upload files, and I noticed once that, after I had deployed a new version, the user files were gone! Of course, I hadn't added them to the repository, and since the served site was from an export, they weren't uploaded into a version-controlled directory anyways.

PHP doesn't yet have integrated svn functionality, so I couldn't do much programmatically to user uploaded files. My solution was to create an additional website, files.website.com, which sits in a parallel directory to the served website, and is served out of a directory that is under version control. That way they don't get obliterated when I do an upgrade to the website. From time to time, I manually add uploaded files to the svn project, deleted user-deleted ones, and commit the new version. I'm working on a shell script to run from cron to do this, but it isn't my forte, so it's on the backburner as it's not a pressing need.

Is there a better way to do this?

© Stack Overflow or respective owner

Related posts about version-control

Related posts about deployment