Hi Marcus

 I have changed my uploadFile function to

  function uploadFile() {
            $file = $this->data['Logo']['file'];
            if ($file['error'] === UPLOAD_ERR_OK) {
            $id = String::uuid();
            if (move_uploaded_file($file['tmp_name'], WWW_ROOT .
'img/logos/' . $file['name'])) {
            $this->request->data['Logo']['filename'] = $file['name'];
            $this->request->data['Logo']['filesize'] = $file['size'];
            $this->request->data['Logo']['filemime'] = $file['type'];
            return true;
        }
        }
        return false;
        }

and its uploading correctly to the webroot img folder using the filename.
Now im trying to echo the image in my view using

<?php echo $this->Html->image('logos'. $logo['Logo']['filename']); ?>

Still does not echo.

Any idea why it doesnt wanna work?

On Thu, Feb 14, 2013 at 11:32 AM, Marcus James <[email protected]> wrote:

> what you wrote above, are you saving 511ca905-f170-49d5-90a0-055083176c8c
> value?
>
>
>  --
> Like Us on FaceBook https://www.facebook.com/CakePHP
> Find us on Twitter http://twitter.com/CakePHP
>
> ---
> You received this message because you are subscribed to the Google Groups
> "CakePHP" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To post to this group, send email to [email protected].
> Visit this group at http://groups.google.com/group/cake-php?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

-- 
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP

--- 
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/cake-php?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to