Why am I getting a bind error from my back-end code?

(When I said “known” I meant that someone has brought it up a few hours ago, and the Wix got reported about it).

Hi everyone,
Thanks for notifying us of all the issues. I’m reading through the reports and will share them with the team. I’ll report back as soon as I have an update.

@russian-dima

3-4 days for a complete no-op for all my users? That doesn’t work. I already called customer-care, and they told me they would do some sort of an escalation, but it is the first time I’ve done that so have no idea what to expect.

Like i said →

→ VERY FAST :blossom:

Just to complete this …
https://www.wix.com/velo/forum/coding-with-velo/why-am-i-getting-error-unable-to-handle-the-request-contact-the-site-administrator-or-view-site-monitoring-logs-for-more-information

Yes, I am also experiencing this, my error is pointing also to the { authentication }.

@russian-dima I agree, it makes absolutely no sense to wait 3-4 days for a fix to a critical bug like this. On my side it is the payments that suddenly broke this morning (almost 10 hours ago). The createPayment function from the wix-pay-backend module suddenly stopped working. Because of that, I can no longer accept online payment on my store. I really would expect the kind of issue to be fixed with no delay.

On my side here is the code that suddenly started returning errors:
import wixPayBackend from ‘wix-pay-backend’ ;

export function createMyPayment ( userInfo , orderInfo ) {
const { items , amount } = orderInfo
return wixPayBackend . createPayment ( {
items ,
amount
} ). catch ( error => {
console . log ( “Error from createPayment:” , error )
throw error
});
}

For no apparent reason, this code started returning the following error:

I can no longer accept payments on my website…

Thanks for letting us know We are investigating all of the issues now. I’ll let you know as soon as I have an update.

@marlowe-shaeffer Thank you. Please let us know when the issues are addressed. I need this ASAP. Also, is the deprecated wix-users-backend working? Thanks!

@solsticematholympiad yes it is, Ive switched to it to complete my work;

import wixUsersBackend from 'wix-users-backend';
//import { currentMember } from 'wix-members-backend';

@solsticematholympiad I’m not sure about users-backend. We haven’t heard any reports about issues with it.

@marlowe-shaeffer When do you think the issue will be solved? I need to know so that I can know whether to wait or switch to wix-users.

Update! Issues with stores-backend and pay-backend should now be resolved! Let us know if you continue to have problems.
crm-backend will be updated tomorrow.
Thanks for your patience!

Hi, when will wix-members-backend be fixed?

@solsticematholympiad It looks like that’s a separate issue that will be further investigated tomorrow.

@annouira
As you can see, FIXING processes are already at work. 3-4-days was just a total max. time which should be taken to make a bug-fix. Not every bug is equal. Some are easy to be fixed, others needs time → just my own opinion from own experience <–.

But, the right person saw the Cry for help! :wink:

Yes the wix-members-backend clearly is a culprit, I have commented out my import statement referencing it and changed my reset password API to temporarily return an error message that the reset password capability is temporarily unavailable and now my other back-end API functions work as they did before.

@solsticematholympiad I’d say the soonest would be in about 12 hours (very rough estimate), but most likely by the end of day tomorrow. I haven’t heard any updates yet from their developers because they’re located in our Tel Aviv office and aren’t online now.

Just wanted to add “contacts” in ‘wix-crm-backend’ is returning undefined. I was trying out the queryContacts function and I was getting a “cannot read property queryContacts of undefined” error.

If you do import {contacts} from ‘wix-crm-backend’ and console.log(contacts) it’ll also show undefined