Re: [fw-general] Some widget issues

2009-02-22 Thread dele454
Hi All, I have looked into this issue again and i dont think it has anything to do with any apache directive or so. I think i has to do with the path dojo is in relation to my innner pages. I mean it shows perfectly on pages with no parameters attached to the URL but the moment you hit a page lik

Re: [fw-general] Quick Question

2009-02-22 Thread dele454
THANK YOU SO MUCH COLIN AND EVERYONE THAT HELPED OUT. I looked into the issue it was exactly what Colin anticipated. My bootstrap was running two response dispatches. Hence the problem. I must have inserted this while i was still learning about the framework. [code]

Re: [fw-general] Some widget issues

2009-02-22 Thread Matthew Weier O'Phinney
-- dele454 wrote (on Sunday, 22 February 2009, 04:43 AM -0800): > I have looked into this issue again and i dont think it has anything to do > with any apache directive or so. I think i has to do with the path dojo is > in relation to my innner pages. I mean it shows perfectly on pages with no > p

Re: [fw-general] Some widget issues

2009-02-22 Thread dele454
Thanks Matthew. This is how i am declaring dojo helper in my layout script: [code] dojo()->isEnabled()){ $this->dojo()->setLocalPath('/js/dojo/dojo.js') ->addStyleSheetModule('dijit.themes.tundra')

Re: [fw-general] Some widget issues

2009-02-22 Thread dele454
Maybe this might also help. Another point to mention here is that i have 3 layout scripts for my site: - layout-site.phtml - layout-site-view.phtml - layout-site-view-l2.phtml Now pages like www.mydomain.com/events/browse - use the layout-site.phtml But i couldnt use the same layout script

Re: [fw-general] Zend Server & ZF

2009-02-22 Thread A.J. Brown
I'm going to be installing Zend Server later today. Quick question to the Zend guys, though: By "Community Edition", does this mean the community will be able to provide patches, open issues, and otherwise be involved in the development? On Fri, Feb 20, 2009 at 5:11 PM, till wrote: > On Sat, F

[fw-general] Zend_Search_Lucene field not found

2009-02-22 Thread Jean L
Hi all, I'm currently having problem with indexing html files using Zend_Search_Lucene. Any help is appreciated. So far I can create my index properly. I add text field "url" to store my file name and add that to my doc. Here's the problem: when I want to show the file name, an error messa

[fw-general] Re: Multiple pattern match with Zend_Db_Table_Select

2009-02-22 Thread Deepak
Hi, this is how I solved my problem. In case it is helpful to someone = if ($reqstr !== "") { $tokstring = explode(",", $reqstr); $templogic = ""; foreach ($tokstring as $token) { $patternstr = "%" . trim($token)

[fw-general] Detect empty request params?

2009-02-22 Thread fire-eyed-boy
Hi all, Is there any way to tell if an url parameter is present, even when it has no value? Something like paramExists()? Consider this example: http://www.example.com/newsletter/subscribe/ controller: newsletter action: subscribe http://www.example.com/newsletter/subscribe/verify controller: ne

Re: [fw-general] Some widget issues

2009-02-22 Thread Rob Allen
On 22/02/2009 17:13, dele454 wrote: but for layout-site-view.phtml - Consider using the baseUrl property from the Request object. Create a view helper in your views/helpers folder: getBaseUrl(); } } Then in your layouts and view scripts you can do: media="screen" rel="stylesheet"

Re: [fw-general] Some widget issues

2009-02-22 Thread dele454
Thanks Rob, I do have the baseUrl() view helper in place but am into the habit of just doing it the html way ;). I will change it as suggested and give it a try to see if it will work as per the widget issues i am having. Thanks i'll let you know the outcome. ;) - dee -- View this message i

Re: [fw-general] Detect empty request params?

2009-02-22 Thread Rob Allen
On 23/02/2009 07:16, fire-eyed-...@hotmail.com wrote: Hi all, Is there any way to tell if an url parameter is present, even when it has no value? Something like paramExists()? Consider this example: http://www.example.com/newsletter/subscribe/ controller: newsletter action: subscribe http://www.

Re: [fw-general] Zend_Search_Lucene field not found

2009-02-22 Thread Serkys
I think, URL better stored in "UnIndexed" fields. Jean L wrote: > > Hi all, > > I'm currently having problem with indexing html files using > Zend_Search_Lucene. Any help is appreciated. > > So far I can create my index properly. I add text field "url" to store my > file name and add that t