laravel icon indicating copy to clipboard operation
laravel copied to clipboard

Vimeo upload video error 500

Open Sameer-hesta opened this issue 4 years ago • 8 comments

Hello,

I am having a Vimeo plus account, There is an issue I am facing while uploading video from development { "data": "mkdir(): Permission denied", "status": 500, "error": true, "message": "Something went wrong" }

But this upload works fine when I use it on local server

Sameer-hesta avatar Jun 23 '20 07:06 Sameer-hesta

Hi, I am facing the same issue. Did you manage to solve it somehow?

rudolfbruder avatar Oct 17 '20 17:10 rudolfbruder

Hi,

I managed to solve it. It was permissions issue on my VPS. While video upload there is a getCache metho inside of Vimeo.php file from the package. If you trace, dd() a bit it down it will show you the location of cache folder. I added write permissions there and it started working.

rudolfbruder avatar Oct 23 '20 06:10 rudolfbruder

Thanks @Greenvold Solved for me

allanzi avatar Nov 24 '20 03:11 allanzi

@bump Can we close this?

rudolfbruder avatar Dec 27 '20 18:12 rudolfbruder

I also faced the same issue. The exact path is /vendor/ankitpokhrel/tus-php/ and I created .cache folder and set it permission to 755

@rudolfbruder Thanks and we can close this.

parakkajithin avatar Sep 12 '21 19:09 parakkajithin

I managed to solve it by below command.

sudo chown -R www-data vendor/ankitpokhrel sudo chmod -R ug+rwx vendor/ankitpokhrel

keval-hyperspace avatar Oct 29 '21 09:10 keval-hyperspace

I also face this issue but solve it with this simple step.

  1. go into vendor/ folder.
  2. chmod -R 775 ankitpokhrel/
  3. chown -R www-data ankitpokhrel/

AliNawazz96 avatar Dec 05 '21 20:12 AliNawazz96

I got 502 in every single request, cant event retrieve user profile

akunbeben-dev avatar Oct 14 '22 17:10 akunbeben-dev