[fw-general] Linked images in Email

2007-08-13 Thread Michael Baerwolf
I'm trying to add linked images to an email. Using Zend_Mail $body = 'htmlhead/head bodytable width=100% border=0 cellpadding=0 cellspacing=0 tr td width=19%img src=http://www.something.com/images/image.jpg /td /table/body/html'; $subject = 'test';

Re: [fw-general] File Upload

2007-02-22 Thread Michael Baerwolf
I just register the global $_FILES and then call it in the controller In the bootstrap Zend::register('files',$_FILES); Then an action in my image controller $files = Zend::registry('files'); copy($files['image_name']['tmp_name'],

Re: [fw-general] bootstrap in a subdirectory of document root

2007-02-09 Thread Michael Baerwolf
I tried using the setBaseUrl(). I cut and pasted the example and it does the same thing, returns 404 Not Found Requested Url. I must have something configured wrong in apache. Sorry for the bother. Thanks, Mike Matt Wade wrote: Michael Baerwolf wrote: I would like to put the bootstrap

[fw-general] bootstrap in a subdirectory of document root

2007-02-08 Thread Michael Baerwolf
I would like to put the bootstrap in a subdirectory of the webservers document root. But I'm not having any luck getting it to work. Want I want is ab.com/members/FooController/action ab.com/members/FoobarController/action etc,etc. I'm pretty sure I need to change to the route,but have not

[fw-general] zend_date

2007-02-02 Thread Michael Baerwolf
I've been trying to use zend_date to rearrange mysql dates and am having problems. when i try the examples from the manual $date = new Zend_Date(); print $date; or $date = new Zend_Date(); print $date-get(); I get Warning: Missing argument 1 for Zend_Date::__construct(), called in