-
Notifications
You must be signed in to change notification settings - Fork 165
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
image uploadinng is not working it show error( Encoding format (tmp) is not supported). #1
Comments
Hello,
I think you should check the installation process properly given on Github.
For image related problem I think you missed the command: `php artisan
storage:link`
Thanks
…On Fri, 20 Sep 2019, 3:05 am mohammed1233, ***@***.***> wrote:
I installed the project. the database is working i can login and out but
when it came to uploading images it doesn't work an error show up (
Encoding format (tmp) is not supported).
her are same images of the error.
[image: 1]
<https://user-images.githubusercontent.com/24301130/65280965-c49cc680-db31-11e9-8c1c-1a7f626b2df4.png>
[image: 2]
<https://user-images.githubusercontent.com/24301130/65280987-cf575b80-db31-11e9-902d-89144b0c6be4.png>
thanks :)
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#1?email_source=notifications&email_token=ACBE2LVRCIHDAV46OVH6W4TQKPSRJA5CNFSM4IYQBTX2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HMQYMKA>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ACBE2LS6MK7ONUBDBMGYFBLQKPSRJANCNFSM4IYQBTXQ>
.
|
I have used installation process properly given on Github.
I checked php artisan storage:link thanks |
Just replace the "save" method for the image input on every controller that has image processing. Instead of: $userimage= Image::make($image)->save(); Use: $userimage= Image::make($image)->stream(); The issue comes with some changes done in later versions of the intervention image package. Best regards, |
I found the same stuff in SliderController.php Again wrong behavior of ->save()... Also to persist image ration better use widen instead of resize: I hope it will helps to someone. |
Use below installation and steps to resolve image issue.
That's all, you can verify that GD support loaded: php -i | grep -i gd Output should be like this: GD Support => enabled |
Because image is not in proper size not in ranges so you get this error. |
I installed the project. the database is working i can login and out but when it came to uploading images it doesn't work an error show up ( Encoding format (tmp) is not supported).
her are same images of the error.
thanks :)
The text was updated successfully, but these errors were encountered: