Zend Cache - problem with deleting cache files

I have a strange problem with Zend Cacke (File Backend) working on linux with apache and php 5.2

Files are stored in / myspace / tmp 1

The directory has a hold:

drwxrwxrwx  2 nobody nogroup 8192 2010-09-20 13:35 tmp1

The generated temp file has the following permissions:

-rw------- 1 nobody nogroup  317 2010-09-20 13:40 content---a51607ba255692370eae1155c7f45856

If I do:

$ cache-> clean (); inside my script, than the method returns true, but the file is not deleted (there are no errors in the php error log).

On my local development machine running win xp everything works fine. I think this is some kind of resolution problem? Apache works like nobody else

Any suggestions are welcome!

+3
source share
1 answer

, Zend_Cache::CLEANING_MODE_ALL, AFAIK.

0

Source: https://habr.com/ru/post/1765609/


All Articles