[fw-general] Upcoming Zend_Pdf Enhancements

2008-04-04 Thread Willie Alberty
For the last few months I have been working with Kevin McArthur on a comprehensive PDF generation project for a client [Streamflow] who has some pretty advanced layout needs. The project is nearing completion and we have been discussing the possibility of contributing large portions of the

Re: [fw-general] Problems with Zend_Cache & Xcache

2008-04-04 Thread Ethan Zuhl | helloecho.com
The issue ended up being that Zend_Cache file uses FLOCK when writing to a cache file. This seemed to work really well in development, but in production under heavy load FLOCK is failing for caching model metadata with Zend_Cache. I suspect that is why the framework developers allow a couple o

[fw-general] Help to implement a join query in Zend_Db

2008-04-04 Thread Sudheer
Hello experts, I am trying to implement a MySQL query with Zend_DB. The query is: select s.sid, s.name, r.rid, r.rdate, c.name, s.status from student as s, registration as r, student_course_interests as sc, course as c where s.sid=r.sid and s.sid=sc.sid and c.cid=sc.cid When I execute this q

Re: [fw-general] Modules in numbered directories

2008-04-04 Thread Ovidiu EFTIMIE
I resolved the issue with routes but its not complete since it still forces you to prepend the module name to the class $front = Catalog_Controller_Front::getInstance(); $router = $front->getRouter(); $router->addRoute('1.0', new Zend_Controller_Router_Route('1.0/:controller',array('module'=>'defa

[fw-general] [Fwd: Re: Translate the manual for Brazilian Portuguese.]

2008-04-04 Thread Darby Felton
Forwarding what I sent to Victor earlier today. Best regards, Darby Original Message Subject: Re: Translate the manual for Brazilian Portuguese. Date: Fri, 04 Apr 2008 09:46:33 -0400 From: Darby Felton <[EMAIL PROTECTED]> To: Victor José Bento <[EMAIL PROTECTED]> CC: [EMAIL PRO

RE: [fw-general] Hiya - new - sql IN statements

2008-04-04 Thread Mark Steudel
Ahhh I like that much better ... Thanks! -Original Message- From: Matthew Weier O'Phinney [mailto:[EMAIL PROTECTED] Sent: Friday, April 04, 2008 10:36 AM To: fw-general@lists.zend.com Subject: Re: [fw-general] Hiya - new - sql IN statements -- Mark Steudel <[EMAIL PROTECTED]> wrote (on F

Re: [fw-general] Hiya - new - sql IN statements

2008-04-04 Thread Matthew Weier O'Phinney
-- Mark Steudel <[EMAIL PROTECTED]> wrote (on Friday, 04 April 2008, 10:22 AM -0700): > New to the list and to Zend. I’ve primarily been using PEAR packages in the > past, but am switching to Zend. I love the fact that it’s a glue stack versus > full stack and I can just implement classes as needed

Re: [fw-general] How to separate the elements ? (Zend_Form)

2008-04-04 Thread Matthew Weier O'Phinney
-- Jason Qi <[EMAIL PROTECTED]> wrote (on Friday, 04 April 2008, 11:29 AM -0700): > I just followed the example in (15.9. Advanced Zend_Form Usage) and the text > and password elements seemed adhere together. See: > > http://dev.tmclubs.org/registration > > How can I separate them (let some space

RE: [fw-general] Hiya - new - sql IN statements

2008-04-04 Thread Mark Steudel
I went with your second thought and came up with something like: $ids = '1,2'; $tmpIds = explode( ',', $ids ); $tmpIds = array_map( array( $this->db, 'quote'), $tmpIds ); $cIds = implode( $tmpIds, ',' );

[fw-general] How to separate the elements ? (Zend_Form)

2008-04-04 Thread Jason Qi
Hi All, I just followed the example in (15.9. Advanced Zend_Form Usage) and the text and password elements seemed adhere together. See: http://dev.tmclubs.org/registration How can I separate them (let some space in between ) ? BTW, when I looked up the source code, I found html tags for the f

[fw-general] Hiya - new - sql IN statements

2008-04-04 Thread Mark Steudel
Hi there, New to the list and to Zend. I've primarily been using PEAR packages in the past, but am switching to Zend. I love the fact that it's a glue stack versus full stack and I can just implement classes as needed before jumping all in. Anyway my first question is: What is the best

Re: [fw-general] Modules in numbered directories

2008-04-04 Thread Matthew Weier O'Phinney
-- Ovidiu EFTIMIE <[EMAIL PROTECTED]> wrote (on Friday, 04 April 2008, 07:42 PM +0300): > I have a question concernig the usage of numbers as directory names for > modules. > For example my application structure requires me to have urls like this > http://servername/1.0/controller/action > http://

Re: [fw-general] Modules in numbered directories

2008-04-04 Thread Ronald 'Warui' Becher
Did you already try Zend_Route and mod_rewrite approaches? would be my first bet, though i'm on the run and can't think clearly after a whole day of work :) Ovidiu EFTIMIE wrote: Hi, I have a question concernig the usage of numbers as directory names for modules. For example my application str

[fw-general] Modules in numbered directories

2008-04-04 Thread Ovidiu EFTIMIE
Hi, I have a question concernig the usage of numbers as directory names for modules. For example my application structure requires me to have urls like this http://servername/1.0/controller/action http://servername/1.1/controller/action http://servername/1.2/controller/action and I thought that thi

[fw-general] Best practices for Zend_Session

2008-04-04 Thread David G.
I don't know if it's a good idea to get rid of cookies or not. I'm going to adapt my whole system to sessions because everything stays server-side. The problem is that the sessions stay in the session folder after they expire, should I forcibly remove them, or do they remove themselves? I honestl

[fw-general] Manual translation to Brazilian Portuguese

2008-04-04 Thread fftonello
Hello, I'm one of the founders and maintainers of the Zend Framework Brazilian community. Well, our community is really growing up and we want/need to translate the manual to Brazilian Portuguese(Português do Brasil). So guys, how's possible? There's a way to the translation began an official to

[fw-general] Zend_Search_Lucene and missing search terms

2008-04-04 Thread Pete Spicer
Hi there, I've been building a search platform for a custom database I have, using Zend_Search_Lucene, and I've run into a couple of oddities. The prototype version I have gets its index rebuilt from scratch occasionally, currently approximately 3,000 documents. All of the documents are being

Re: [fw-general] Processing attachments using ZF

2008-04-04 Thread mbneto
Well, I'd use cron in Mac/Linux and the scheduler (not sure the right name) with Windows. The script itself would be cross platform since it would only use php. On Fri, Apr 4, 2008 at 3:28 AM, Amr Mostafa <[EMAIL PROTECTED]> wrote: > Hi, > > I wonder how you could do the "periodically checks

Re: [fw-general] Admin Area

2008-04-04 Thread Ronald 'Warui' Becher
I found it best practice to not mingle admin- and user-interfaces and to have the admin area in a single module. There all the Controller classes extend AbstractAdminController which itself extends Zend_Controller_Action and overwrites the init() method similar to this public function init() {

Re: [fw-general] Admin Area

2008-04-04 Thread Charles Harley
I am also wondering how best to have an admin area. So far I have setup the admin area as a separate module in the application but which with access to it being controller using Zend_Acl. I also have a different frontend theme for the admin area. Really not sure if this is the best way but it

Re: [fw-general] Processing attachments using ZF

2008-04-04 Thread Amr Mostafa
Hi, I wonder how you could do the "periodically checks for e-mails" part in a cross platform way, if any! :) Best, - Amr On Wed, Apr 2, 2008 at 6:23 PM, mbneto <[EMAIL PROTECTED]> wrote: > Hi all, > I'd like to enable a current system to accept data coming from email. > Since this email will h