@extends('layouts/master') @section('title') Main Settings - Technic Solder @stop @section('content')
Main Settings
@if (Session::has('success'))
{{ Session::get('success') }}
@endif
This is the public facing URL for your repository. If your repository location is already a URL, you can use the same value here. Include a trailing slash!
This is the location of your mod reposistory. This can be a URL (remote repo), or an absolute file location (local repo, much faster). When a remote repo is used, Solder will have to download the entire file to calculate the MD5 hash.

The repository location is the prime suspect when MD5 hashing fails. Most cases are caused by improper file permissions when using an absolute file location.

This is the amount of time (in seconds) Solder will wait before giving up trying to connect to a URL to hash a mod.
This is the amount of time (in seconds) Solder will attempt to remotely hash a mod for before giving up.

You can change these settings in the .env file.

Minecraft Versions Caching

Solder caches a list of Minecraft versions. The first attempt is from the Technic Platform. If that fails, it tries to get them from Mojang. The result is then cached for 3 hours. You can manually update the cache below.


@if (Cache::has('minecraftversions'))

Minecraft versions are currently cached.

@else

Minecraft versions are not cached. This may cause unexpectedly long page loads the first time it loads them.

@endif
@endsection @section('bottom') @endsection