Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

line 3640 in elFinderVolumeDriver.class.php error Invali backend configuration #1552

Closed
androidealp opened this issue Jul 26, 2016 · 3 comments
Assignees

Comments

@androidealp
Copy link

androidealp commented Jul 26, 2016

This possible error cache in upload file in line 3640 funcction clearcache.

protected function clearcache() {
        $this->cache = $this->dirsCache = array();
                unset($this->sessionCache['rootstat'][md5($this->root)]);
        $this->session->set($this->id, $this->sessionCache);
    }

I decided in my case with isset

protected function clearcache() {
        $this->cache = $this->dirsCache = array();
        if(isset($this->sessionCache['rootstat'][md5($this->root)])){
                unset($this->sessionCache['rootstat'][md5($this->root)]);
        }
               $this->session->set($this->id, $this->sessionCache);
    }
@nao-pon
Copy link
Member

nao-pon commented Jul 27, 2016

@androidealp When I checked the code, this part was found to be not functioning properly. I will fix this.

Thanks!

@nao-pon
Copy link
Member

nao-pon commented Jul 27, 2016

I made new issue(#1553).

@nao-pon nao-pon closed this as completed Jul 27, 2016
@nao-pon
Copy link
Member

nao-pon commented Jul 27, 2016

I fixed it. Please try nightly build. Thanks! 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants