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

xelFinderSession.class.php - fixCookieRegist error #13

Closed
gigamaster opened this issue Oct 8, 2019 · 2 comments
Closed

xelFinderSession.class.php - fixCookieRegist error #13

gigamaster opened this issue Oct 8, 2019 · 2 comments

Comments

@gigamaster
Copy link

Fail to run elfinder, so far, I have to comment fixCookieRegist:
/** * {@inheritdoc} */ public function __construct() { parent::__construct(); $this->fixCookieRegist = false; return $this; }

and revert to session_start

@nao-pon
Copy link
Owner

nao-pon commented Oct 11, 2019

@gigamaster This is fixed in my local repository as follows: Included in the next push.

Thanks! 👍

class xelFinderSession extends elFinderSession
{
    /**
     * {@inheritdoc}
     */
    public function __construct($opts)
    {
        parent::__construct($opts);
        $this->fixCookieRegist = false;
        return $this;
    }
}

@gigamaster
Copy link
Author

I will try this fix. Thanks again ^_^/

@nao-pon nao-pon closed this as completed Nov 5, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants