Join the Webstudio community

Updated last year

domain limits.

At a glance
What is the max domains allowed, and is it per month because I have deleted all my old projects but maybe a few domains a still connected.
Attachment
image.png
2
A
W
I
19 comments
hey W. 5 is the limit, I'm not 100% sure how this works on backend and time it takes for them to be removed.

@Ivan Starkov have any info on this?
I only have 1 active project with a connect domain right now
can you give me that project url so I can check whats going on
As I have multiple ideas why it's possible
It's our bug, when calculating how many domains are used in the view
Plain Text
CREATE VIEW "ProjectWithDomain" AS  SELECT pd."projectId",
    pd."domainId",
    pd."txtRecord",
    pd.cname,
    pd."createdAt",
    COALESCE(pd."txtRecord" = d."txtRecord", false) AS verified,
    p."userId"
   FROM "ProjectDomain" pd
     LEFT JOIN "Domain" d ON pd."domainId" = d.id
     LEFT JOIN "Project" p ON pd."projectId" = p.id;


we don't filter out deleted Projects
ahh so there is nothing I can do?
Could you fix that since its really annoying
@Ivan Starkov
Should be
Plain Text
SELECT pd."projectId",
    pd."domainId",
    pd."txtRecord",
    pd.cname,
    pd."createdAt",
    COALESCE(pd."txtRecord" = d."txtRecord", false) AS verified,
    p."userId"
FROM "ProjectDomain" pd
LEFT JOIN "Domain" d ON pd."domainId" = d.id
LEFT JOIN "Project" p ON pd."projectId" = p.id
WHERE p."isDeleted" <> TRUE
How long untill it updates?
@Ivan Starkov
its an easy fix, we will fix it as soon as possible
@Oleg Isonen @Alex @Ivan Starkov Seems like its still not fixed, any eta when it will be fixed?
Attachment
image.png
Add a reply
Sign up and join the conversation on Discord