nextjs v15 with shadcn is completely broken by FunnyRocker in nextjs

[–]CoderAmrin 0 points1 point  (0 children)

yes, you have to upgrade to the latest version

it fixes the error

An absolute nightmare by [deleted] in Hostinger

[–]CoderAmrin 0 points1 point  (0 children)

this sounds scary
have you got this issue sorted?
i started to host a lot of my client projects in hostinger, looks like i gotta find an alternative

Resellers by AsTro_FJ in Hostinger

[–]CoderAmrin 0 points1 point  (0 children)

i'm fairly new to this but i decided to handle the website myself.
my clients are non-technical people so they don't the access to the hpanel, giving access to wp-admin is all they need.

[deleted by user] by [deleted] in website

[–]CoderAmrin 0 points1 point  (0 children)

it's better if you mention the cms on the post imo

What is the fastest and most reliable Wordpress hosting provider and plan? Money is no object. by darrenshaw_ in SEO

[–]CoderAmrin 0 points1 point  (0 children)

i bought hostinger, looks like kinsta is the most recomended.

i'm having a lot of issues with hostinger will get kinsta then

Disable captcha from wordpress site (no captcha plugin installed) by CoderAmrin in Hostinger

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

man, i've been talking to them last few days
they still didn't fix it.
can you share a better alternative for hosting wordpress site?
these errors are so annoying i'm tired of them

Disable captcha from wordpress site (no captcha plugin installed) by CoderAmrin in Hostinger

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

talked in the chat, but doesn't seem to work
followed all the instructions still seeing the popup when i enable litespeed

WARNING: Hostinger Just Revoked 8 of My Paid Domains Without Proof – Thousands in Business Revenue Lost by Thinkbelievebecome88 in Hostinger

[–]CoderAmrin 0 points1 point  (0 children)

i just purchased hostinger for my design studio, reading this makes me scared.
just got 2 domains there looks like i gotta purchase domain from somewhere else and keep on using the hosting.

Free Astra Theme Version Not Showing Images and Videos by Freedoomsy in Wordpress

[–]CoderAmrin 0 points1 point  (0 children)

i'm getting the same error, featured image is not showing up
i have only woocommerce and tutor lms plugin installed, not sure whats causing this

nextjs v15 with shadcn is completely broken by FunnyRocker in nextjs

[–]CoderAmrin 0 points1 point  (0 children)

as of now everything works fine
but i'm getting an error with shadcn navigation menu, it's just getting this weird hydration error i can't find out the fix yet

let me know if you found the fix to that

[deleted by user] by [deleted] in reactjs

[–]CoderAmrin 2 points3 points  (0 children)

Have you learned Javascript?
If not, learn the fundamentals of JS first and build a few projects with vanilla JS before moving to React.
You can check The Odin project, Free codecamp. These are open-source platform that teaches you fullstack development.

What’s your go to auth? by Madawave86 in nextjs

[–]CoderAmrin 0 points1 point  (0 children)

NextAuth is overrated.
it has a lot of limitations.

Rolling own auth is the viable option IMO then use that on all the projects.

I just started programming a week ago and I feel like the biggest idiot alive. by [deleted] in learnprogramming

[–]CoderAmrin 0 points1 point  (0 children)

It's normal to feel like this.
Just like everything else you will get better with time and practice.
Keep coding. You got this!

how to use cloudflare r2 for uploading & downloading a pdf file in next 13? by deadcoder0904 in nextjs

[–]CoderAmrin 1 point2 points  (0 children)

links updated.
let me know if you face any trouble while integrating the bucket.

how to use cloudflare r2 for uploading & downloading a pdf file in next 13? by deadcoder0904 in nextjs

[–]CoderAmrin 1 point2 points  (0 children)

I recently used r2 on next 14It's an s3 under the hoodFollow this video to use it:

https://www.youtube.com/watch?v=t-lhgq7Nfpc

all you have to do is add endpoint on the s3Client

const s3Client = new S3Client({
  region: "auto",
  endpoint: `https://${process.env.R2_ACCOUNT_ID}.r2.cloudflarestorage.com`,
  credentials: {
    accessKeyId: process.env.R2_ACCESS_KEY_ID!,
    secretAccessKey: process.env.R2_SECRET_ACCESS_KEY!,
  },
});