[fw-general] Help Getting Mail Through to Lists

2009-10-19 Thread Arthur Kang
Does the Zend Lists have a spam filter or blacklist in front of them? I can't get any email through to the lists from my regular email address. I don't get any errors or bounces, either. Seems like my mail servers IP is blacklisted. Could the list administrator contact me with information on ho

Re: [fw-general] quoteOutOf?

2009-10-19 Thread Hector Virgen
Yes, the quote method does add quotes around the string (which is why the method is named "quote"). It also works with arrays, quoting each value in the array and joining the quoted values with commas. That means that in your queries, you need to omit the quotes: $name = 'John'; echo $name; // Joh

Re: [fw-general] quoteOutOf?

2009-10-19 Thread brgi
Have been having this same problem where quote() surrounds the data in my table with single quotes. Which I thought was the desired behavior until reading this thread. I've got magic quotes off. Not understanding how this function *doesn't* surround data with quotes. Am looking at the method in th

[fw-general] Right way to use $_rowClass to class-map via Zend/MySQL?

2009-10-19 Thread sideDoor
Greetings, I've been using and I'm fairly clear on serialization between AS3 (both Flex and Flash) and PHP via Zendamf. However, in effort to save developmental time, I'm interested in leveraging mapping between an SQL query result and Zend via the protected $_rowClass property of a concrete Zen

[fw-general] SpiffyDb Documentation and Version Updated

2009-10-19 Thread Kyle Spraggs
I've updated both the documentation and version of SpiffyDb. Here's a small chunk from the documentation. SpiffyDb extends the basic functionality of Zend_Db_Table and Zend_Db_Table_Select and includes a Model/Mapper as shown in the Zend Framework Quick Start. These new classes include a hoist of

Re: [fw-general] setClassmap in Zend_Soap_AutoDiscover

2009-10-19 Thread Mark Hage
Hi, I already did :-) http://framework.zend.com/issues/browse/ZF-8070 Mark 2009/10/18 Benjamin Eberlei > Hello, > > can you open up a ticket for this issue in jira please? So that i can > review > it at a later stage. > > On Wednesday 14 October 2009 02:41:57 pm Renan de Lima wrote: > > hi, >

Re: [fw-general] Autoload Doctrine Models

2009-10-19 Thread admirau
Svetlin Petrov wrote: > > Hi, > Hope this will help: > http://weierophinney.net/matthew/archives/220-Autoloading-Doctrine-and-Doctrine-entities-from-Zend-Framework.html > > > Reg

Re: [fw-general] ACL Session data unavilable until refresh!

2009-10-19 Thread mccrodp
SOLVED! Code in a plugin was being called at dispatchLoopStartup() in the frontController initialising the users role to 'guest' if the user was not already authenticated on system. Meaning I could not authenticate and verify access privileges in one go. I can now by overriding the values in thi

Re: [fw-general] disable escaping

2009-10-19 Thread Svetlin Petrov
Hi, Have you tried: $this->setAttrib( 'escape', false ); Regards, Svetlin Tsvetanov On Fri, Oct 16, 2009 at 6:57 PM, Hector Virgen wrote: > What part of the form do you not want to escape? > > -- > Hector > > > > On Fri, Oct 16, 2009 at 6:32 AM, Anders Gunnarsson > wrote: > >> How do i disab

Re: [fw-general] Autoload Doctrine Models

2009-10-19 Thread Svetlin Petrov
Hi, Hope this will help: http://weierophinney.net/matthew/archives/220-Autoloading-Doctrine-and-Doctrine-entities-from-Zend-Framework.html Regards, Svetlin Tsvetanov On Sun, Oct 18,

[fw-general] Re: Zend_Mail : Excel attachment

2009-10-19 Thread Thomas VEQUAUD
So, there was 2 mistakes... First, the type is not the MIME type of your uploaded document : it's always an 'application/octet-stream', even for plain text (because of \r\n, etc.). By consequence, you've to change the encoding too : base 64. $attachment = new Zend_Mime_Part(file_get_conte

[fw-general] Zend_Mail : Excel attachment

2009-10-19 Thread Thomas VEQUAUD
Hi there, I try to attach an Excel file to a mail via Zend_Mail... That works... Document attached. But once downloaded : cannot open the document because of a corrupted content. So, I suppose the issue comes from the PHP function file_get_contents. // Attachment $infos = $form->attachment->getFi

[fw-general] Zend_Router requirements mismatch

2009-10-19 Thread Hector Carcedo
Hello you all: I have two routes that match a url with the same apparent pattern, the difference lies in the $actionRoute, this should only be matched if the variable :action on it equals 'myaction'. If I go to /en/mypage/whatever/myaction it goes as expected through $actionRoute. If I go to