Giter Site home page Giter Site logo

Comments (12)

TalLevAmi avatar TalLevAmi commented on September 2, 2024

I just tried running your code under cakephp 2.4.1 and php 5.4 and it works fine (with the exception that the App::import calls should not have .php in them). What versions of php and cakephp are you using?

from cloudinary_php.

robksawyer avatar robksawyer commented on September 2, 2024

I'm using 5.4.19 and 2.4.1. Note: I'm using the method inside of a CakePHP element. Also, I installed the Cloudinary files via Composer.

using "cloudinary/cloudinary_php": "dev-master",

from cloudinary_php.

TalLevAmi avatar TalLevAmi commented on September 2, 2024

Works for me inside an element as well.

Do you have the following files in your project?

app/Vendor/Cloudinary/Api.php 
app/Vendor/Cloudinary/Cloudinary.php
app/Vendor/Cloudinary/Uploader.php
app/Vendor/Cloudinary/cacert.pem

Did you modify them in any way?
Can you try to call this method from elsewhere (controller, regular view, etc.)?

from cloudinary_php.

robksawyer avatar robksawyer commented on September 2, 2024

How are you loading these in? I haven't modified anything. I can call cl_image_tag elsewhere, but not cl_image_upload_tag. I don't have cacert.pem loading into my project via require or import. To my knowledge that wasn't listed in the docs.

My folder structure looks like:
screen shot 2013-09-16 at 12 43 56 am

from cloudinary_php.

TalLevAmi avatar TalLevAmi commented on September 2, 2024

Try to copy only the contents of the src directory to app/Vendor/cloudinary
Load them using:

App::import('Vendor', 'Cloudinary/Cloudinary');
App::import('Vendor', 'Cloudinary/Uploader');
App::import('Vendor', 'Cloudinary/Api');

from cloudinary_php.

robksawyer avatar robksawyer commented on September 2, 2024

I ended up using the following and it has gotten me passed the cl_image_tag_upload error. Now I'm getting the following.

Invalid preloaded file info
Error:
An Internal Error Has Occurred.

Code reference in view element is below.

echo cl_image_upload_tag("fileName", array(
                            "callback" => $cors_location
                        ));
                        $preloaded = new \Cloudinary\PreloadedFile($_POST['fileName']);
                        if (!$preloaded->is_valid()) {
                            echo "Invalid upload signature";        
                        } else {
                            $photo->image_identifier = $preloaded->identifier();
                            echo cl_image_tag($photo["public_id"], array(
                                "format" => "jpg", 
                                "crop" => "fill", 
                                "width" => 120, 
                                "height" => 120
                            ));
                        }

from cloudinary_php.

TalLevAmi avatar TalLevAmi commented on September 2, 2024

Looks like $_POST['fileName'] is null which causes an error when trying to construct the PreloadedFile from it.

from cloudinary_php.

robksawyer avatar robksawyer commented on September 2, 2024

Yep, just realized that.

Added

if(isset($_POST['fileName']) && !empty($_POST['fileName'])){
                        $preloaded = new \Cloudinary\PreloadedFile($_POST['fileName']);
                        if (!$preloaded->is_valid()) {

                            echo "Invalid upload signature";

                        } else {

                            $photo->image_identifier = $preloaded->identifier();
                            echo cl_image_tag($photo["public_id"], array(
                                "format" => "jpg", 
                                "crop" => "fill", 
                                "width" => 120, 
                                "height" => 120,
                                "name" => "fileName"
                            ));

                        }
                    } 

to fix the issue. Now I'm realizing that the cl_image_upload_tag doesn't allow you to pass along an id or class. So much for customizing the look of the input. :(

EDIT: Man, I must be really sleepy, I just realized that all I need to do is just use existing classes that are assigned.

from cloudinary_php.

robksawyer avatar robksawyer commented on September 2, 2024

BTW: Thanks for all of the help. It seems to be working now!

from cloudinary_php.

TalLevAmi avatar TalLevAmi commented on September 2, 2024

You can use:

cl_image_upload_tag("fileName", array("callback" => $cors_location, "html"=>array("class"=>"myclass", "id"=>"myid")))

from cloudinary_php.

robksawyer avatar robksawyer commented on September 2, 2024

Beautiful, thanks again.

from cloudinary_php.

TalLevAmi avatar TalLevAmi commented on September 2, 2024

Happy to help :)

from cloudinary_php.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.