Thursday, May 18, 2006

Grand Unified Web Tools

Tools, Tools (Ad Nausium) [sic.]

"There are problems with the many-tools-hacked-together approach that adds an odd balance to it."

[Bruce Alderson][1] and I have a common vision. I wish that there was a stable platform for PHP applications that provided all the common stuff like database abstraction, user login and account management. I just want to seamlessly combine the best of [MediaWiki][mw], [WordPress][wp], [Gallery][g] and [PHPbb][bb]. I don't want to have 4 different logins and spend weeks trying to make templates for each so that they all look alike. Somehow these Open Source packages need to cleanly separate the functional engine from the application presentation layer. Then I could mix and match them.

[1]: http://www.technorati.com/profile/madmaxx
[mw]: http://www.mediawiki.org/wiki/MediaWiki
[wp]:http://wordpress.org/
[g]:http://gallery.menalto.com/
[bb]:http://www.phpbb.com/



Platforms like [Smarty][2] are a step in the right direction. As is the [ADOdb][3] and [OpenID][4]. Now if only all the applications starting using those foundations, it would make integration easier.

[2]:http://smarty.php.net/
[3]:http://adodb.sourceforge.net/
[4]:http://openid.net/

Before I leave this topic, I have to express some of my concerns with Smarty's security. To use the caching features, you must have a directory with write privileges for the web server process owner. On a shared host, I've learned this is a dangerous thing. Other users on that same host can maliciously write files into your directory structure. I have opted to make all directories read-only and when my applications need to save data, they can do it to the database instead of to the file system.

No comments:

Post a Comment