I am saving a Rate record and an associated image using the Media plugin (https://github.com/davidpersson/media). Everything works fine when an image is added, when an image isn't added the Rate record gets corrupted.

The array is as follows:

Array
(
    [Rate] => Array
        (
            [enabled] => 0
            [is_corporate] => 0
            [special_offer] => 0
            [list_no] => 0
            [id_ref] => 4656
            [title] => testttttt
            [price_quote_as] => 0
            [adult_supplement] => 0
            [child_supplement] => 0
            [supplement] => 0
            [short_description] => testttttt
            [description] => 

testttttt


            [available] => Array
                (
                    [0] => 3
                )

            [minimum_stay] => 0
            [maximum_stay] => 0
            [valid_from] => 2012-02-24
            [valid_to] => 2012-02-25
            [file] => Array
                (
                    [name] => 
                    [type] => 
                    [tmp_name] => 
                    [error] => 4
                    [size] => 0
                )

        )

    [Room] => Array
        (
            [Room] => Array
                (
                    [0] => 16
                )

        )

)

Note the 'file' array with the error 4. When I remove the 'Media.Coupler' from the model the Rate record is written correctly but the image data is lost.

link|improve this question

35% accept rate
Please at least format the arrays correctly. That is impossible to read. – Juhana Feb 23 at 14:45
feedback

1 Answer

If you are just after image upload, I would recommend https://github.com/josegonzalez/upload

It works out the box, image resizing and there is a version fro 1.3 and 2.x

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.