Reputation: 21
When I try to upload a image in cloudinary am getting "Fatal error: Uncaught Error: Class 'Cloudinary' not found" this error in my config file.
And my config file contains:
<?php
\Cloudinary::config(array(
"cloud_name" => 'dnxxxxxxd',
"api_key" => '981xxxxxxxxxxx0',
"api_secret" => '0wlNxxxxxxxxxxxxxxxxxxxx10g'
));
?>
Why I'm getting this ??
Upvotes: 2
Views: 1763
Reputation: 9324
I hope you found the solution. If not try this
https://github.com/cloudinary/cloudinary_php
Note: cloudinary_php require PHP 5.6. If for some ready you get the error try the version 1.x (legacy)
https://github.com/cloudinary/cloudinary_php/tree/support/1.x
Upvotes: 1