Archive for the ‘PHP’ Category

Comparing TYPO3, Joomla, Drupal and MODx

Saturday, March 15th, 2008

Update: Since writing this article I’ve managed to setup a typo3 template with the TemplaVoila wizard, I still feel that the process is somewhat complicated, but with proper documentation it’s a lot easier and that’s what I’m trying to accomplish with that tutorial.... Read More

ZF Community/CMS Bugfixes

Wednesday, March 12th, 2008

I’m in the process of replacing the horrible PHP code. And I’m using the beefed up version of the Zend Framework that I’ve built in this series of course! However, I’ve started to find some bugs and the fixes will be posted here.... Read More

Farewell HTML Ajax

Tuesday, March 4th, 2008

I just realized that I’ve completely stopped using HTML Ajax. The framework has become completely superfluous for me now that I’m using jQuery’s $.post method.... Read More

Working with other people’s code

Thursday, February 28th, 2008

Yesterday I had to make some changes in VirtueMart for Joomla 1.0.13. This codebase can be a little confusing sometimes. Believe it or not but this was the first time in my PHP-coding career that I felt the need to be able to simply dump all declared variables, not just the globals in $_REQUEST and so on. Perhaps a testament to how little time I’ve spent working on other people’s code, it’s not much.... Read More

Writing a CMS/Community with Smarty and the Zend Framework: Part 10

Wednesday, February 27th, 2008

As some of you know, I’ve got other things to do at the moment. The cms/community project is iced. Therefore I’ve created a Google project out of it.... Read More

The worst PHP code in the world

Monday, February 25th, 2008

[4:16:18 PM] HS says: btw i managed to install the affiliate thing on my laptop and the data looks ok but i cant use it, i cant login in the admin backend, it just reloads the login screen without any error messages or anything, do you know if the admin backend is finished?... Read More

No more bloated and inconsequential lists please

Saturday, February 23rd, 2008

Why oh why do people make lists like this, it seems like our dear Reinhold just had to cram 40 things in there. ... Read More

Making BigDump like mysqldump

Friday, February 22nd, 2008

Update: See Alexey’s comment at the bottom, it seems like I missed reading some important info at the top of the bigdump file.... Read More

Why PHP as a templating language sucks

Tuesday, February 5th, 2008

I frequently read articles about why any template system made with PHP is per definition redundant because PHP is itself such a good templating engine. This is my take on this whole rant-genre.... Read More

HTML entity encoding everything in PHP

Wednesday, January 30th, 2008

The standard htmlentities() function will encode special characters so that they display OK in the browser. However, sometimes you might want to encode different languages to entities too. I just found a script that will do that in the form of an html encode application. The source is browsable but a little bit impenetrable so I fixed it up a little:... Read More