[fw-general] Fatal error: Call to undefined method Zend_View_Helper_Placeholder_Container::ksort() in /var/local/Zend/View/Helper/HeadLink.php on line 321

2010-06-07 Thread Bart McLeod
Fatal error: Call to undefined method Zend_View_Helper_Placeholder_Container::ksort() in /var/local/Zend/View/Helper/HeadLink.php on line 321 This reminds me of a similar error I found earlier, I do not remember the component. It seems some one is trying to sort a placeholder by it's keys.

Re: [fw-general] Generate WSDL

2010-06-07 Thread Matthew Weier O'Phinney
-- robert mena robert.m...@gmail.com wrote (on Friday, 04 June 2010, 02:50 PM -0400): Is there a way to generate the WSDL file from a class using a Zend component? Yes -- via Zend_Soap_Autodiscover: http://framework.zend.com/manual/en/zend.soap.autodiscovery.html A typical workflow is to

Re: [fw-general] Fatal error: Call to undefined method Zend_View_Helper_Placeholder_Container::ksort() in /var/local/Zend/View/Helper/HeadLink.php on line 321

2010-06-07 Thread Саша Стаменковић
Looks like you have old version of PHP. Which version are you using? Regards, Saša Stamenković On Mon, Jun 7, 2010 at 12:21 PM, Bart McLeod mcl...@spaceweb.nl wrote: *Fatal error*: Call to undefined method Zend_View_Helper_Placeholder_Container::ksort() in *

[fw-general] Re: Unable to load under models from subdirectories

2010-06-07 Thread Mike Fuller
That's a typo in the message. That's what I get for using something up. Here's a real situation: class Chapter_Model_Infra_ChapterRepository located in application/modules/chapter/models/infra/ChapterRepository.php -- View this message in context:

[fw-general] RE: Unable to load under models from subdirectories

2010-06-07 Thread Mike Fuller
Vincent, That was it. Thank you so very much! -- View this message in context: http://zend-framework-community.634137.n4.nabble.com/Unable-to-load-under-models-from-subdirectories-tp2242445p2243665.html Sent from the Zend Framework mailing list archive at Nabble.com.

Re: [fw-general] Fatal error: Call to undefined method Zend_View_Helper_Placeholder_Container::ksort() in /var/local/Zend/View/Helper/HeadLink.php on line 321

2010-06-07 Thread Bart McLeod
You may be right, this is on a newly installed vps, where they installed a smaller version then I had asked for. 5.1.6 I think. I will check against 5.3, yes, that seems to work as usual. I will inform the isp, thank you! Bart Op 7-6-2010 12:46, Саша Стаменковић schreef: Looks like you have

Re: [fw-general] Fatal error: Call to undefined method Zend_View_Helper_Placeholder_Container::ksort() in /var/local/Zend/View/Helper/HeadLink.php on line 321

2010-06-07 Thread Nicolas Grevet
See: http://www.php.net/manual/en/arrayobject.ksort.php On 06/07/2010 02:12 PM, Bart McLeod wrote: You may be right, this is on a newly installed vps, where they installed a smaller version then I had asked for. 5.1.6 I think. I will check against 5.3, yes, that seems to work as usual.

Re: [fw-general] Fatal error: Call to undefined method Zend_View_Helper_Placeholder_Container::ksort() in /var/local/Zend/View/Helper/HeadLink.php on line 321

2010-06-07 Thread Саша Стаменковић
Check http://framework.zend.com/manual/en/requirements.introduction.html, it says PHP 5.2.4 or later. Regards, Saša Stamenković On Mon, Jun 7, 2010 at 2:13 PM, Nicolas Grevet ngre...@alteo.fr wrote: See: http://www.php.net/manual/en/arrayobject.ksort.php On 06/07/2010 02:12 PM, Bart

Re: [fw-general] Fatal error: Call to undefined method Zend_View_Helper_Placeholder_Container::ksort() in /var/local/Zend/View/Helper/HeadLink.php on line 321

2010-06-07 Thread Bart McLeod
Thank you all, yes I will ask them to install 5.3 Regards, Bart McLeod Op 7-6-2010 14:22, Саша Стаменковић schreef: Check http://framework.zend.com/manual/en/requirements.introduction.html, it says PHP 5.2.4 or later. Regards, Saša Stamenković On Mon, Jun 7, 2010 at 2:13 PM,

[fw-general] Disable prepare statement in Zend_Db_Select

2010-06-07 Thread Ryan Chan
Hello, I have traced the source code of ZFW, and found the database adapter Zend_Db_Adapter_Mysqli always do a prepare when execute any SQL. However, I found it is not needed, since most of my query only run once in their life cycle - no reuse is needed. It is possible to disable auto prepare

[fw-general] Flash Builder 4 (swf) for Views (ZF1.10) - Error 2032 Loading

2010-06-07 Thread Jack Houghton
I am a new user of the Zend Framework. I have used some tutorials and have a working application that has login ability with a mysql database. I am looking at coding the View using Flash Builder 4 and made a login swf file to be invoked from the login.phtml file. I am using htmlFlash() to invoke

Re: [fw-general] Fatal error: Call to undefined method Zend_View_Helper_Placeholder_Container::ksort() in /var/local/Zend/View/Helper/HeadLink.php on line 321

2010-06-07 Thread Ken Chou
I have same problem, but unfortunately, SA do not agree to upgrade PHP.. Orz :( I add ksort method to Zend_View_Helper_Placeholder_Container_Abstract. It seems to work. public function ksort() { $items = $this-getArrayCopy(); ksort($items);