Category Archives: Web Development

Segmentation fault

I experienced that sometimes, web applications partly break with the following apache error log: [Thu Oct 22 11:54:39 2009] [notice] child pid 17157 exit signal Segmentation fault (11) [Thu Oct 22 12:00:06 2009] [notice] child pid 17158 exit signal Segmentation … Continue reading

Posted in PHP, Web Development | Leave a comment

Import Events into Google Calendar

This is a wrapper class for some Google calendar import methods. Frequently I get a list with lots of dates I’ve to add to the Google calendar. To bad that there is no calendar import function for the Google calendar. … Continue reading

Posted in Volleyball, Web Development | Leave a comment

Using Both ondblclick & onclick Handlers

var dblclick = false;function MethodA(){setTimeout(function(){if(dblclick == true){return;}alert(‘MethodA’);},250);}function MethodB(){dblclick = true;alert(‘MethodB’);setTimeout(function(){dblclick = false;},250);} Back from hell after long I post a workaround for the ondblclick and onclick javascript issue: It’s not possible to define both handlers so that the onclick handler … Continue reading

Posted in Web Development | Tagged , , , | Leave a comment

PHP Upload Script with Progress Bar

Introduction If you want to upload some files through a web interface using PHP, you might use a classic POST method to push the data to the action script. If you choose your file and submit the HTML form, the … Continue reading

Posted in Web Development | Leave a comment