Posts Tagged ‘Tips’

Uploading Files using Zend Framework

January 7th, 2010

Uploading files in PHP is easy, if not tedious. A lot of the projects that I work on involve some type of upload of files and after a while it gets old. Doing all the checks to make sure the file is there, generating forms, etc … there must be an easier way, right?

Well, there is. The Zend Framework introduced a few classes to help facilitate uploading and working with files after they make it to the server. Taking advantage of Zend_Form_Element_File and the Zend_File_Transfer_Adapter_Http makes it dead simple to upload a file.

» Read more: Uploading Files using Zend Framework

MediaWiki as a Computer Logbook

May 24th, 2007

At work, we suffer from the inevitable communications problem of “Did X get done last night?” or “When did Bob do such-and-such?” This isn’t something that is any single person’s fault, especially when the group of people you work with is small. I’ve done it, my coworkers have done it. With 40 PCs and around 10 servers, it can easily become a nightmare trying to keep track of what you have done. Paper logbooks become a bear as you have to physically keep track of them at all times.I don’t remember where I read the idea, but at some point I read about using a wiki as a way to keep a computer logbook. It’s easily accessible from any PC on the network, has partial-WYSIWYG editing, and keeps a record of who edited what page and when. I brought the idea up to my supervisor and he gave it a go.

» Read more: MediaWiki as a Computer Logbook