Skip to content

Instantly share code, notes, and snippets.

@saeedvir
Last active January 30, 2020 04:41
Show Gist options
  • Save saeedvir/4455df30cddfbd45195ad1a8431735f5 to your computer and use it in GitHub Desktop.
Save saeedvir/4455df30cddfbd45195ad1a8431735f5 to your computer and use it in GitHub Desktop.
how to use "spatie/laravel-medialibrary" in shared host (solved)
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