Re: [fw-general] Applying Zend_Acl to Zend_Form_Element

2009-11-30 Thread Bart McLeod
Cameron schreef: Hi guys, this is pretty pie in the sky, but I was wondering if anyone had seen it done / had a good trick for it. What I'd like to do is come up with a really clean way of controlling which users can see which form fields. Example being a role field in the user form - admins

[fw-general] module repository poll

2009-11-30 Thread Matthew Weier O'Phinney
Greetings! Ivo Jansch, of ibuildings.nl, has recently opened a poll for framework users of any flavor (ZF, symfony, etc.), asking the question, Would you be interested in a repository of off-the-shelf modules/app components for popular frameworks? If interested, place your vote here:

Re: [fw-general] weird problem

2009-11-30 Thread Vladas Diržys
Maybe you are including 2 ZF libraries? And one of them is a bit older?... -- Regards, Vladas On Sun, Nov 29, 2009 at 22:43, Apostol Victor apostol.vic...@gmail.comwrote: this is the code $flickr = new Zend_Service_Flickr('xxx'); $results = $flickr-userSearch($email);

Re: [fw-general] weird problem

2009-11-30 Thread Apostol Victor
nop is only one 2009/11/30 Vladas Diržys vladas.dir...@gmail.com Maybe you are including 2 ZF libraries? And one of them is a bit older?... -- Regards, Vladas On Sun, Nov 29, 2009 at 22:43, Apostol Victor apostol.vic...@gmail.comwrote: this is the code $flickr = new

Re: [fw-general] Has anyone ported ZF project from Windows to Linux before?

2009-11-30 Thread W Itch
Short story I'll try to make my long story short and do my mystical rain dance while crossing my fingers. :-) I'm suspecting most of my problems are file permissions related. 0.) * I didn't put my ZF project in */var/www/* will this create major problems? * Instead I put things in

[fw-general] Zend Forms

2009-11-30 Thread Stephenalistoun
Hi All, I trying to make my custom Zend form, when you have the input control field next to the label field like how you would do in tables. $this-setDecorators(array( 'FormElements', //array('HTMLTag',array('tag' = 'div' , 'class' = 'detailForm')) ,

Re: [fw-general] Zend Forms

2009-11-30 Thread Matthew Weier O'Phinney
-- Stephenalistoun stephenalist...@gmail.com wrote (on Monday, 30 November 2009, 10:47 AM -0800): Hi All, I trying to make my custom Zend form, when you have the input control field next to the label field like how you would do in tables. $this-setDecorators(array(

Re: [fw-general] weird problem

2009-11-30 Thread Ralph Schindler
It sounds like you have some kind of encoder extension in PHP perhaps? Maybe it is trying to automatically unencode the file b/c it sees encoded values in it? Can you check what extensions you have loaded? -ralph Apostol Victor wrote: nop is only one 2009/11/30 Vladas Diržys

[fw-general] Zend View Navigation Helpers. Solving typical problems.

2009-11-30 Thread mezoni
Zend View Navigation Helpers. Solving typical problems. Suppose you want to display the following navigation elements. Main menu Submenu of main menu Breadcrumbs Solution for main menu clear. ?= $this-navigation()-menu()-setMaxDepth(0) ? Possible solution for submenu of main menu could be so.

Re: [fw-general] weird problem

2009-11-30 Thread Apostol Victor
it could be a problem with Zend Optimizer? On Mon, Nov 30, 2009 at 10:07 PM, Ralph Schindler ralph.schind...@zend.comwrote: It sounds like you have some kind of encoder extension in PHP perhaps? Maybe it is trying to automatically unencode the file b/c it sees encoded values in it? Can you

Re: [fw-general] weird problem

2009-11-30 Thread Núria
Are you also using APC? For what I've read, Zend Optimizer and APC are incompatible. 2009/11/30 Apostol Victor apostol.vic...@gmail.com it could be a problem with Zend Optimizer? On Mon, Nov 30, 2009 at 10:07 PM, Ralph Schindler ralph.schind...@zend.com wrote: It sounds like you have

Re: [fw-general] weird problem

2009-11-30 Thread Apostol Victor
yap is active http://www.apostolvictor.info/info.php i will talk with system guys 2009/11/30 Núria nuq...@gmail.com Are you also using APC? For what I've read, Zend Optimizer and APC are incompatible. 2009/11/30 Apostol Victor apostol.vic...@gmail.com it could be a problem with Zend

[fw-general] getFrontController() returns null?

2009-11-30 Thread Eugene Morgan
I am working on a contact form in ZF 1.9. In one of my actions, I am trying to access the bootstrap by $this-getFrontController()-getParam('bootstrap') I made some changes to the application.ini file that shouldn't affect anything ... but now the code above is not returning the bootstrap. In

Re: [fw-general] module repository poll

2009-11-30 Thread Cameron
This sort of thing would be tremendously useful. I'd absolutely love to see a drop in component for handling, say, User authentication - handling signups, forgot your password functionality, the whole check your email and verify your account stuff, a very basic admin page, all done in the right

Re: [fw-general] getFrontController() returns null?

2009-11-30 Thread Matthew Weier O'Phinney
-- Eugene Morgan eugenemorganrea...@gmail.com wrote (on Monday, 30 November 2009, 06:35 PM -0600): I am working on a contact form in ZF 1.9. In one of my actions, I am trying to access the bootstrap by $this-getFrontController()-getParam('bootstrap') Not sure why it's not working, but there's

Re: [fw-general] getFrontController() returns null?

2009-11-30 Thread Eugene Morgan
$bootstrap = $this-getInvokeArg('bootstrap'); For some reason that works beautifully on my development machine but not on the production server (shared hosting). Fortunately this is a very small application so I'm able to work around it easily by putting my config object in Zend_Registry.

[fw-general] Zend and jQuery UI best practices

2009-11-30 Thread umpirsky
Hi. I am using some jQuery UI lab components in my zf app (eg http://www.filamentgroup.com/lab/jquery_ui_selectmenu_an_aria_accessible_plugin_for_styling_a_html_select/ and http://www.filamentgroup.com/lab/update_jquery_ui_slider_from_a_select_element_now_with_aria_support), and I wonder which

Re: [fw-general] Zend and jQuery UI best practices

2009-11-30 Thread Саша Стаменковић
Looking at http://framework.zend.com/manual/en/zendx.jquery.form.html now, but there are not lab components implemented yet. Maybe I can develop them, if I get my CLA approved ;) Regards, Saša Stamenković On Tue, Dec 1, 2009 at 8:21 AM, umpirsky umpir...@gmail.com wrote: Hi. I am using