[PHP] error_handler : unique caller ID ?

2012-11-13 Thread B. Aerts
Dear list, a penny for your thoughts on the following problem. Does anyone have an idea how to find a unique caller ID for a user-defined error handler ? The goal is to get a cached error messages tree where the following snippet would yield an array as below it: // start-of-snippet

Re: [PHP] error_handler : unique caller ID ?

2012-11-14 Thread B. Aerts
On 13/11/12 20:04, Robert Williams wrote: On 11/13/12 11:20, B. Aerts ba_ae...@yahoo.com wrote: Having read access to a variable's address (like a C-pointer) would be perfect - but Google tells me you can't in PHP. If you can restrict yourself to objects for the passed variables, you can

[PHP] webDAV/CalDAV client class experience ?

2013-02-12 Thread B. Aerts
Hello, I'm working on this one for more than a year (personal project) - but I'm turning pretty desperate here. I'm trying to connect to 2 Calendars through the CalDAV protocol. The calendars are hosted by 2 webmail providers. If I try to sync through a dedicated calendar, like iCal or

Re: [PHP] webDAV/CalDAV client class experience ?

2013-02-16 Thread B. Aerts
On 13/02/13 14:27, Daniel Brown wrote: On Tue, Feb 12, 2013 at 3:40 PM, B. Aerts ba_ae...@yahoo.com wrote: Hello, I'm working on this one for more than a year (personal project) - but I'm turning pretty desperate here. I'm trying to connect to 2 Calendars through the CalDAV protocol

Re: [PHP] webDAV/CalDAV client class experience ?

2013-02-18 Thread B. Aerts
- Adding the HTTP header Accept: */* made sure all read actions ( e.g. GET, PROPFIND, REPORT) worked perfectly This is interesting. The Accept header has to do with what media types the browser will accept in return. I didn't think it had anything to do with what operations the

[PHP] Re: Basic Auth

2013-08-27 Thread B. Aerts
On 27/08/13 15:37, Jim Giner wrote: Im using basic auth for a few of my pages that I want to limit access to - nothing of a sensitive nature, but simply want to limit access to. Want to implement a signoff process, but can't figure it out. From the comments in the manual I take it one can't