Scheduler Giving Error

<?xml version='1.0' encoding='UTF-8' ?>


Warning: error_log(log.txt) [function.error-log]: failed to open stream: Permission denied in /codebase/connector/tools.php on line 341



What am I doing wrong?

I copied and pasted the sample code, changed the mysql info in event.php and this is the alert that it gives me whenever I load the page after I tried adding the event "meeting with john"

Any help will be appreciated...thanks.

The default code has logging enabled. It seems that in your case, script has no right for file writing.
You can

a) locate and remove the next line from the php file
$scheduler->enable_log(“log.txt”,true);

or

b) change the access rights, to the script’s folder, so it will be able to write log files.