@extends('layouts.admin') @section('css') @endsection @section('content') @php $gdInfo = gd_info(); @endphp
Server require PHP version 7.3 or newer Current Version: {{ phpversion() }} |
Enable GD Library for image resizing function Current Setting: {{ empty($gdInfo['GD Version']) ? 'Disable' : 'Enable ('.$gdInfo['GD Version'].')' }} |
file_uploads configuration of system file upload function. Current Setting: {{ ini_get('file_uploads') ? 'On' : 'Off' }} (normally server default is ON) |
|
max_file_uploads define the maximum number of files allowed to be uploaded simultaneously. Current Setting: {{ ini_get('max_file_uploads') }} If you want to upload files more than {{ ini_get('max_file_uploads') }} simultaneously, please modify this value to meet your demand with your web hosting company. |
|
upload_max_filesize define the maximum size of an uploaded file. Current Setting: {{ ini_get('upload_max_filesize') }} If you want to upload a file which is larger than {{ ini_get('upload_max_filesize') }}, please modify this value to meet your demand with your web hosting company.
|
|
post_max_size define the maximum size of post data allowed. Current Setting: {{ ini_get('post_max_size') }} If you modify upload_max_filesize, please also set post_max_size same as upload_max_filesize. |