Screenshotuploader

Minecraft forge mod
Alternatives To Screenshotuploader
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Minecraftforge6,053
a day ago191otherJava
Modifications to the Minecraft base files to assist in compatibility between mods.
Worldedit2,722
a day ago144otherJava
🗺️ Minecraft map editor and mod
Iris2,619
18 hours ago179lgpl-3.0Java
(WIP) A modern shaders mod for Minecraft intended to be compatible with existing OptiFine shader packs
Create1,878
2 days ago1,289mitJava
[Forge Mod] Building Tools and Aesthetic Technology
Dynmap1,812
2 days ago69apache-2.0Java
A set of Minecraft mods that provide a real time web-based map system for various Minecraft server implementations.
Catserver1,670
6 days ago39lgpl-3.0Java
高性能和高兼容性的1.12.2/1.16.5/1.18.2版本Forge+Bukkit+Spigot服务端 (A high performance and high compatibility 1.12.2/1.16.5/1.18.2 version Forge+Bukkit+Spigot server)
Scriptcraft1,473
3 years ago72mitJavaScript
Write Minecraft Plugins in JavaScript.
Opencomputers1,397
2 months ago96otherScala
Home of the OpenComputers mod for Minecraft.
Fabric Carpet1,378
2 days ago266mitJava
Fabric Carpet
Farplanetwo1,345
3 months ago50otherJava
Level-of-Detail renderer in Minecraft. Allows for render distances of millions of blocks. (Cubic Chunks-compatible) (WIP)
Alternatives To Screenshotuploader
Select To Compare


Alternative Project Comparisons
Readme

ScreenshotUploader

Minecraft forge mod that does exactly as it name indicates. Upload screenshots.

Default keys:

  • F4 Upload image
  • F2 Save and upload image (override has to be enabled to upload)

Features:

  • Direct upload to imgur
  • Copy link to clipboard (configurable)
  • Upload to your own server

Planned features:

  • Add custom server support to upload to your own server
  • Filters
  • Overlays/watermarks

Changing settings

  • you can change your settings by going to mods on the main menu or by going to mod options in the in-game menu.

Uploading to a custom server

Once you've gotten to mod settings there will be a "Server settings" button

Client configuration

Link: link to the upload script Post values: add POST data to your request for servers that require some form of authentication. everything before = is considered as the key and everything after as value you can get the key like this in PHP for example: $_POST["key"] and that would return the value NOTE: {image} is required as this will send the image data. However you can choose whatever key you want. NOTE: dont use spaces between ´=´ they will be added.

Example:

image={image} //send post data with image as key and {image} as value
key=2DAC1D297E6E7E348E5CE1884A7FC //send post data with key as key and 2DAC1D297E6E7E348E5CE1884A7FC as value

if you are using some image hosting service make sure to look up what data you need to send. If you use your own upload script you can pretty much do whatever you want.

Server configuration PHP

NOTE: PLEASE for the love of your own sanity, USE VALIDATION or anyone could upload anything to your server NOTE: I will assume you have at least basic knowlege about PHP. This is a VERY basic example. With very little security to keep it fairly simple and straight forward. you can read https://security.stackexchange.com/questions/32852/risks-of-a-php-image-upload-form to find out more about security

Make sure to change the $key dont use the one given here.

<?php
/**
 * Created by PhpStorm.
 * User: DarkEyeDragon
 * Date: 4-4-2018
 * Time: 03:21
 */

$key = "2DAC1D297E6E7E348E5CE1884A7FC"; //this can be anything, just make sure its the same as the one you set in the client

if(isset($_FILES["image"])){ //check if there is a key named image
    if($_POST["key"] === $key) {
        $target_dir = "images/"; //directory to upload to (MUST EXIST!)
        $file_name = str_replace(".", "-", uniqid("img", false)); //get an unique id
        $target_file = $target_dir . basename($file_name . ".jpg"); //add the extention
        
        $fp = fopen('log.txt', 'a'); //create a file
        fwrite($fp, $_FILES["image"]); //write image data to the file to see if it comes in correctly

        if (move_uploaded_file($_FILES["screenshot"]["tmp_name"], $target_file)) {
            fwrite($fp, "The file " . basename($_FILES["screenshot"]["name"]) . " has been uploaded.");
            header("Location: http://$_SERVER[HTTP_HOST]/$target_file"); //send the url to the image back to the client
        } else {
            fwrite($fp, "Sorry, there was an error uploading your file.");
            http_response_code (500); //send an internal error back
        }
    }else{
      http_response_code (401); //send unauthorized error back
    }
}
else
    http_response_code (400); //send and invalid request error back
Popular Mod Projects
Popular Minecraft Projects
Popular Games Categories

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Java
Server
Mod
Minecraft
Upload