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

Not able to create meeting link #40

Open
sierratec opened this issue Jul 29, 2021 · 7 comments
Open

Not able to create meeting link #40

sierratec opened this issue Jul 29, 2021 · 7 comments
Assignees
Labels
bug Something isn't working

Comments

@sierratec
Copy link

Hi,
After installing the plugin we tried creating meeting link.

  • In Chrome this asking us to login again and again. Video capture of the steps that we tried :
  • In IE we are getting permission related alert like below. But I have the permission to create meetings.
    Oops! Your meeting wasn't created successfully.
    Please try again. If the problem persists, check with your IT administrator to ensure you have the proper permissions.

Please suggest
Thanks

@babaaldar
Copy link

Same Here.

Tried Reinstalling. Still Not working. I think Browsers are updated that may be the reason. Earlier it was working.

@maxCSA
Copy link

maxCSA commented Aug 24, 2021

Same problem here.

The last call to result.php returns a code 303

@TheGer
Copy link

TheGer commented Oct 4, 2021

Same problem here.

@nenorojas nenorojas added the bug Something isn't working label Oct 4, 2021
@roosri
Copy link

roosri commented Oct 8, 2021

Hi enovation,
Same here, I have tried so many times. however, I have found an alternative patch from the firefox browser. but chrome is still redirecting to the login page.

@avegys
Copy link
Contributor

avegys commented Oct 8, 2021

Hi everyone,

You are having this issue due to Chrome requirement to have secure cookies and the change of the default value of samesite cookie setting.

To solve this, there are a few things that you can check:

  1. What PHP version is your Moodle instance using? If it is < 7.3, then the Moodle core code change is needed.
    In lib/classes/session/manager.php this line -
    session_set_cookie_params(0, $CFG->sessioncookiepath, $CFG->sessioncookiedomain, $cookiesecure, $CFG->cookiehttponly);
    Needs to be changed to -
    session_set_cookie_params(0, $CFG->sessioncookiepath . ';SameSite=none', $CFG->sessioncookiedomain, $cookiesecure, $CFG->cookiehttponly);

The patch for this code change can be now downloaded together with the latest plugin release. You will find it in the patch folder.

  1. Is HTTPS enabled on your Moodle instance? HTTPS is a must for plugin to work in latest Chrome versions.

  2. Is option "cookiesecure" enabled in your Moodle config (Administration -> Security -> HTTP security)?

  3. Make sure you have the latest plugin code (I have also released now latest Github code on https://moodle.org/plugins).

Best regards,
Andrius

@avegys avegys added the duplicate This issue or pull request already exists label Oct 8, 2021
@avegys avegys removed the duplicate This issue or pull request already exists label Oct 8, 2021
@TheGer
Copy link

TheGer commented Nov 3, 2021

Thank you for the fix!

@jlesca79
Copy link

jlesca79 commented Dec 7, 2022

Good morning ,
despite having followed the steps to the letter, my plugin still does not work and gives the same error reported by other users.
I have updated chrome , I have the latest version of moodle and plugin.
I was wondering but to create the link in addition to this plugin do I have to integrate someone else into moodle?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

8 participants