• Resolved gsim

    (@gsim)


    I have two isses with the “Meet Members” tab. The first one is a css issue so easy to fix ( “Remove Invite” is messed up), but I cannot seem to get the other problem sorted.

    Once the invite has been sent it opens the jitsi iframe but goes straight to the 404 page (not found). The “Meet the group” tab is however working 100%.

    It seem to me it simply fails to create the room. I suspect it’s a problem on the jitsi side of things, but no matter whay I tried I could not get it to work.

    Any idea on what could lead to a 404 page?

    • This topic was modified 4 years, 8 months ago by gsim.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi,

    there was an issue in the plugin activation. Please install version 1.4.0 and re-activate the plugin.

    Thanks,
    Themis

    Thread Starter gsim

    (@gsim)

    I have 1.4 installed.

    Sadly it didn’t work, and I finally had a chance to look at it.

    As much I installed Jitsi from the repo’s the rooms do not allow for hyphens in the name.
    It seems from the Jitsi forums I can find a patch, rebuild myself, or something, but a far simpler method was to strip the hyphens from your generated room names as such :

    `
    //Add the room in the rooms list of each user
    $temp=str_replace(“-“,””,wp_generate_uuid4());
    $room = array(
    //’id’ => $room_id === null ? wp_generate_uuid4() : $room_id,
    ‘id’ => $room_id === null ? $temp : $room_id,

    ‘name’ => $room_name === null ? sprintf(__(‘Room %s’), time()) : $room_name
    );

    I hope that makes sense, but to be clear I am just stripping the hyphens from the name.

    Alas this way will break again when you update the plugin next, so it it possible to add this to your code? The hyphens really are not needed anyway.

    ps Really great plugin, thank you.

    • This reply was modified 4 years, 8 months ago by gsim.

    Hello,

    hyphensare valid charactets in room names and based on the testing I performed everything everythong works fine. Also you can just visit https://meet.jit.si/ and create a room with name that contains hyphens.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Meet Member just return 404’ is closed to new replies.