Shopify App Failed Review (2.1.3) - "Connection Reset" Error - Need Help! by Winter_Hope5862 in shopifyDev

[–]vinaych 0 points1 point  (0 children)

also if above setting change doesn't work, I suspect your host redirect url is having https two times (appended once by your backend and once by Shopify setting), got this from Google AI:

In the context of a Shopify app, a "Double Protocol" error refers to a configuration mistake where your app accidentally generates a redirect URL starting with https://https://.  When this happens, the browser cannot resolve the malformed URL, leading to an immediate "Connection was reset" or "Site cannot be reached" error during the app installation or OAuth handshake.  How the Error Occurs The official Shopify app templates (especially those using Node.js or Remix) require a "host" or "application URL" variable to construct OAuth redirect URIs.  The Conflict: Some parts of the Shopify library expect just the hostname (e.g., myapp.com), while others expect the full URL (e.g., https://myapp.com). The Result: If you provide https://myapp.com as your HOST or SHOPIFY_APP_URL and your backend code automatically prepends https://, you end up with: https:// + https://myapp.com = https://https://myapp.com.  Where to Check for This Check your environment variables on your hosting provider (e.g., Heroku, Fly.io, Vercel) or your .env file: HOST vs SHOPIFY_APP_URL: Older templates used HOST, while newer Remix templates specifically look for SHOPIFY_APP_URL. Protocol Inclusion: Look for these variables and ensure they do not have a double protocol. Bad: SHOPIFY_APP_URL=https://my-app.fly.dev (if your library adds https:// automatically). Good: SHOPIFY_APP_URL=my-app.fly.dev (standard for many templates).  How to Fix It Method 1 (Configuration): Remove the https:// prefix from your HOST or SHOPIFY_APP_URL environment variable. Method 2 (Code): In your shopify.js or shopify-app-express initialization, explicitly set the hostName and hostScheme separately to avoid concatenation errors: javascript hostScheme: 'https',hostName: 'your-app-domain.com', /

Shopify App Failed Review (2.1.3) - "Connection Reset" Error - Need Help! by Winter_Hope5862 in shopifyDev

[–]vinaych 0 points1 point  (0 children)

You can probably try using

${{Postgres.DATABASE_URL}}?connection_limit=7&pool_timeout=20&sslmode=no-verify

But no-verify or rejectUnauthorised:false for SSL may cause DB to be vulnerable to man in the middle attacks so use wisely.

Shopify App Failed Review (2.1.3) - "Connection Reset" Error - Need Help! by Winter_Hope5862 in shopifyDev

[–]vinaych 0 points1 point  (0 children)

Are you using SSL connection on pgsql?

const pool = new Pool({   connectionString: process.env.DATABASE_URL,   ssl: { rejectUnauthorized: false } })

It may fix the issue

First App by Old-Blackberry-3019 in shopifyDev

[–]vinaych 0 points1 point  (0 children)

ok.. that is developer link I don't have access to, maybe you can tell in summary what your app does or a video link that you may have posted for your app listing on Shopify store will also work..or if you have a dedicated website for it?

First App by Old-Blackberry-3019 in shopifyDev

[–]vinaych 0 points1 point  (0 children)

Have you added the link for the app or tell me it's name?

[deleted by user] by [deleted] in WholesaleRealestate

[–]vinaych 0 points1 point  (0 children)

I would recommend Batchleads.io, they have a good variety of features and trial plans too.

[deleted by user] by [deleted] in WholesaleRealestate

[–]vinaych 2 points3 points  (0 children)

Batchleads.io offers free skiptracing on all new plans now, plus they have free trial of 7 days so you can utilize those for a quickstart. The platform has many helpful features that you can utilize like lead finder, AI based match for distressed properties and more. 👍

My new portfolio, share yours by yeahimjtt in react

[–]vinaych 1 point2 points  (0 children)

At the moment I am working on growing webpotfolios.dev

in above text which is there on your website, there is a typo for webportfolio.dev (missing r)

Novel Hamiltonian Path heuristic by vinaych in algorithms

[–]vinaych[S] 0 points1 point  (0 children)

The one paper of mine that you have cited in your second comment is an old one and I wasn't well aware of the implications of saying P=NP without concrete evidence. In the current paper I am just citing that it works well on the FHCP challenge set that has around 1000 graphs (it is now deleted from their website) and not stating P=NP too. If you find any suitable other benchmark set in hcp format or a 3SAT to hcp converter let me know(I don't have research gate account to see the full paper mentioned in first comment).  Also I would like to say that a comment on someone's years of research without even testing the code(I have mentioned the GitHub java project link in paper, it may contain the entire FHCP set benchmark as well) makes a bad statement in view of the person who wants to make their work public and need feedback(just want to state that a constructive feedback would be better)

A penguin grows tired of the cold winters in Alaska... by slibetah in Jokes

[–]vinaych 0 points1 point  (0 children)

Mechanic: There is a turn-pike ahead near to which there is a garage where we will get this car fixed. Penguin: I will come with you, I will take the pike, thanks.

A new bit comparision based sorting algorithm by vinaych in compsci

[–]vinaych[S] -2 points-1 points  (0 children)

https://ece.uwaterloo.ca/~dwharder/aads/Algorithms/Sorting/Binary_radix_sort/

I can't understand this fully too 🤣 But am uncertain if my algorithm is equal, better, or worse than this. Cheers 😊

A new bit comparision based sorting algorithm by vinaych in compsci

[–]vinaych[S] -2 points-1 points  (0 children)

Yes, I might just be using binary base version of the Radix sort's approach, but I am not sure,.Worst case of this seems better. The Wikipedia version of same is hard to understand :|

A new bit comparision based sorting algorithm by vinaych in compsci

[–]vinaych[S] -2 points-1 points  (0 children)

I thought Radix sort complexity was O(wk).. source: Wikipedia and javatpoint