Site member's page problem

Hello everyone. I already finished my wix online inventory system. Im going to present it to our organization and hoping they will support for a premium wix upgrade . Everything is working fine with just minimal loading speed delay but I saw some tips on how to work it around, so my main problem as of now is this (please see attached image).

Every time a SITE MEMBER, refresh the only site member page . Even if they are logged in. Even with NO CODE site (Fresh site)

Editor: https://editor.wix.com/html/editor/web/renderer/edit/eca1a4db-f356-49e6-ba05-ae8d5ab68ba7?metaSiteId=150fc25c-9d61-4b48-a03e-b3a23c1309da&editorSessionId=d3e2016b-a305-417a-ae7f-d84253a558be&referralInfo=my-account

Website: https://dgtelrmds.wixsite.com/mysite/account/new-page
You can try make an account and refresh the page.

Does anyone ever experience this? If so were you able to solved it?
Thanks.

Check your permissions and make sure that users have the correct access.
https://support.wix.com/en/article/working-with-dataset-modes-and-collection-permissions

If a user already logged in, will i still check the db/collection permission? =x Note even if a new made site, with just a membership feature, once a user logged in, if you REFRESH the page (press F5) you will be prompt with that message above.

Yes this is happening for quite a while and to me this is a bug. Hope someone looks into this.

I hope someone will report it to the development team =x

This thing is there but not such a big issue because when you follow the links in your website to navigate to members page, this nessage does not appear, it appears only on refreshing the page or navigating to a members page by copy pasting the url directly in the browser

Hello. When will this issue be fixed? :frowning:

I have a site members page only , when it loads it shows or displays data on a table & input text , when a site member updates a data it needs the page to refresh/reload in order to show or display the updated data. Since it needs to run again the page load event.

I used the code on button click event
wixLocation.to(wixLocation.url); to refresh the current page but sometimes the posted above error will show. :frowning:

Unless I can run again the load page $w.onReady( function () {}); inside button click event.

I cannot say when this will be fixed. Until then please try removing the permissions on the page and use the following code under your dynamic dataset’s onReady() function

let itemObj = $w("#dynamicDataset").getCurrentItem();
let user = wixUsers.currentUser;
user.getEmail()
.then( (email) => {
   if(email === itemObj.email) {
      //allow
   } else {
      //refuse entry
   }