Re: [fw-general] 'The mysql driver is not currently installed'

2008-03-13 Thread Simon Mundy
What does phpinfo() have to say? Does it confirm that they're installed and working? Hi, Whenever I try to execute a Db query, I have the following error : Fatal error: Uncaught exception 'Zend_Db_Adapter_Exception' with message 'The mysql driver is not currently installed' I have instal

[fw-general] 'The mysql driver is not currently installed'

2008-03-13 Thread debussy007
Hi, Whenever I try to execute a Db query, I have the following error : Fatal error: Uncaught exception 'Zend_Db_Adapter_Exception' with message 'The mysql driver is not currently installed' I have installed Php with the extension MySQL, PDO, PDO_MySQL, ... Here are all my extensions: [PHP_GD2]

[fw-general] Zend_Form bug - dIsplay groups within a sub form

2008-03-13 Thread Simon Mundy
Hi Matthew I wanted to know if this is a known issue, or an expected behaviour (or neither?!) I'm creating a form composed of a subform and a submit element. The idea is to create a long list of skills that are returned in array notation so I can more easily aggregate the results and stor

[fw-general] Controller Testing: Zend_View::clearVars() ?

2008-03-13 Thread reto
Hi everyone, I'm trying to test my ZF-Controllers with phpunit. The internet (http://www.alexatnet.com/node/12) gave me the following code to start a request to a given controller/action and then check the rendered output: $front = Zend_Controller_Front::getInstance(); $request = new Zend_Contr

[fw-general] Zend_Form feature request

2008-03-13 Thread Simon Mundy
Hi Matthew I've just created a small feature request for Zend_Form to add an 'init()' method to the base class. I'd imagine it implemented the same way as it's used for Zend_Controller_Action and Zend_Db_Table, as a 'safe' way to add behaviours and logic to a form model when subclassing Z

Re: [fw-general] Zend_Session_SaveHandler_DbTable

2008-03-13 Thread thurting
Is there any threat of session ids overlapping? I'm not 100% sure, but if you were to reboot your server, wouldn't the possibility exist that a user could be assigned a sid that exists in the table and is valid? Maybe not. I don't know the details of how a sid is calculated. Jordan Raub wrote

Re: [fw-general] Problem with Sessions

2008-03-13 Thread Ralph Schindler
You should be setting these options through Zend_Session::setOptions($options); Then, call Zend_SEssion::start(); OR, you can pass the options to Zend_SEssion directly Zend_Session::start($options); By default, Zend_Session will turn ON use_only_cookies (this is why the option needs to be p

[fw-general] Problem with Sessions

2008-03-13 Thread Stefan Sturm
Hello, I want to use the Zend_Session Functions without cookies. So, when I use Zend_Session::start() to start a session, I get a new session_id with every click, When I use session_start() to start a session, everything works fine. I just start the Session, so no more other session related Code.

Re: [fw-general] Re: Large descriptions kills Atom feeds

2008-03-13 Thread Joó Ádám
Hello Darby, Filed as ZF-2877 at http://framework.zend.com/issues/browse/ZF-2877 Regards, Ádám

RE: [fw-general] Broken after upgrade to Apache 2.2

2008-03-13 Thread Bryan Dunlap
Original Message Subject: Re: [fw-general] Broken after upgrade to Apache 2.2 From: Chuck Bai <[EMAIL PROTECTED]> Date: Thu, March 13, 2008 10:01 am To: Isaak Malik <[EMAIL PROTECTED]>, fw-general@lists.zend.com > When I am trying to access login page: > http://localhost/my-app

RE: [fw-general] Docs on Framework Site Question

2008-03-13 Thread Eric Marden
+1 for this issue. I rely on them too, as I'm sure many users do. -- Eric Marden IT Development - PHP Team 407.571.4861 Bonnier Corporation 460 N. Orlando Avenue, Suite 200 Winter Park, Florida 32789 www.bonniercorp.com

RE: [fw-general] Broken after upgrade to Apache 2.2

2008-03-13 Thread Eric Marden
Confirm that Allow Overrides is still enabled. Perhaps your upgrade changed some of the apache config? We're running on 2.2 just fine over here. -- Eric Marden Sr. PHP Developer -Original Message- From: Chuck Bai [mailto:[EMAIL PROTECTED] Sent: Thursday, March 13, 2008 1:02 PM To:

Re: [fw-general] Broken after upgrade to Apache 2.2

2008-03-13 Thread Chuck Bai
When I am trying to access login page: http://localhost/my-app/auth/login (where AuthController/loginAction) I got this Apache error log: [time] [error] [client 127.0.0.1] File does not exist: C:/doc-root/my-app/auth, referer: http://localhost/my-app/ I have another PHP application not u

Re: [fw-general] Broken after upgrade to Apache 2.2

2008-03-13 Thread Chuck Bai
All my action function names already begin with lower case character. This is the requirement of ZF MVC. The problem must be something else. More thoughts? Ramon de la Fuente wrote: Hi Chuck, I have the same issue, although it has nothing to do with an Apache upgrade. I found that my IndexCo

Re: [fw-general] Zend_Form populates all form elements?

2008-03-13 Thread Dieter Provoost
Matthew Weier O'Phinney-3 wrote: > > -- Dieter Provoost <[EMAIL PROTECTED]> wrote > (on Thursday, 13 March 2008, 03:43 AM -0700): >> Playing around with Zend_Form I noticed that when you want to populate a >> form, it loops over all form elements and populates them with the >> available >> valu

Re: [fw-general] Problem with Zend_Layout & multible controller directories

2008-03-13 Thread Wolfgang Forstmeier
Uah, I found my mistake, as you could see in my bootstrap I have added an Plugin for menu creation. This plugin caused the recursion error in my webpage. Maybe someone could tell me how to that better ? My current plugin looks like: init(); $this->getResponse()->insert('nav', $v

Re: [fw-general] Re: Using context switcher to default to xml context

2008-03-13 Thread Matthew Weier O'Phinney
-- Joshua Ross <[EMAIL PROTECTED]> wrote (on Thursday, 13 March 2008, 07:44 AM -0400): > I think that the manual is not clear on this, but even if the default > context is xml you must still pass the format/xml/ HTTP GET params to all > actions in order to trigger the context switcher. Feature r

Re: [fw-general] Problem with Zend_Layout & multible controller directories

2008-03-13 Thread Wolfgang Forstmeier
Hello ... > Are you naming the controllers in you news directory with the prefix > 'News_'? Yes I have done that. This was my first trap, but if I got this I had the error I named in the mail to the list. Maybe I could spend some more details. For me it looks like my layout html file will be fi

Re: [fw-general] Re: Large descriptions kills Atom feeds

2008-03-13 Thread Darby Felton
Hi Ádám, Would you please file an issue in the issue tracker for this, if one does not already exist, so we can track the problem through to resolution? http://framework.zend.com/issues/secure/CreateIssue!default.jspa Thanks! Best regards, Darby Joó Ádám wrote: On Sat, Mar 1, 2008 at 5:03

Re: [fw-general] Zend_Session_SaveHandler_DbTable

2008-03-13 Thread Kamil Nowakowski
Simon Mundy pisze: Hey I hope it's not too late - I use this in a production site and it's working an absolute treat! Thanks Jordan! http://framework.zend.com/issues/browse/ZF-2335 Finally got around to finishing the unit tests and writing some documentation.. I'm not done with the docs but

Re: [fw-general] Zend Framework 1.5 Release Candidate 3 is now available!

2008-03-13 Thread Isaak Malik
Wil Sinclair schreef: We couldn't be happier to announce that Zend Framework 1.5 Release Candidate 3 is now available from the Zend Framework download site! http://framework.zend.com/download An overview of new features (also included in previous 1.5 Release Candidates): * New Zend_Form compon

Re: [fw-general] Problem with Zend_Layout & multible controller directories

2008-03-13 Thread Matthew Weier O'Phinney
-- Wolfgang Forstmeier <[EMAIL PROTECTED]> wrote (on Thursday, 13 March 2008, 08:30 AM +0100): > I have developed a little site that have some modules. First I had them all in > my default controller directory, now I would like to put them into several > controller directorys to have them more sepe

[fw-general] Re: Using context switcher to default to xml context

2008-03-13 Thread Joshua Ross
I think that the manual is not clear on this, but even if the default context is xml you must still pass the format/xml/ HTTP GET params to all actions in order to trigger the context switcher. Feature request! =] -Joshua- "Joshua Ross" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTE

Re: [fw-general] Zend_Form populates all form elements?

2008-03-13 Thread Matthew Weier O'Phinney
-- Dieter Provoost <[EMAIL PROTECTED]> wrote (on Thursday, 13 March 2008, 03:43 AM -0700): > Playing around with Zend_Form I noticed that when you want to populate a > form, it loops over all form elements and populates them with the available > values. > > It loops all elements, including submit

[fw-general] Zend_Form populates all form elements?

2008-03-13 Thread Dieter Provoost
Playing around with Zend_Form I noticed that when you want to populate a form, it loops over all form elements and populates them with the available values. It loops all elements, including submit buttons, which are unnecessary to loop over. When I populate a form, I want it to set default value

[fw-general] Docs on Framework Site Question

2008-03-13 Thread Arthur M. Kang
What happened to the previous and next links in the docs on the framework site? I used those all the time. Now, it seems, that in the last couple of days they are now missing... :( Arthur

[fw-general] pdo_mysql not usable at all?

2008-03-13 Thread Julian Davchev
We had some discussion a while back, don't remember who. And it appears that using pdo_mysql is just not usable. Question mark '?' is always considered as placeholder and thus not able to pass this to db in any way. So I switched to mysqli adapter but this is totally taking all memory... - as f

[fw-general] Problem with Zend_Layout & multible controller directories

2008-03-13 Thread Wolfgang Forstmeier
Hello everyone, I have developed a little site that have some modules. First I had them all in my default controller directory, now I would like to put them into several controller directorys to have them more seperated. But if I do that my page occures in several errors in viewing. First of all

Re: [fw-general] Broken after upgrade to Apache 2.2

2008-03-13 Thread Ramon de la Fuente
Hi Chuck, I have the same issue, although it has nothing to do with an Apache upgrade. I found that my IndexController had an IndexAction() function that up untill now worked fine, but since my last update of ZF could not work unless I renamed it to indexAction() - lower case i as the first