Skip to content. | Skip to navigation

Sections
Personal tools
What is this?
Hi, my name is Tom Lazar and I'm a Plone and Zope developer based in Berlin, Germany and this is my personal and professional (no big difference, really...) website.
 

PHP iCal on Mac OSX Server with .htaccess

Filed Under:

Note-To-Myself

Mustn't forget this: if you want to use PHP iCalender you must patch a line in functions/calendar_functions.php from

if (isset($_SERVER['PHP_AUTH_USER'])) {

to

if ((isset($_SERVER['PHP_AUTH_USER'])) && ($allow_login == 'yes')) {

Duh!