Sinisterly
Gold [Anon.City] Free Anonymous File Sharing - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Design (https://sinister.ly/Forum-Design)
+--- Forum: Web Design (https://sinister.ly/Forum-Web-Design)
+--- Thread: Gold [Anon.City] Free Anonymous File Sharing (/Thread-Gold-Anon-City-Free-Anonymous-File-Sharing)

Pages: 1 2 3 4 5 6


RE: [Anon.City] Free Anonymous File Sharing - mothered - 12-15-2020

(12-15-2020, 12:18 AM)Crimin4L Wrote: Actually they do just use subdomains and only protect their main domain by Cloudflare, all the subdomains aren't protected:
Spoiler:
[Image: G2LQmQd.gif]
CTRLHub Is brilliant, you've done very well with that site.

What would be the consequences If you did the same with a subdomain?


RE: [Anon.City] Free Anonymous File Sharing - Crimin4L - 12-16-2020

(12-15-2020, 03:49 AM)mothered Wrote:
(12-15-2020, 12:18 AM)Crimin4L Wrote: Actually they do just use subdomains and only protect their main domain by Cloudflare, all the subdomains aren't protected:
Spoiler:
[Image: G2LQmQd.gif]
CTRLHub Is brilliant, you've done very well with that site.

What would be the consequences If you did the same with a subdomain?

Thank you bud Smile and Idek tbh, def something to look into tho Tongue


RE: [Anon.City] Free Anonymous File Sharing - Crimin4L - 01-19-2021

Update:
- You may now compress a file on upload into a .zip, .rar, .7z, or .rar4 depending on your choosing:
         - Nothing chosen:
        [Image: T99GLE9.png]

         - "Compress File" chosen:
        [Image: J0Fv67I.png]

         - "Advanced" & "Compress File" chosen:
        [Image: qOQQpZq.png]


RE: [Anon.City] Free Anonymous File Sharing - mothered - 01-19-2021

(01-19-2021, 02:29 AM)Crimin4L Wrote: You may now compress a file on upload into a .zip, .rar, .7z, or .rar4 depending on your choosing:
Excellent Implementation. Do you have any plans for RAR 5.0?

Off-topic, the footer text needs to be updated.
Quote:Copyright © 2019-2020 2021



RE: [Anon.City] Free Anonymous File Sharing - Crimin4L - 01-20-2021

(01-19-2021, 08:47 AM)mothered Wrote:
(01-19-2021, 02:29 AM)Crimin4L Wrote: You may now compress a file on upload into a .zip, .rar, .7z, or .rar4 depending on your choosing:
Excellent Implementation. Do you have any plans for RAR 5.0?

Off-topic, the footer text needs to be updated.
Quote:Copyright © 2019-2020 2021

Haha thank you, I updated ctrlhub but totally forgot about anoncity xD
Also, what is the extension for rar 5.0; ".rar5"?

EDIT: Actually, I thought the difference between rar and rar4 was just the different extension type but rar4 is still just a ".rar" lolololol. Here is the compression code:
PHP Code:
$zip = new ZipArchive(); // $target['file_path'] is the path + file name + whatever extension you choose. Example: If you choose ZIP, $target['file_path'] value will look like this: // "u/A1B2C3/filename.zip" // or if you pick 7Z, the value will be "u/A1B2C3/filename.7z" // Then below is where the compressed file is created, with what ever extension you used, but the METHOD used is still the same (Guessing its the ZIP compression method). $zip->open($target['file_path'], ZipArchive::CREATE); $zip->addFile($_FILES["fileToUpload"]["tmp_name"], basename($_FILES["fileToUpload"]["name"])); $zip->close();



RE: [Anon.City] Free Anonymous File Sharing - mothered - 01-20-2021

(01-20-2021, 04:09 AM)Crimin4L Wrote: Haha thank you, I updated ctrlhub but totally forgot about anoncity xD
You're welcome, It's easily overlooked.

(01-20-2021, 04:09 AM)Crimin4L Wrote: Also, what is the extension for rar 5.0; ".rar5"?
Yes that's correct.


RE: [Anon.City] Free Anonymous File Sharing - Crimin4L - 01-26-2021

New feature coming soon!

Anon.city will be supporting pastes in the near future (Like pastebin.com, throwbin.io, etc..).

Here is a little preview of what is to come:
Spoiler:
[Image: CxxD88Q.gif]
*NOTE: Everything you see is NOT a final version.