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!
