> -----Original Message-----
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Sent: Monday, January 11, 1999 2:30 PM
> To: [EMAIL PROTECTED]
> Subject: Re: mod_proxy/3640: Could not GC proxy directory; Permission
> denied
> 
> 
> Thank you very much for your problem report.
> It has the internal identification `mod_proxy/3640'.
> The individual assigned to look at your
> report is: apache. 
> 
> >Category:       mod_proxy
> >Responsible:    apache
> >Synopsis:       Could not GC proxy directory; Permission denied
> >Arrival-Date:   Mon Jan 11 05:30:00 PST 1999
> 

Problem code seem's to be in proxy_cache.c in function sub_garbage_coll:
-----
/* read the file */
        fd = open(filename, O_RDONLY | O_BINARY);
        if (fd == -1) {
            if (errno != ENOENT)
                ap_log_error(APLOG_MARK, APLOG_ERR, r->server,
                             "proxy gc: open(%s)", filename);
            continue;
        }
        if (fstat(fd, &buf) == -1) {
            ap_log_error(APLOG_MARK, APLOG_ERR, r->server,
                         "proxy gc: fstat(%s)", filename);
            close(fd);
            continue;
        }
-----

open try to open a directory. I think this doesn't work.

Klaus

Reply via email to