Last active
January 30, 2020 04:41
-
-
Save saeedvir/4455df30cddfbd45195ad1a8431735f5 to your computer and use it in GitHub Desktop.
how to use "spatie/laravel-medialibrary" in shared host (solved)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
by: https://github.com/saeedvir | |
telegram : https://t.me/PhpWebDeveloper | |
============================================== | |
package : | |
https://github.com/spatie/laravel-medialibrary | |
("proc_open" function is disabled in shared host) | |
use this code in your model : | |
public function registerMediaConversions(Media $media = null) | |
{ | |
$this->addMediaConversion('thumb') | |
->width(368) | |
->height(232) | |
->nonOptimized() //for shared hosts | |
->nonQueued(); //for shared hosts | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment