Line 15 engines/file.php creates a PHP error about undefined arrays as the specific bins are not defined.

replaced code block with:

    // Assign the path on the following order: bin specific -> default specific -> /tmp/filepath
    if (isset($conf['cacherouter'][$bin]['path'])) {
      $this->fspath = $conf['cacherouter'][$bin]['path'];
    }
    elseif (isset($conf['cacherouter']['default']['path'])) {
      $this->fspath = $conf['cacherouter']['default']['path'];
    }

which seems to work

Comments

peter.walter’s picture

StatusFileSize
new911 bytes

Here's the patch file:

slantview’s picture

Status: Needs review » Fixed

Fixed in latest cvs commit. Thank you!

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.