Re: [fw-general] Implementing SSL with Zend Framework

2008-03-21 Thread photo312
You are correct. What I meant is - is there any functionality to force "https" over "http" or make only certain models or actions work only over SSL connections? Karl Katzke wrote: > > SSL is a function of your web *server*, such as apache or IIS, not of Zend > Framework. > > On Sat, Mar 22,

Re: [fw-general] Implementing SSL with Zend Framework

2008-03-21 Thread Karl Katzke
SSL is a function of your web *server*, such as apache or IIS, not of Zend Framework. On Sat, Mar 22, 2008 at 12:29 AM, photo312 <[EMAIL PROTECTED]> wrote: > > I would like to implement SSL with Zend Framework. Is there some built in > code to handle this properly? > -- > View this message in con

[fw-general] Implementing SSL with Zend Framework

2008-03-21 Thread photo312
I would like to implement SSL with Zend Framework. Is there some built in code to handle this properly? -- View this message in context: http://www.nabble.com/Implementing-SSL-with-Zend-Framework-tp16216607s16154p16216607.html Sent from the Zend Framework mailing list archive at Nabble.com.

[fw-general] include_path problem

2008-03-21 Thread Armand Brahaj
Problem not directly related to ZF, more a PHP configuration. (Before someone gets angry, I apologize for the post which is not directly connect to ZF) The server seems to not recognize the value of the include_path in the main php.ini file: include_path='.:/php/ZF' Under this path there is a Ze

Re: [fw-general] Website fonts size too large?

2008-03-21 Thread Amr Mostafa
Oh, and of course, Thank you Matthew! :) On Sat, Mar 22, 2008 at 1:32 AM, Amr Mostafa <[EMAIL PROTECTED]> wrote: > Thanks Wil, I would say that throughout the whole site, reducing the fonts > size made it a better (usual) experience for me. (usual as when compared to > other websites I'm browsing

Re: [fw-general] Website fonts size too large?

2008-03-21 Thread Amr Mostafa
Thanks Wil, I would say that throughout the whole site, reducing the fonts size made it a better (usual) experience for me. (usual as when compared to other websites I'm browsing). Cheers, - Amr On Fri, Mar 21, 2008 at 9:08 PM, Wil Sinclair <[EMAIL PROTECTED]> wrote: > Matthew is refactoring th

Re: [fw-general] How to get Filtered data from Zend_Input_Filter

2008-03-21 Thread mysticav
"Or should I use Zend_Input Directly " Sorry, I mean Zend_Filter mysticav wrote: > > Hi, > > How can I get filtered data without using a validator, only the filter: > > Example: > $validators = null; > $filters = array('StringTrim','StripTags'); > $data = some data here. > > $filter = n

[fw-general] How to get Filtered data from Zend_Input_Filter

2008-03-21 Thread mysticav
Hi, How can I get filtered data without using a validator, only the filter: Example: $validators = null; $filters = array('StringTrim','StripTags'); $data = some data here. $filter = new Zend_Filter_Input($filters, $validators,$data,$options); // get filtered Data: $filter->{field} AS you

Re: [fw-general] Using a gettext Zend_Translate object with Zend_Form

2008-03-21 Thread majelbstoat
fab2008 wrote: > > There is no reason to create a class, a simple php file with message codes > is enough in order to make gettext work, something like this: > > $a = 'isEmpty'; > $a = 'notString'; > ... > ?> > > and parse it with 'xgettext -a strings.php'. Option -a stands for all > string s

Re: [fw-general] Using a gettext Zend_Translate object with Zend_Form

2008-03-21 Thread fab2008
majelbstoat wrote: > > This is what I ended up doing. I have a dummy class with a single > function that just performs a whole host of translations. The class will > never be used and it doesn't feel good, but it does allow the error codes > to appear in the .pot file. I know Zend_Validate is

[fw-general] Re: FlashMessenger API Documentation?

2008-03-21 Thread Jake McGraw
Nevermind, turns out to be a Controller_Helper http://framework.zend.com/apidoc/core/Zend_Controller/Zend_Controller_Action/Zend_Controller_Action_Helper_FlashMessenger.html - jake On Fri, Mar 21, 2008 at 3:15 PM, Jake McGraw <[EMAIL PROTECTED]> wrote: > For the life of me, I can't find the

[fw-general] Reminder: Code freeze for 1.5.1 is today!

2008-03-21 Thread Wil Sinclair
Hi all, just a little reminder that the 1.5.1 code freeze is 9:00pm PST (don't adjust for daylight savings) *TODAY*. If you'd like to get fixes (no new features!) in to this release, please commit them to the trunk then merge them to the 1.5 branch before code freeze. Thanks for all the contributi

[fw-general] FlashMessenger API Documentation?

2008-03-21 Thread Jake McGraw
For the life of me, I can't find the FlashMessenger documentation in the API browser: http://framework.zend.com/apidoc/core/classtrees_Zend_View.html If it isn't there, where should it be? - jake

RE: [fw-general] Website fonts size too large?

2008-03-21 Thread Wil Sinclair
Matthew is refactoring the site right now so even the headers should scale appropriately when the font size is reduced. We can also experiment with reducing the size in the most critical areas. I have docs as one of those now- anywhere else? ,Wil From: Amr Mostafa [mailto:[EMAIL PROTECTED]

[fw-general] Website fonts size too large?

2008-03-21 Thread Amr Mostafa
Hi all, I thought It's just new and I'd get used to it, but I didn't. So I have to say that I think the fonts are too large :) It's no wonder, as my resolution is 1024x768. But when I decrease the font size one level via the browser, it looks much easier on the eye. Especially the docs where it's

Re: [fw-general] formCheckbox bug in ZendFramework-1.5.0RC1

2008-03-21 Thread dinoboff
formCheckbox('test-1', 1, array('checked' => 1)); ?> test 1 formCheckbox('test-2', 1, array('checked' => 0)); ?> test 2 make test 1 test 2 Where is the bug? Kexiao Liao wrote: > > I belive Zend_View_Helper->FormCheckbox.php(in ZF1.5.0) has some bugs, it > can not create the checkbox corre

Re: [fw-general] Zend_Cache with Memcache

2008-03-21 Thread James Dempster
I just use pecl install memcached or somthing like that can't quite remember. The change log says addServer was added in version 2.0.0 http://pecl.php.net/package-changelog.php?package=memcache -- /James On Fri, Mar 21, 2008 at 2:50 PM, Bill YILDIRIM <[EMAIL PROTECTED]> wrote: > I thought it w

Re: [fw-general] Zend_Cache with Memcache

2008-03-21 Thread James Dempster
Hmm maybe the version? Revision $Revision: 1.95 $ here -- /James On Fri, Mar 21, 2008 at 2:42 PM, Bill YILDIRIM <[EMAIL PROTECTED]> wrote: > Yes, it is definitely installed. > memcache memcache support enabled Active persistent connections 0 Revision > $Revision: 1.23 $ > > > James Dempster

Re: [fw-general] Zend_Cache with Memcache

2008-03-21 Thread James Dempster
Possibly not have memcached client compiled into php on your production servers? Have you double checked though the phpinfo() ? -- /James On Fri, Mar 21, 2008 at 12:07 PM, billyildirim <[EMAIL PROTECTED]> wrote: > > Hi there, > I have been using Zend_Cache with File backend for sometime. Now i

[fw-general] Zend_Cache with Memcache

2008-03-21 Thread billyildirim
Hi there, I have been using Zend_Cache with File backend for sometime. Now i want to play with memcache. on my PC, i have windows xp and xampp installed. My production server is linux and Zend core 2.5 installed. memcache daemon runs on the production server. on my local pc in my bootstrap file

Re: [fw-general] Form Validation

2008-03-21 Thread Matthew Weier O'Phinney
-- Marco <[EMAIL PROTECTED]> wrote (on Friday, 21 March 2008, 08:54 AM +0100): > I have come across an issue where I need to validate a form field based on the > value of another form field. > > Say for example I have a country list and a field for Vat Number, I need to > specify the format of the

[fw-general] Zend_PDF: extracting images from PDF document

2008-03-21 Thread Vladas Diržys
hey guys, is it possible to extract images from an existing PDF document? if yes, how? :) -- Pagarbiai // Gruß, Vladas Diržys tel.: +370 677 17851 www.dirzys.com

Re: [fw-general] Zend Framework 1.5 has landed!

2008-03-21 Thread Joó Ádám
Thank you guys, great job! Keep up the good work! Ádám

[fw-general] Form Validation

2008-03-21 Thread Marco
Hi All I have come across an issue where I need to validate a form field based on the value of another form field. Say for example I have a country list and a field for Vat Number, I need to specify the format of the VAT number based on what the user selected in the country list. We are using .i