Hi all,
I wanna ask about create a link to download file.
so in my view i add this code
<?php echo $html->link('Download CSV',array( "action" => "download")); ?>
and then i use Media View on the controller
function download(){
>
> $this->view = 'Media';
> $params = array(
> 'id' => 'clipping.zip',
> 'name' => 'clipping',
> 'mimeType' => 'text/csv csv',
> 'download' => true,
> 'extension' => 'csv',
> 'path' => APP . 'data/csv/' . DS
> );
>
> $this->set($params);
> $this->autoLayout = false;
>
> }
but have this error :
>
> *Error: * The requested address *'/somecontrollers/download'* was not
> found on this server.
how do i fix this??
--
You received this message because you are subscribed to the Google Groups
"CakePHP" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
Visit this group at http://groups.google.com/group/cake-php?hl=en-US.