
I made a function that downloads file from url and uploads to pomf.lain.la, but it keeps giving one of following two errors.
TypeScript
[ERROR] FetchError: request to https://pomf.lain.la/upload.php failed, reason: socket hang up
[ERROR] FetchError: request to https://pomf.lain.la/upload.php failed, reason: read ECONNRESET
This is my code:
TypeScript
async function uploadToPomf(url) {
const fileResponse = await fetch(url);
if (!fileResponse.ok) throw new Error('File download failed');
const buffer = await fileResponse.arrayBuffer();
const contentType = fileResponse.headers.get('content-type');
const ext = contentType.startsWith('video') ? 'mp4' : 'webp';
console.log(`[POMF] Uploading ${ext} file...`);
console.log(`[POMF] Content-Type: ${contentType}`);
console.log(`[POMF] Buffer size: ${buffer.byteLength} bytes`);
const form = new FormData();
form.append('files[]', Buffer.from(buffer), {
filename: `file_${Date.now()}.${ext}`,
contentType: contentType,
knownLength: buffer.length
});
const pomfResponse = await fetch('https://pomf.lain.la/upload.php', {
method: 'POST',
body: form,
headers: form.getHeaders()
});
console.log(`[POMF] ${pomfResponse.status} ${await pomfResponse.text()}`);
if (!pomfResponse.ok) throw new Error(`HTTP ${pomfResponse.status}`);
const pomfData = await pomfResponse.json();
if (!pomfData.success) throw new Error('Pomf upload failed');
return pomfData.files[0].url;
}
Even following code gives same error
TypeScript
const testResponse = await fetch('https://pomf.lain.la/upload.php', {
method: 'HEAD',
timeout: 10000
});
How can I fix this? Does this mean pomf.lain.la blocked appwrite cloud functions ip?
TL;DR
The developers are facing "socket hang up" and "ECONNRESET" errors when trying to upload files to "pomf.lain.la". They suspect that the appwrite cloud functions IP might be blocked. The issue might be due to a connection problem or rate limiting from the server, and not necessarily IP blocking.
Possible solutions:
1. Check if there are any rate limits or restrictions on the server side.
2. Ensure that the connection to "pomf.lain.la" is stable and reliable.
3. Try adding a delay between requests to avoid overwhelming the server.
4. Implement error handling and retryRecommended threads
- Collection Permission issue
I am facing issue in my Pro account. "Add" button is disabled while adding permission in DB collection settings.
- Opened my website after long time and Ba...
I built a website around a year back and and used appwrite for making the backend. At that time the website was working fine but now when i open it the images a...
- custom requirements.txt file
How do I specify a custom requirements.txt file when creating a serverless function through the Appwrite console?
