-
Notifications
You must be signed in to change notification settings - Fork 210
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
Unable to create resource #282
Comments
@kailasb I no longer work at Vimeo so you'll want to reach out to their support team. Sorry! |
do you have any idea I've also upgrade the vimeo plugin to 3.0.6 & ankitpokhrel/tus-php: 1.2.1 |
Sorry I can't help you, I haven't worked on or with the product in almost two years. You should reach out to their support and they'll be able to help you out. |
@kailasb did you find any solution? I'm facing the same situation. It used to work just fine but a few weeks ago stopped working. |
@kailasb Version's info: Code: All this working fine in my local environment. But It's no working on my production environment, I get this error "Unable to create resource". Can any one help me in this..?? |
see #266 (comment) |
The below solution perfectly working fine in my case. problem in code is ==> "the vimeo upload service perfectly working fine in localhost (local dev. environment) BUT when I try to upload code on production environment (Debian/Ubuntu server) it gives following errors:" : [php5:warn] : PHP Warning: file_put_contents(/var/www/html/vendor/ankitpokhrel/tus-php/.cache/tus_php.client.cache): failed to open stream: Permission denied in /vendor/ankitpokhrel/tus-php/src/Cache/FileStore.php So I found solution in this article: Then I change the permission on server folder by running the following command: ==> chmod -R 0777 tus-php/ and issue is resolved 👍🏾 |
Do not chmod to 0777 as it gives EVERYONE execution privilege in that folder. Use 0755 to give EVERYONE write access instead if you have to, but in truth you should be giving your web server write permission instead of everyone. |
@erunion
I'm facing the issue while upload the video. I'm using paid version of vimeo.
it's working fine locally but it create the URL with https://asia-files.tus.vimeo.com/files/vimeo-prod-src-tus-asia/3db9d46ef63cdfb01112798c352b05de
but when I upload the video from server it generating URL like https://europe-files.tus.vimeo.com/files/vimeo-prod-src-tus-eu/62566c38373b68318218e1f2b8239eb5 this and getting error "Unable to create resource"
can you help on this?
The text was updated successfully, but these errors were encountered: