]> jfr.im git - uguu.git/blobdiff - src/static/php/upload.php
final fix
[uguu.git] / src / static / php / upload.php
index 1237ed7754955380a00202cde45b63812897efcf..3469b43bd93f667f7ad331b990fe18b7bc0ae9a1 100644 (file)
      * along with this program.  If not, see <https://www.gnu.org/licenses/>.
      */
     
-    function checkConfig()
-    {
-        if (!file_exists(__DIR__ . '/../config.json')) {
-            throw new Exception('Cant read settings file.', 500);
-        }
-        try {
-            $settings = json_decode(
-               file_get_contents(__DIR__ . '/../config.json'),
-               true,
-            );
-            if ($settings['PHP_ERRORS']) {
-                error_reporting(E_ALL);
-                ini_set('display_errors', 1);
-            }
-        }
-        catch (Exception) {
-            throw new Exception('Cant populate settings.', 500);
-        }
-    }
-    
-    checkConfig();
     require_once __DIR__ . '/../vendor/autoload.php';
     
     use Pomf\Uguu\Classes\UploadGateway;