Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Options

anyone know a good version tracker

edited September 2006 in Vanilla 1.0 Help
Anyone know a good PHP bit of script to allow you upload files to your website, give it a version, and it can be left there for archiving?

Comments

  • Options
    I'm interested in such a script as well :)
  • Options
    I never heard of such a thing but in theory .. seems easy to make ... bring a normal upload script .. after successful upload ... use some file system functions to append a number to the file name ... I'm a php noob myself ... but I'm quite sure that the one who made Poll extension could make this script under 6 minutes ....
  • Options
    Why reinvent the wheel? Subversion has such functionality already with their web frontend. It takes some doing but the thing about creating something like this is that you'll be constantly tweaking it and adding stuff until you basically have a CVS/SVN type system and you could have bypassed all that to begin with. I played around with an idea like this a while back to help users keep up with my releases and hot fixes to an open source module I wrote. But it ended up being a lot more work than just using SVN.
  • Options
    edited September 2006
    hmm.... i c your idea but i'm thinking more PHP then svn because i know i'll be able to mod it to what i want :)

    Yea, i know it'd be an easy thing to make a simple one, but the thing is that i can't be bothered to because i'm working hard on my other project...
  • Options
    have a database with two tables: FileNames PK id int filename varchar FileVersions version int id int then in your php, upload to a temporary folder, look the filename up in FileNames. if its not there, add it and add an entry to FileVersions with version 1 and rename the file with the id. If it's already there, do the same but instead of version 1, use the result of a query plus one. The query should find the id of that filename in FileNames, then find the matching versions, then pick the largest version number. Easy!
This discussion has been closed.