Page 1 of 1

Cannot add attachments to my posts ("File has never been downloaded")

Posted: Thu Jan 18, 2024 4:12 am
by LeoneFamily
I'm trying to add my first submission to the database out of the 1500+ discs I own, but I can't add the files to my post, as the website just tells me "File has never been downloaded", and it does that with every file I try to upload.

Re: Cannot add attachments to my posts ("File has never been downloaded")

Posted: Thu Jan 18, 2024 5:09 am
by Edness
That should be correct.  If you see Existing attachment #1 on the left, it has been uploaded and attached to your post.  "File has never been downloaded" just means exactly that - you haven't published the post, so no one else (usually moderators) have had a chance to download the logs for processing and adding your submission.  The size limit for attachments is 2 or 3 MB.

Re: Cannot add attachments to my posts ("File has never been downloaded")

Posted: Thu Jan 18, 2024 8:40 am
by NovaAurora
Be aware there's a 2MB(?) limit on file uploads, if it exceeds that it won't upload.
In those cases you'll either need to create split zips or upload to an external host (mega.nz, google drive, archive.org etc)

Re: Cannot add attachments to my posts ("File has never been downloaded")

Posted: Thu Jan 18, 2024 10:24 am
by bikerspade
You can re-compress zip files to 7z which can sometimes result in file sizes being reduced below the 2000000 byte limit (~1.90MB) per file.

Re: Cannot add attachments to my posts ("File has never been downloaded")

Posted: Thu Jan 18, 2024 10:36 am
by bikerspade
A simple windows batch script that will recompress .zip to .7z (depending on where 7-zip was installed, you may need to edit the paths):

Code: Select all

@echo off
for %%F in (*.zip,*.rar) do ( "C:\Program Files\7-Zip\7z.exe" x -y -o"%%F_tmp" "%%F" * & pushd %%F_tmp & "C:\Program Files\7-Zip\7z.exe" a -y -r -t7z -mx9 -md1024m -mfb256 ..\"%%~nF".7z * & popd & rmdir /s /q "%%F_tmp" )
Or the following, which will automatically split the 7-zip into 2000000-byte chunks that can be directly attached to the post:

Code: Select all

@echo off
for %%F in (*.zip,*.rar) do ( "C:\Program Files\7-Zip\7z.exe" x -y -o"%%F_tmp" "%%F" * & pushd %%F_tmp & "C:\Program Files\7-Zip\7z.exe" a -y -r -t7z -mx9 -md1024m -mfb256 -v2000000b ..\"%%~nF".7z * & popd & rmdir /s /q "%%F_tmp" )

Re: Cannot add attachments to my posts ("File has never been downloaded")

Posted: Thu Jan 18, 2024 8:32 pm
by LeoneFamily
Thanks guys, I've posted my first verification now.