Re: [fw-general] how to judge the growth and adoption of zf

2007-06-21 Thread pers0n
This framework needs a lot of good up to date tutorials when it hits 1.0 final It also needs screencasts with audio (cakePHP's dont have audio :( ) a better message board than one on nabble would be nice also, one hosted on Zend A book on it released soon, if anything free online in PDF form and t

Re: [fw-general] Wiki watcher suggestion

2007-06-21 Thread Alexander Johannesen
On 6/22/07, Mark <[EMAIL PROTECTED]> wrote: 0,15,30,45 * * * * result=`wget --tries 1 --server-response --timeout 60 http://framework.zend.com/wiki/display/ZFDEV/Home 2>&1 | grep 'HTTP/'`; [[ ${result} == " HTTP/1.1 200 OK" ]] || ( echo "Wiki site down. ${result} reported. Attempting restart"; /

[fw-general] Wiki watcher suggestion

2007-06-21 Thread Mark
Hi, I've noted the ZF Wiki's uptime is less than ideal and that in another post Bill Karwin intends to upgrade the whole thing when time permits. It was down again yesterday. I've seen it down for hours at a time. I'd like to suggest a quick and dirty one liner solution to ease the pain. Somet

Re: [fw-general] Routing does not work correctly

2007-06-21 Thread Jim Scherer
Matthew, Actual requested URI = ANY $_SERVER['REDIRECT_URL'] = '/index.php' $_SERVER['REQUEST_URI'] = '/' Here were my earlier post to try to resolve this in the order I posted them: http://www.nabble.com/Invalid-controller-specified-%28index.php%29-tf3938224s16154.html http://www.nabble.com/

Re: [fw-general] how to judge the growth and adoption of zf

2007-06-21 Thread David Mintz
How about sending someone over to NYPHP to give a presentation (-: http://nyphp.org/ David On 6/21/07, Andi Gutmans <[EMAIL PROTECTED]> wrote: Hi there, Our team is working on just that cc'ing Brad and Kent who are spearheading this effort. Part of getting ready for ZF 1.0 release is to

[fw-general] Zend_Validate_Alnum::isValid evaluating alnum strings as false

2007-06-21 Thread Graham Anderson
I updated against trunk and now... require_once('Zend/Validate/Alnum.php'); $validator = new Zend_Validate_Alnum(); $vars = array ( 'Alnum' => 'foobar1', 'NotAlnum' => '[EMAIL PROTECTED]' ); foreach ( $vars as $var ) { echo $validator->isValid($var) ? $va

[fw-general] Zend_Service_PayPal in laboratory

2007-06-21 Thread Shahar Evron
Hi All, While the proposal has not been accepted or rejected yet (http://framework.zend.com/wiki/display/ZFPROP/Zend_Service_PayPal +-+Shahar+Evron?focusedCommentId=34255#comment-34255), I just committed the first draft of Zend_Service_PayPal into the laboratory so you can all check it out from Su

Re: [fw-general] Zend_Pdf Rev 5376 Broke my PDF Generation

2007-06-21 Thread Alexander Veremyev
Hi John, I am already working on this problem. It came with new Zend_Pdf resources clean-up mechanism. It's also clear where the problem is. Temporary workaround is to keep images "in memory" up to the PDF generation time. Please take a look at http://framework.zend.com/issues/browse/ZF-15

Re: [fw-general] Routing does not work correctly

2007-06-21 Thread Matthew Weier O'Phinney
-- Aleš Lončar <[EMAIL PROTECTED]> wrote (on Thursday, 21 June 2007, 09:36 PM +0200): > I'm not sure if this is the solution for your problem. But if you are > stuck, > this maybe worth a try. > > > It worked!! Thanks! While it may have worked, would one of you (Jim or Ales) be willing

Re: [fw-general] Two-Step View, subclassing controller, etc

2007-06-21 Thread David Mintz
This is almost too interesting. While waiting for an answer I went ahead and tried my own suggestion and somehow broke something -- still don't understand what. I determined that the $this of the embedded view scripts -- the ones whose output was getting put into $this->content by the dispatchLoo

[fw-general] Zend_Pdf Rev 5376 Broke my PDF Generation

2007-06-21 Thread John Coggeshall
Hey guys... I really would love to be able to provide a patch for this and/or report a bug with a reproducible test case but I simply don't have time to track it down at the moment. But The resource management fix in commit 5376 broke my PDF Generation.. I can't provide the code because its not

Re: [fw-general] Routing does not work correctly

2007-06-21 Thread Aleš Lončar
I'm not sure if this is the solution for your problem. But if you are stuck, this maybe worth a try. It worked!! Thanks! Jim Scherer wrote: Hi, I'm a Dreamhost hosting user and I am having routing problems too. I've hacked Zend_Controller_Request_Http public function setRequestUri to resolve

Re: [fw-general] Problems with modular system

2007-06-21 Thread Matthew Weier O'Phinney
-- Christian Fischer <[EMAIL PROTECTED]> wrote (on Thursday, 21 June 2007, 11:59 AM -0700): > Okay you're right , the baseurl wasnt correct. Glad that solved the issue. > The only thing i dont understand ist that you say that i should use > getRouter() instead of creating a new one ? > Does the F

Re: [fw-general] Routing does not work correctly

2007-06-21 Thread Matthew Weier O'Phinney
-- Jim Scherer <[EMAIL PROTECTED]> wrote (on Thursday, 21 June 2007, 11:41 AM -0700): > I'm a Dreamhost hosting user and I am having routing problems too. I've > hacked Zend_Controller_Request_Http public function setRequestUri to resolve > my issue and have posted a question about it here > http:/

Re: [fw-general] Problems with modular system

2007-06-21 Thread Christian Fischer
Okay you're right , the baseurl wasnt correct. The only thing i dont understand ist that you say that i should use getRouter() instead of creating a new one ? Does the Front Controller user the RewriteRouter by default ? -- View this message in context: http://www.nabble.com/Problems-with-modul

Re: [fw-general] Routing does not work correctly

2007-06-21 Thread Aleš Lončar
FastCGI Matthew Weier O'Phinney wrote: -- alesl <[EMAIL PROTECTED]> wrote (on Thursday, 21 June 2007, 10:10 AM -0700): When testing a Zend Framework application at Dreamhost hosting, I discovered a problem with the routing system in my particular configuration. At home everything works perf

Re: [fw-general] Routing does not work correctly

2007-06-21 Thread Jim Scherer
Hi, I'm a Dreamhost hosting user and I am having routing problems too. I've hacked Zend_Controller_Request_Http public function setRequestUri to resolve my issue and have posted a question about it here http://www.nabble.com/Zend_Controller_Request_Http-setRequestUri-bug--tf3953464s16154.html My

Re: [fw-general] Routing does not work correctly

2007-06-21 Thread Matthew Weier O'Phinney
-- alesl <[EMAIL PROTECTED]> wrote (on Thursday, 21 June 2007, 10:10 AM -0700): > When testing a Zend Framework application at Dreamhost hosting, I discovered > a problem with the routing system in my particular configuration. > At home everything works perfectly (tested on windows and linux - > a

RE: [fw-general] Zend Framework 1.0 - An Overview - Recording?

2007-06-21 Thread Bill Karwin
Hi, they had a bit of trouble preparing the recording and had to start the process over. It's a multi-hour process to do that. So we're trying to get the recording up on the website today. We appreciate your patience. During the webinar I only got through about half the questions that were aske

[fw-general] Routing does not work correctly

2007-06-21 Thread alesl
Hi. When testing a Zend Framework application at Dreamhost hosting, I discovered a problem with the routing system in my particular configuration. At home everything works perfectly (tested on windows and linux - apache_mod), but routing does not work correctly in environmet with Apache, suexec

Re: [fw-general] Two-Step View, subclassing controller, etc

2007-06-21 Thread Matthew Weier O'Phinney
-- David Mintz <[EMAIL PROTECTED]> wrote (on Thursday, 21 June 2007, 12:45 PM -0400): > This newbie is liking the Two Step View where your plugin basically intercepts > the response body and sticks it into a sitewide template at > dispatchLoopShutdown() time. > > So: if you want all your controlle

Re: [fw-general] Two-Step View, subclassing controller, etc

2007-06-21 Thread Ralph Schindler
I have a component proposal (writing it as we speak) for Zend_Layout. A full working implementation can be found at http://svn.ralphschindler.com/repo/Xend/ (executed in the Xend_Layout namespace) minimal docs and usage is in the docs folder.. Several people on #zftalk have had a chance to i

[fw-general] Two-Step View, subclassing controller, etc

2007-06-21 Thread David Mintz
This newbie is liking the Two Step View where your plugin basically intercepts the response body and sticks it into a sitewide template at dispatchLoopShutdown() time. So: if you want all your controllers to use a common Zend_View object (so that the view vars they set will end up available to th

Re: [fw-general] Problems with modular system

2007-06-21 Thread Andries Seutens
Matthew Weier O'Phinney schreef: No need for the above line, as this is registered by default. Also, if you're using it, there's really no need for throwExceptions() to be on. Yes, and I would like to suggest to put this into the manual somewhere. This one had me wondering what was going on fo

Re: [fw-general] Problems with modular system

2007-06-21 Thread Matthew Weier O'Phinney
-- Christian Fischer <[EMAIL PROTECTED]> wrote (on Wednesday, 20 June 2007, 11:18 AM -0700): > My Problem is that i`m not able to call another module then the default one. > > First of all here`s the code of my Bootstrap: > > $frontController = Zend_Controller_Front::getInstance(); >

RE: [fw-general] how to judge the growth and adoption of zf

2007-06-21 Thread Andi Gutmans
Hi there, Our team is working on just that cc'ing Brad and Kent who are spearheading this effort. Part of getting ready for ZF 1.0 release is to make sure we considerably upgrade our materials which include showing how big and vibrant the community is. This will be an ongoing process over the comi

Re: [fw-general] how to judge the growth and adoption of zf

2007-06-21 Thread Ralph Schindler
For the time being, join #zftalk on freenode, there are plenty of knowledgeable individuals in there, and me too :) The resources will grow over time and I think you will see a spike at and around 1.0GA -ralph frosty1 wrote: i am very excited about how easy zf is making app development for m

[fw-general] how to judge the growth and adoption of zf

2007-06-21 Thread frosty1
i am very excited about how easy zf is making app development for me. i have several nice sized projects and very happy clients that are using it. i am running into one issue. i have had a very difficult time finding anyone to help me on my projects. i understand that this is new technology an

Re: [fw-general] Zend Framework Cli Tool

2007-06-21 Thread Pádraic Brady
There is a PHP extension for YAML called Syck. Can't remember whether the author had managed to put it in PECL or not (I don't think so). If an extension were needed they have done a lot of work in the area already. P Pádraic Brady http://blog.astrumfutura.com http://www.patternsforphp.com -

RE: [fw-general] Zend Framework Cli Tool

2007-06-21 Thread Andi Gutmans
That's definitely something to keep in mind as it doesn't have a native implementation in PHP. Could be that might end up being the conclusion (i.e. implementing an ext/yaml). > -Original Message- > From: Shahar Evron > Sent: Thursday, June 21, 2007 4:58 AM > To: Pádraic Brady > Cc: And

[fw-general] Re: url rewrite on lighttpd removes the query string ($_GET = empty array)

2007-06-21 Thread Johannes Schill
Hi again, I solved this issue by modifying the rewrite rule to: url.rewrite-once = ( ".*\.(js|ico|gif|jpg|png|css)$" => "$0", ".*\?(.*)" => "/index.php?$1", "" => "/index.php" ) Cheers, Johannes On 6/20/07, Johannes Schill <[EMAIL PROTECTED]> wrote: Hi, Im using LightTPD/1.4.15 (W

Re: [fw-general] Zend Framework 1.0 - An Overview - Recording?

2007-06-21 Thread Jack Sleight
Ok great, thanks. -- Jack

Re: [fw-general] Zend Framework Cli Tool

2007-06-21 Thread Shahar Evron
I have some bad experience with the Spyc parser Symfony uses for YAML, namely having to raise my memory_limit to more than 128mb to get it working with some YAML files. I haven't dug into it's code, but thinking that Symfony sometimes uses it on-line (and not only for CLI), got me kind of scared.

Re: [fw-general] Zend Framework 1.0 - An Overview - Recording?

2007-06-21 Thread Andries Seutens
Jack Sleight schreef: Hi, Unfortunately I had to leave the webinar before the end yesterday, and I missed the Q&A session. Is there a recording available anywhere? I've looked on the Zend site, but cant find it anywhere. Thanks, Jack Hi, Not yet, but I believe it will be dropped here so

[fw-general] Zend Framework 1.0 - An Overview - Recording?

2007-06-21 Thread Jack Sleight
Hi, Unfortunately I had to leave the webinar before the end yesterday, and I missed the Q&A session. Is there a recording available anywhere? I've looked on the Zend site, but cant find it anywhere. Thanks, Jack -- View this message in context: http://www.nabble.com/Zend-Framework-1.0---An-Ov