[fw-general] Zend_Controller_Router_Route_Hostname Problem - Please help

2009-07-28 Thread drj201
Hello everyone, I am trying to create a route within my application based upon the hostname of the request. Keeping this as simple as possible... I have two modules, a default module (domain1) and another module (domain2). http://www.domain1.com is the ZF default application module and works

Re: [fw-general] Zend_Application_Bootstrap_Bootstrap and Zend_Log

2009-06-09 Thread drj201
You have extended the run() method of Zend_Application_Bootstrap_Bootstrap in your Bootstrap.php. Your run() method needs a call to the following before you dispatch: $front-setParam('bootstrap', $this); You will now be able to access your log resource as required:

[fw-general] Server issue or Code? Domain to ZF module masking...?

2009-05-25 Thread drj201
Hi everyone, Firstly this is new to me so apologies if I am on the wrong track or the answer is a simple one! I have a Zend Framework app and I want to mask domains to modules as follows... http://www.domain1.com = http://server/default http://www.domain2.com = http://server/module2

Re: [fw-general] Zend_Form without MVC problem

2009-04-13 Thread drj201
and displays corrected. I wish to use a ViewScript however to better construct my form. Any help greatly appreciated. Has anyone managed to use a ViewScript with Zend_Form without MVC? Thanks. David Matthew Weier O'Phinney-3 wrote: -- drj201 drj...@gmail.com wrote (on Friday, 10 April 2009

Re: [fw-general] Zend_Form without MVC problem

2009-04-10 Thread drj201
Hello, I am having the same problem as first outlined in this thread. The solution Matthew posted does not work. Can anyone help? Thanks, David Matthew Weier O'Phinney-3 wrote: -- Paul Cook paul@gmail.com wrote (on Wednesday, 21 May 2008, 02:00 PM -0400): I'm trying to use

[fw-general] Case Insensitive Module Names?

2009-03-13 Thread drj201
Hello all, A quick question... Using the standard router, navigating to a module is case sensitive i.e.: http://www.example.com/default/index/index - WILL WORK http://www.example.com/DEFAULT/index/index - DOES NOT WORK http://www.example.com/DEfauLT/index/index - DOES NOT WORK ...etc. How

[fw-general] Zend_Form using GET - How to set array in url params? Control sent params?

2009-02-02 Thread drj201
Hello, I have a Zend_Form object which uses the GET method of submission. Creating a new instance of my zend form and displaying it in the view works fine. By default, on submission of the form the browser is directed to the set action in my Zend_Form and the GET params are set to include those

Re: [fw-general] free Zend Framework Screencasts for your desktop and iPhone

2009-01-29 Thread drj201
Excellent resource! Thank you. Long may this continue. I am subscribed to the podcasts in iTunes but FYI I am unable to view video on my iPhone by clicking the Download quicktime link. Thanks again. Jonathan Lebensold wrote: Hello List, I recently started a site with screencasts about

[fw-general] IIRF ReWrite Rules for Zend Framework on IIS

2009-01-22 Thread drj201
Hello, Does anyone use IIRF with Zend Framework and IIS? I am using IIS6 and I am having great difficulty creating the correct rewrite rules for IIRF that will work with Zend Framework. So far I have the following in my IsapiRewrite4.ini: RewriteRule ^/(.*(js|ico|gif|jpg|png|flv|swf|css))$

[fw-general] Zend_Search_Lucene with Zend_Paginator?

2009-01-19 Thread drj201
Hello, I have implemented Zend_Search_Lucene successfully with my application. The application performs indexing and the search results are returned (so far satisfactorily). The only problem is paginating the result set. I understand that Lucene must search the entire index to 'score' the

[fw-general] Re[fw-general] member Me and Zend_Session with Zend_Auth/Zend_Acl?

2009-01-18 Thread drj201
Hello, I am a newbie with the Zend Framework so please bare with me... My application has a default module and an admin module. The application implements Zend_Auth and Zend_Acl to determine the roles and users of the application and which modules they may gain access. In my application their

[fw-general] ZF 1.7 - Zend Dojo SubmitButton Bug?

2008-11-25 Thread drj201
Hi all, I have created a form class that extends Zend_Dojo_Form. I have various elements (i.e. ComboBox, DateTextBox etc) in the form including a SubmitButton and they all display perfectly in ZF1.6.1. My problem has arrisen since upgarading to ZF 1.7. Since the upgrade the SubmitButton is not

Re: [fw-general] FCKEditor and Zend_Form integration

2008-11-21 Thread drj201
To follow up my initial post I also resorted to a simple jQuery bind noted here: http://www.fyneworks.com/jquery/FCKEditor/ This allows use of FCKEditor and maintains Zend Form validation etc. David drj201 wrote: Hi all, I want to integrate FCKEditor (WYSIWYG) into a Zend_Form thus

[fw-general] Getting Module name from custom Route mask using Zend_Controller_Router?

2008-11-21 Thread drj201
Hi all, I have the following route in my application: $route = new Zend_Controller_Router_Route_Regex( 'MODULE_HERE/news/[0-9a-z\._!;,\+\-%]+-(\d+)', array( 'module' = 'MODULE_HERE', 'controller' = 'entry', 'action' =

Re: [fw-general] ActionStack and _forward()

2008-11-15 Thread drj201
Goran Juric wrote: drj201 wrote: Hi all, Ive been following the method outlined here to add Controller specific navigation menus to my layout view: http://teethgrinder.co.uk/perm.php?a=Zend-Framework-Menus-Navigation Firstly, what is your view on this approach? Adding

Re: [fw-general] Zend_Dojo Email validation, checkbox and Submit dojo form question- please?

2008-11-04 Thread drj201
I confirm this does not work using capture... I have the same problem. Thanks gerardroche wrote: vladimirn wrote: Alert you suggested me to make wont work as well :( phtml: ? $this-dojo()-javascriptCaptureStart() ? function validateForm() { var form = dijit.byId(signup);

Re: [fw-general] Default behavior of Zend_Layout::startMvc and plugin use?

2008-10-27 Thread drj201
/module1/modules/module1/views/layouts/ should be /my_app/app/modules/module1/views/layouts/... Thanks again. :) Matthew Weier O'Phinney-3 wrote: -- drj201 [EMAIL PROTECTED] wrote (on Saturday, 25 October 2008, 06:48 AM -0700): Can someone please confirm if this is the expected behaviour

Re: [fw-general] Default behavior of Zend_Layout::startMvc and plugin use?

2008-10-25 Thread drj201
Can someone please confirm if this is the expected behaviour please or simply if I am doing something wrong? Thanks. :) drj201 wrote: I have a front controller plugin to override the default behavior of Zend_Layout via Zend_Layout::startMvc like so: class

[fw-general] Problems with Zend_Form_Element_File since ZF1.6.2

2008-10-20 Thread drj201
I am trying to add a Zend_Form_Element File to a form... I am extending Zend_Form with my own class for reuse purposes. The problem is that since upgrading to ZF 1.6.2 my code no longer works. Build element:

Re: [fw-general] Default behavior of Zend_Layout::startMvc and plugin use?

2008-10-20 Thread drj201
Thanks for the reply Goran. Appreciate it. I am glad it is not just me suffering this problem. Care to explain your problem and how you went about your workaround? More importantly can anyone confirm/deny that this is standard and/or expected behaviour. To confirm it seems that a redirect to the

[fw-general] Default behavior of Zend_Layout::startMvc and plugin use?

2008-10-17 Thread drj201
I have a front controller plugin to override the default behavior of Zend_Layout via Zend_Layout::startMvc like so: class MyApp_Layout_Controller_Plugin_Layout extends Zend_Layout_Controller_Plugin_Layout { public function preDispatch(Zend_Controller_Request_Abstract $request) {

Re: [fw-general] Get ZF components as zips separately from the main distro

2008-10-06 Thread drj201
I wouldnt use this but I can see why it might be useful. Do Zend allow you to distribute the Framework in this way however? Maybe they dont allow the distribution of individual components?! Will it be updated regularly? Jani Hartikainen wrote: Hi all I wrote an app which parses

Re: [fw-general] Zend_Form File element toggle between image

2008-10-06 Thread drj201
Edward Haber wrote: 2) And as a second question: I can't find any way to do this. Is there any way to just insert a random blob or row of HTML in your form like: dl dtLabel/dtddinput type.../dd dtLabel/dtddinput type.../dd dtLabel/dtddinput type.../dd pHi

[fw-general] FCKEditor and Zend_Form integration

2008-09-26 Thread drj201
Hi all, I want to integrate FCKEditor (WYSIWYG) into a Zend_Form thus bringing all the benefits that allows... Note: Im not talking of simply getting FCKEditor to work in the view etc (ala here: http://blog.ekini.net/2007/11/28/using-fckeditor-with-zend-framework-file-browser-enabled/#comments)

[fw-general] Zend_Dojo_Form Validators - Problem with submission

2008-09-24 Thread drj201
Hi all, I have a form that extends Zend_Dojo_Form. I have all of my form elements, decorators etc created and the form displays nicely. The form uses Dojo elements: TextBox, DateTextBox, TimeTextBox, ComboBox, TextArea (all of which work coincidentally i.e. the DateTextBox displays the date