Re: [fw-general] Has someone gotten the different results when using Luke and Zend_Search?

2007-06-14 Thread Alexander Veremyev
Hi David, Yes, that would be good to have an example of index. I just created an issue for this (http://framework.zend.com/issues/browse/ZF-1561). You could send index example via email or attach it to the issue. With best regards, Alexander Veremyev. [EMAIL PROTECTED] wrote: Hi,Alexan

[fw-general] quite a module error: file was not found

2007-06-14 Thread Waigani
Well I've got quite a module error here. Been wrestling with it all week. File structure: index.php /modules /default /controller /model /view /staffprofiles /controller

[fw-general] quite a module error: file was not found

2007-06-14 Thread Waigani
Well I've got quite a module error here. Been wrestling with it all week. File structure: index.php /modules /default /controller /model /view /staffprofiles /controller

Re: [fw-general] Examples for Presentation

2007-06-14 Thread Pádraic Brady
I'd just like to agree with Sascha. The i18n components rock! Keep up the inspiring work. Pádraic Pádraic Brady http://blog.astrumfutura.com http://www.patternsforphp.com - Original Message From: Sascha René Leib <[EMAIL PROTECTED]> To: fw-general@lists.zend.com Cc: Thomas Weidner <[

[fw-general] Zend_DB Oracle adapter

2007-06-14 Thread Svetlin Petrov
Hi, I need to execute query like this one: INSERT INTO deal (name, deal_type) VALUES (:name, :deal_type) RETURNING id INTO

Re: [fw-general] quite a module error: file was not found

2007-06-14 Thread Matthew Weier O'Phinney
First off, some linebreaks in this would help a lot. -- Waigani <[EMAIL PROTECTED]> wrote (on Thursday, 14 June 2007, 01:15 AM -0700): > Well I've got quite a module error here. Been wrestling with it all week. File > structure: index.php /modules /default /controller /model /view /staffprofiles >

[fw-general] I have problem with Zend_Controller_Action->render

2007-06-14 Thread Dominik Deka
After Framework upgrade to ver 1.0.0 method $this->render('baz', null, true); displays script ./application/views/scripts/CURRENT_CONTROLLER/baz.phtml instead of ./application/views/scripts/baz.phtml as described in: http://framework.zend.com/manual/en/zend.controller.action.html -> 7.7.5.2. Rende

[fw-general] modular structure and controllers in one directory

2007-06-14 Thread Marcin Stefaniak
I'd like to store my all controllers in one directory i.e. /app/controllers. I have two modules "one", "two" and default of course. I'd like to create structure like this: /app /controllers IndexController.php FooController.php One_IndexController.php One_FooController.php Two_I

[fw-general] PHP.net-like manual?

2007-06-14 Thread wenbert
are there any plans to have a PHP.net-like manual? where users can post stuff under each section? i think this would be a great idea and would drive more users to use ZF... just my 2-cents... -- View this message in context: http://www.nabble.com/PHP.net-like-manual--tf3922149s16154.html#a111215

Re: [fw-general] Zend Framework Presentation

2007-06-14 Thread Thomas Weidner
It is not within the wiki because it does not exist for now. But it is proposed and accepted for implementation after 1.0. See here for details: http://framework.zend.com/wiki/display/ZFPROP/Zend_Translate+-+Thomas+Weidner And yes... one request per string would be a complete overkill, even if t

Re: [fw-general] modular structure and controllers in one directory

2007-06-14 Thread Pádraic Brady
Hi Marcin, If you need different controller naming than the recommended convention you'll need to create a subclass of Zend_Controller_Dispatcher_Standard. This contains methods like getControllerClass, getDefaultControllerClass and classToFilename() which all determine how controller classes a

[fw-general] Google/Yahoo/MSN Sitemaps

2007-06-14 Thread martin sarsale
hey :) I was wondering if there was any ZF component to create Google Sitemaps (http://www.sitemaps.org). I tried some google searches but I couldn't find any. In any case, I'll need to have that so we might develop it here. Then we could give it to the ZF project, if you're interested. Tha

Re: [fw-general] PHP.net-like manual?

2007-06-14 Thread Andries Seutens
wenbert schreef: are there any plans to have a PHP.net-like manual? where users can post stuff under each section? i think this would be a great idea and would drive more users to use ZF... just my 2-cents... Sure, this is actually a feature that already exists for a long time. Please see: htt

RE: [fw-general] Zend_DB Oracle adapter

2007-06-14 Thread Bill Karwin
Probably you should use the $db->lastSequenceId($sequenceName) method. See http://framework.zend.com/manual/en/zend.db.html#zend.db.adapter.write.l astinsertid Regards, Bill Karwin From: Svetlin Petrov [mailto:[EMAIL PROTECTED] Sent: Thursday

Re: [fw-general] quite a module error: file was not found

2007-06-14 Thread Waigani
Hi, Sorry about the no line breaks - html format took them out. I resent the message with line breaks in. the directories are /controllers /models /views. Sorry for not writing this, I was too hasty to get the question out there. So, any suggestions? Matthew Weier O'Phinney-3 wrote: > > F

Re: [fw-general] Zend_DB Oracle adapter

2007-06-14 Thread Svetlin Petrov
On 6/14/07, Bill Karwin <[EMAIL PROTECTED]> wrote: Probably you should use the $db->lastSequenceId($sequenceName) method. See http://framework.zend.com/manual/en/zend.db.html#zend.db.adapter.write.lastinsertid Regards, Bill Karwin -- *From:* Svetlin Petrov [mailt

Re: [fw-general] quite a module error: file was not found

2007-06-14 Thread Waigani
getControllerDirectory() returns: Array ( [default] => ./modules/default/controllers [staffprofiles] => ./modules/staffprofiles/controllers ); The front controller recognises 'staffprofiles' as a module, 'demog' as a controller and 'add' as an action. It just can't find the demogController.php f

[fw-general] setting up app dirs is too much work, so...

2007-06-14 Thread David Mintz
Someone has probably already done something like this, probably better, but if not -- enjoy. #!/bin/bash # # zfsetup.sh # # sets up directory structure and some starter files for a new Zend Framework application. # first chdir into the dir under which you want to install the app files, then run m

Re: [fw-general] quite a module error: file was not found

2007-06-14 Thread Matthew Weier O'Phinney
-- Waigani <[EMAIL PROTECTED]> wrote (on Thursday, 14 June 2007, 02:26 PM -0700): > > getControllerDirectory() returns: > > Array ( [default] => ./modules/default/controllers [staffprofiles] => > ./modules/staffprofiles/controllers ); > > The front controller recognises 'staffprofiles' as a modu

Re: [fw-general] PHP.net-like manual?

2007-06-14 Thread wenbert
wow thanks... :) but in PHP.net, user's can actually post different kinds code examples, workarounds, useful info under each page - ZF Manual in my first impression only allows Issues to be posted? Andries Seutens wrote: > > wenbert schreef: >> are there any plans to have a PHP.net-like manual?

Re: [fw-general] quite a module error: file was not found

2007-06-14 Thread Waigani
All the cases are fine - have double checked. staffprofiles is exactly the same as default and default works fine. Matthew Weier O'Phinney-3 wrote: > > -- Waigani <[EMAIL PROTECTED]> wrote > (on Thursday, 14 June 2007, 02:26 PM -0700): >> >> getControllerDirectory() returns: >> >> Array ( [d

Re: [fw-general] Has someone gotten the different results when using Luke and Zend_Search?

2007-06-14 Thread Partout
Hi, Alexander, I've gotten the new revision from SVN, and glad to found the bug was fixed. :clap: I really appreciate you for your high efficiency and warm-hearted help, ^L^ Best regards, David Alexander Veremyev wrote: > > Hi David, > > Yes, that would be good to have an example of index.

Re: [fw-general] PHP.net-like manual?

2007-06-14 Thread Andries Seutens
Hi Wenbert, This is certainly not the case. If you have posting priveledges, you'll see a commenting feature on the bottom of every page. You can add code snippets, suggestions, comments, etc etc. This is the reason why we did the wikification in the first place: to allow commenting on pages.