https://cal.com logo
Join Slack
Powered by
# general
  • s

    Sparsh Martires

    04/29/2022, 8:24 AM
    anyone know how to integrate cal.com to your next.js site
    p
    s
    h
    • 4
    • 5
  • s

    Sparsh Martires

    04/29/2022, 9:05 AM
    message has been deleted
    h
    • 2
    • 1
  • p

    Paulo Gonzalez

    05/02/2022, 1:34 AM
    Cal.com LOOKS AMAZING!
    🎉 3
  • p

    Paulo Gonzalez

    05/02/2022, 1:34 AM
    🚀
  • l

    Luke Harries

    05/02/2022, 8:03 PM
    Hi everyone, how can I sort this? https://calendso.slack.com/archives/C01NXDSRY9W/p1649283378816069 It's causing a really bad experience for users and there's been no progress on the issue in 26 days
    h
    e
    • 3
    • 3
  • r

    Rohit Raj

    05/03/2022, 11:46 AM
    hey guys, I have been trying to integrate cal with "@calcom/embed-react" but all I am getting is a loader and nothing else. How will I proceed forward with the integration??
    h
    • 2
    • 1
  • m

    Mark Meyer

    05/03/2022, 3:53 PM
    Hello, I’ve been having a problem for a couple of months and it’s a big deal for my use of the product. When I connect two or more Google Calendars, it creates duplicate events (with different call URLs). I need to be able to connect two calendars to check for available times for meetings. Is think this is pretty basic for a call scheduling software. Check availability on two different accounts but only create the events on one Calendar. Right? I first reported this error on Feb 25, 2022, support asked me to remove all Calendars and leave only one. And that works, but more than 2 months later I still can’t connect a second calendar.
    p
    • 2
    • 3
  • d

    Daniel Esser

    05/04/2022, 6:18 AM
    Hello everyone, since a few days the booking via cal.com does not work anymore. The error message today is "Termin konnte nicht gebucht werden. Unexpected end of JSON input". Any suggestions?
    p
    • 2
    • 1
  • s

    Sans Sass

    05/06/2022, 10:23 AM
    Good day, everyone. Does anyone know how many calendar integrations are available in the Free and Pro tiers? I'm specifically trying to understand whether the free tier (that permits only 1 event type) allows integration with multiple calendars?
    p
    • 2
    • 1
  • s

    Shane Neubauer

    05/06/2022, 3:57 PM
    Heyo! I'm a big fan of cal.com, thanks for your great work 😍 I'm struggling a little bit with something -- I cannot figure out how to get it to add meeting links to events automatically. Tried with Meet and with Zoom, and can't find a setting anywhere... Can someone guide me to the right place? 🙏
    s
    z
    +4
    • 7
    • 25
  • m

    Mark Z.

    05/06/2022, 9:54 PM
    We're hosting a private cal.com (git clone on a linux server + postgres db). Anyone who's self hosting have any tips for keeping things stable? I tried updating main to get from 1.5.2 to 1.5.3, but am struggling with some apps. Not looking for fixes to the specific problem (I'm sure I'll crack that), but would love some guidance on how you keep things stable. Do you pull old branches? Have dev and prod versions?
    d
    • 2
    • 1
  • j

    Jimmy Chan

    05/07/2022, 11:50 AM
    I got cal setup on an instance and set
    NEXT_PUBLIC_WEBAPP_URL
    +
    NEXT_PUBLIC_WEBSITE_URL
    to the ip of the machine. Now my issue is that it doesn’t continue after login. I’ve created a user in prisma as well. Network calls succeed as shown in the browser inspector. Did I do anything wrong?
    z
    • 2
    • 3
  • p

    Pranav and Manisha Dharwadkar

    05/07/2022, 4:03 PM
    Hello, I am trying to self host cal.com on railway and facing the following build problem. Any idea how to fix this ? ``@calcom/webbuild Failed to compile. @calcom/webbuild @calcom/webbuild ./ee/pages/api/integrations/stripepayment/webhook.ts12925 @calcom/webbuild Type error: Excessive stack depth comparing types ‘{ where: { id: number; }; data: BookingUpdateInput; }’ and ‘BookingUpdateArgs’. @calcom/webbuild @calcom/webbuild 127 | }); @calcom/webbuild 128 | @calcom/webbuild > 129 | const bookingUpdate = prisma.booking.update({ @calcom/webbuild | ^ @calcom/webbuild 130 | where: { @calcom/webbuild 131 | id: booking.id, @calcom/webbuild 132 | }, @calcom/webbuild error Command failed with exit code 1. @calcom/webbuild info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. @calcom/webbuild Error: command finished with error: command (apps/web) yarn run build exited (1) command (apps/web) yarn run build exited (1) ``
  • j

    Joseph Newing

    05/08/2022, 2:41 PM
    Is there an option I'm missing somewhere to remove or disable filled slots from the booking screen?
    p
    • 2
    • 3
  • t

    Torsten Kröger

    05/10/2022, 1:22 PM
    Hi, do you have any idea what is wrong with my configuration? I am trying to get a self hosted cal.com running with SSL behind a nginx reverse proxy. The DNS A record points to the IP of my server of course. This is my nginx config:
    Copy code
    server {
            listen 80 default_server;
            listen [::]:80 default_server;
            server_name _;
            return 301 https://$host$request_uri;
    }
    
    server {
        listen 443 ssl;
        server_name <http://mysubdomain.mydomain.com|mysubdomain.mydomain.com>;
    
        ssl_certificate           <path_to_cert>;
        ssl_certificate_key       <path_to_key>;
    
    #    ssl on;
        ssl_session_cache  builtin:1000  shared:SSL:10m;
        ssl_protocols  TLSv1.2 TLSv1.3;
        ssl_ciphers HIGH:!aNULL:!eNULL:!EXPORT:!CAMELLIA:!DES:!MD5:!PSK:!RC4;
        ssl_prefer_server_ciphers on;
    
        location / {
            proxy_pass <http://localhost:3000>;
            proxy_http_version 1.1;
            proxy_set_header Upgrade $http_upgrade;
            proxy_set_header Connection "upgrade";
            proxy_set_header Host $host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_set_header X-Forwarded-Proto $scheme;
            proxy_set_header X-Forwarded-Host $host;
            proxy_set_header X-Forwarded-Port $server_port;
    
        }
    
    }
    And this are the parameters from my
    .env
    :
    Copy code
    NEXT_PUBLIC_WEBAPP_URL='<https://mysubdomain.mydomain.com>'
    NEXT_PUBLIC_WEBSITE_URL='<https://mysubdomain.mydomain.com>'
    NEXT_PUBLIC_EMBED_LIB_URL='<https://mysubdomain.mydomain.com>'
    NEXTAUTH_URL='<https://mysubdomain.mydomain.com>'
    yarn dev
    shows:
    Copy code
    yarn dev shows:
    @calcom/web:dev: cache miss, executing a9157bc125d0929e
    @calcom/web:dev: $ next dev
    @calcom/web:dev: ready - started server on 0.0.0.0:3000, url: <http://localhost:3000>
    @calcom/web:dev: info  - automatically enabled Fast Refresh for 1 custom loader
    @calcom/web:dev: event - compiled client and server successfully in 1394 ms (416 modules)
    @calcom/web:dev: wait  - compiling / (client and server)...
    @calcom/web:dev: event - compiled client and server successfully in 334 ms (421 modules)
    @calcom/web:dev: [next-auth][error][CLIENT_FETCH_ERROR]
    @calcom/web:dev: <https://next-auth.js.org/errors#client_fetch_error> request to <https://mysubdomain.mydomain.com/api/auth/session> failed, reason: connect ETIMEDOUT 35.246.230.105:443 {
    @calcom/web:dev:   error: {
    @calcom/web:dev:     message: 'request to <https://mysubdomain.mydomain.com/api/auth/session> failed, reason: connect ETIMEDOUT 35.246.230.105:443',
    @calcom/web:dev:     stack: 'FetchError: request to <https://mysubdomain.mydomain.com/api/auth/session> failed, reason: connect ETIMEDOUT 35.246.230.105:443\n' +
    @calcom/web:dev:       '    at ClientRequest.<anonymous> (/opt/cal.com/node_modules/next/dist/compiled/node-fetch/index.js:1:64142)\n' +
    @calcom/web:dev:       '    at ClientRequest.emit (events.js:400:28)\n' +
    @calcom/web:dev:       '    at ClientRequest.emit (domain.js:475:12)\n' +
    @calcom/web:dev:       '    at TLSSocket.socketErrorListener (_http_client.js:475:9)\n' +
    @calcom/web:dev:       '    at TLSSocket.emit (events.js:400:28)\n' +
    @calcom/web:dev:       '    at TLSSocket.emit (domain.js:475:12)\n' +
    @calcom/web:dev:       '    at emitErrorNT (internal/streams/destroy.js:106:8)\n' +
    @calcom/web:dev:       '    at emitErrorCloseNT (internal/streams/destroy.js:74:3)\n' +
    @calcom/web:dev:       '    at processTicksAndRejections (internal/process/task_queues.js:82:21)',
    @calcom/web:dev:     name: 'FetchError'
    @calcom/web:dev:   },
    @calcom/web:dev:   path: 'session',
    @calcom/web:dev:   header: {
    @calcom/web:dev:     connection: 'upgrade',
    @calcom/web:dev:     host: '<http://mysubdomain.mydomain.com|mysubdomain.mydomain.com>',
    @calcom/web:dev:     'x-real-ip': '89.244.102.106',
    @calcom/web:dev:     'x-forwarded-for': '89.244.102.106',
    @calcom/web:dev:     'x-forwarded-proto': 'https',
    @calcom/web:dev:     'x-forwarded-host': '<http://mysubdomain.mydomain.com|mysubdomain.mydomain.com>',
    @calcom/web:dev:     'x-forwarded-port': '443',
    @calcom/web:dev:     'upgrade-insecure-requests': '1',
    @calcom/web:dev:     'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36',
    @calcom/web:dev:     accept: 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
    @calcom/web:dev:     'sec-fetch-site': 'none',
    @calcom/web:dev:     'sec-fetch-mode': 'navigate',
    @calcom/web:dev:     'sec-fetch-user': '?1',
    @calcom/web:dev:     'sec-fetch-dest': 'document',
    @calcom/web:dev:     'sec-ch-ua': '" Not A;Brand";v="99", "Chromium";v="101", "Google Chrome";v="101"',
    @calcom/web:dev:     'sec-ch-ua-mobile': '?0',
    @calcom/web:dev:     'sec-ch-ua-platform': '"macOS"',
    @calcom/web:dev:     'accept-encoding': 'gzip, deflate, br',
    @calcom/web:dev:     'accept-language': 'de-DE,de;q=0.9'
    @calcom/web:dev:   },
    @calcom/web:dev:   message: 'request to <https://mysubdomain.mydomain.com/api/auth/session> failed, reason: connect ETIMEDOUT 35.246.230.105:443'
    @calcom/web:dev: }
    s
    z
    v
    • 4
    • 19
  • m

    Mark Z.

    05/10/2022, 6:11 PM
    We're a self hosted, Enterprise user of Cal.com. I'm trying to set up SAML using the instructions, but get errors connecting to the SAML-specific DB. Is there a command (much like yarn workspace @calcom/prisma db-deploy) that is used to precreate the database structure for SAML? Just creating the empty DB didn't seem to work
    d
    • 2
    • 14
  • m

    Mark Z.

    05/10/2022, 9:01 PM
    I feel a little bad posting a bunch in general today, but SAML is on my mind 🙂 Anyone have experience configuring Azure AD for SAML? I load in the XML, get redirected to Microsoft, but once I log in there I get Cal "Access Denied" error. I'm thinking I have a problem with my mapping attributes, but don't know how to easily test/diagnose that. I've tried running in "yarn dev" mode, and also tried the NEXT_PUBLIC_DEBUG in my .env, but don't see anything displayed that will help me troubleshoot. Ideas?
    d
    • 2
    • 1
  • p

    Peer

    05/10/2022, 9:09 PM
    lets move this to #saml
    👍 1
  • g

    Gurkiran Singh

    05/12/2022, 2:01 AM
    Hey everyone, I am not sure, if this bug is reported or not, After booking is confirmed, when I clicked on
    Back to bookings
    link and navigated to
    /bookings
    then the button doesn't display the text.
    h
    p
    a
    • 4
    • 7
  • c

    Christian Rütgers

    05/12/2022, 10:28 AM
    Apologies if I oversaw something, is there a documentation on how I may activate the MS Teams integration available?
    h
    j
    • 3
    • 10
  • s

    Sydney O

    05/12/2022, 5:47 PM
    Hi <!here>! Back here again with some more engagement stuff 🥳 Did you know we have a Twitch channel? Every Tuesday and Thursday from 2pm-4pm EDT we live build! Today @zomars is taking the lead doing some debugging, and building the admin dashboard today! twitch.tv/calcomtv Next week on Tuesday, we’ll be playing a game of Among Us with our team, and if we have spots open we’ll add some community members in that also want to play! (p.s. it’s one of @Peer ’s favorite games) See you on the stream!
    party parrot 4
  • k

    Krishna Raj

    05/13/2022, 12:44 PM
    Hello there, I am Krishna from tbd.health. We would love to talk to your sales team. Can i get a contact pls ? Thanks.
    s
    • 2
    • 1
  • d

    Dino Edwards

    05/13/2022, 3:44 PM
    Hi, is Caldav support working correctly in Cal.com yet? I'm having an issue where it is not picking up events on my caldav calendar
    s
    • 2
    • 2
  • k

    kamesh rathore

    05/15/2022, 9:57 AM
    Hi <!channel>
    👋 5
    k
    d
    • 3
    • 2
  • k

    kamesh rathore

    05/15/2022, 9:59 AM
    I'm looking CAl.com repository, As I know this is a public repository. I want to use this as of my product which will be paid for my users. What are the steps that I need to follow ?
    k
    s
    • 3
    • 5
  • h

    Hassan Ali

    05/16/2022, 5:28 AM
    can someone provide me help in deployment for IIS server
  • e

    Elias Ruiz Monserrat

    05/16/2022, 11:30 AM
    Is it possible to allow more than one booking per slot? So something like 50 people could book the same slot for example. I looked on the product documentation but I couldn’t find anything.
    p
    • 2
    • 1
  • l

    Luke Harries

    05/16/2022, 9:53 PM
    I'm trying trying to edit one of our team events events but it's not loading the page: https://www.loom.com/share/1f2fb6222142497ba0ece7e31a33a9c2 I suspect this is because there's not event attendee attached (as this is the only difference to the other events) Please can you provide guidance on how to fix this?
    p
    s
    • 3
    • 6
  • l

    Luke Harries

    05/16/2022, 10:18 PM
    curl <https://api.cal.com/v1/?apiKey={{API> KEY FROM LOGGING IN}
    Doesn't work for me? Is the API down? It lags and then i get the message
    {"message":"Something went wrong","error":{"clientVersion":"3.10.0"}}
    v
    p
    z
    • 4
    • 4
  • f

    Félix Peeault

    05/17/2022, 10:48 AM
    Hey there! I can't login anymore with 2FA for some reason 🤔 the button is disabled, either I paste the code from my password app or type it (Firefox/Brave/Safari on macOS)
    ✅ 1
    z
    • 2
    • 2
1...567...45Latest