How do I reload images that won’t load on Next.js w/ Reactjs?
Hello I have some ipfs data and it has 300 images. I want to render them but when I try to render them sometimes 3 4 of them is not loaded. it gives me 404 error and won't load. So…
Hello I have some ipfs data and it has 300 images. I want to render them but when I try to render them sometimes 3 4 of them is not loaded. it gives me 404 error and won't load. So…
I write a simple app in react and in this app i use the createBrowserRouter component: import React from "react"; import { createRoot } from "react-dom/client"; import App from "./App"; import reportWebVitals from "./reportWebVitals"; import { ThirdwebProvider } from "@thirdweb-dev/react";…
I have an ipfs encrypted video URL. I am not able to play video in avplayer but URL plays well in webview. here is URL: https://ipfs.moralis.io:2053/ipfs/QmUjWnQZVVNmTSVak2QDhTxMkn3dPQozxawa1sm3jE5bLr let currentURL = URL(string: "https://ipfs.moralis.io:2053/ipfs/QmUjWnQZVVNmTSVak2QDhTxMkn3dPQozxawa1sm3jE5bLr")! let playerItem = AVPlayerItem(url: currentURL) playerItem.addObserver(self, forKeyPath: "status", options:…
I am learning IPFS and trying to save IPFS file info in MongoDB. After uploading, I get one hash value ex: {fileHash: CID(QmbCaWPi9tSqcnykvBUMaH2M1d5PiVPLEfPwhJksSSeMak)} And in MongoDB, I see something like this: "fileHash": { "code": 112, "version": 0, "multihash": { "code":…
I have a simple setup for serving content from a specific CID: user nginx; worker_processes auto; events { worker_connections 1024; } http { upstream ipfs { server ipfs:8080; } server { listen 8080; server_name example.com examplecom.net; index readme; location /…