-
Notifications
You must be signed in to change notification settings - Fork 724
Home
Here are some of the frequent asked questions, more complicated questions can be found in sidebar.
Run php artisan route:clear
and php artisan config:clear
.
SVG files cannot be cropped or resized.
Please enable exif
PHP extension.
Please check the customization document. Pull requests are appreciated!
Modify memory_limit
and upload_max_filesize
directives in your php.ini
.
If you see the exact error message "File size exceeds server limit (2M)", this is usually related to php.ini configuration. The 2M
is the default value for post_max_size and upload_max_filesize.
To debug if php.ini is set properly, you can use the following line somewhere in your view or controller:
dd(ini_get('post_max_size'), ini_get('upload_max_filesize'));
If both values are 2M
, please check if php.ini configuration is in the right place.
Use laravel-50 branch of this package.
Enable exif
PHP extension
Documents: unisharp.github.io/laravel-filemanager