RE: [fw-general] Calling actions from PHP-CLI

2007-06-30 Thread Bill Karwin
Zend_Console_Getopt is intended to be a class that parses command-line
options; it is not an application framework.
 
MVC is a very good solution for application design, but it's not the
only solution.  Zend_Console_Getopt should remain decoupled from the MVC
pattern, so command-line options can be parsed for applications that do
not use the MVC pattern.
 
It would be fine to develop another class Zend_Controller_Router_Cli.
It would certainly make sense for this new class to utilize
Zend_Console_Getopt, but it is not *part* of Zend_Console_Getopt.
 
Regards,
Bill Karwin




From: Michael Depetrillo [mailto:[EMAIL PROTECTED] 
Sent: Saturday, June 30, 2007 7:02 PM
To: fw-general@lists.zend.com
Subject: Re: [fw-general] Calling actions from PHP-CLI


Should Zend_Console_Getopt become Zend_Controller_Router_Cli?

The default front controller route is not compatible with any
class other than Zend_Controller_Request_Http.
 

On 6/28/07, Matthew Weier O'Phinney <[EMAIL PROTECTED]> wrote: 

-- Xavier Vidal Piera <[EMAIL PROTECTED]> wrote
(on Thursday, 28 June 2007, 01:48 PM +0200):
> I have an Action which I want to run from a cronjob.
>
> Which is the best way to go? 
> Calling the URL with curl or something like that?
> Or use the PHP-CLI?
>
> I don't know how to call the action with PHP-CLI.

There are a couple options. First, you can re-create
your bootstrap, but 
instead of letting the front controller create the
request, you'd create
it yourself:

http://host/controller/action');

// Use a CLI response, so that redirects won't throw
exceptions: 
require_once 'Zend/Controller/Response/Cli.php';
$response = new Zend_Controller_Response_Cli();

// Dispatch:
$front->dispatch($request, $response);

The other option is to use the CLI request object, which
is currently in 
proposal form; search on the wiki for
Zend_Controller_Request_Cli. This
request allows you to specify a controller and action on
the command
line, which would allow you to create a single CLI
bootstrap and use it 
to call any action in your application.

--
Matthew Weier O'Phinney
PHP Developer| [EMAIL PROTECTED]
Zend - The PHP Company   | http://www.zend.com/





-- 
Michael DePetrillo
[EMAIL PROTECTED]
Mobile: (858) 761-1605
AIM: klassicd 

www.michaeldepetrillo.com 



Re: [fw-general] Calling actions from PHP-CLI

2007-06-30 Thread Michael Depetrillo

Should Zend_Console_Getopt become Zend_Controller_Router_Cli?

The default front controller route is not compatible with any class other
than Zend_Controller_Request_Http.

On 6/28/07, Matthew Weier O'Phinney <[EMAIL PROTECTED]> wrote:


-- Xavier Vidal Piera <[EMAIL PROTECTED]> wrote
(on Thursday, 28 June 2007, 01:48 PM +0200):
> I have an Action which I want to run from a cronjob.
>
> Which is the best way to go?
> Calling the URL with curl or something like that?
> Or use the PHP-CLI?
>
> I don't know how to call the action with PHP-CLI.

There are a couple options. First, you can re-create your bootstrap, but
instead of letting the front controller create the request, you'd create
it yourself:

http://host/controller/action');

// Use a CLI response, so that redirects won't throw exceptions:
require_once 'Zend/Controller/Response/Cli.php';
$response = new Zend_Controller_Response_Cli();

// Dispatch:
$front->dispatch($request, $response);

The other option is to use the CLI request object, which is currently in
proposal form; search on the wiki for Zend_Controller_Request_Cli. This
request allows you to specify a controller and action on the command
line, which would allow you to create a single CLI bootstrap and use it
to call any action in your application.

--
Matthew Weier O'Phinney
PHP Developer| [EMAIL PROTECTED]
Zend - The PHP Company   | http://www.zend.com/





--
Michael DePetrillo
[EMAIL PROTECTED]
Mobile: (858) 761-1605
AIM: klassicd

www.michaeldepetrillo.com


Re: [fw-general] Bug in Zend_Mail?

2007-06-30 Thread Jack Sleight

If you're on Windows then you wont have sendmail at all, make sure you have
correct SMTP server settings in your php.ini, or use the Zend_Mail SMTP
transport.

http://framework.zend.com/manual/en/zend.mail.sending.html


Matthew Weier O'Phinney-3 wrote:
> 
> -- Daniel Freudenberger <[EMAIL PROTECTED]> wrote
> (on Saturday, 30 June 2007, 04:38 PM +0200):
>> can someone confirm, that the following code is not working properly? I
>> get a
>> Zend_Mail_Transport_Exception with the message „Unable to send mail“.
>> 
>> I’m running php 5.2.3 (win / fcgi) and zf 1.0rc3
>> 
>> Everything seems to work fine as long as the body does not exceed 74
>> characters
> 
> It's an issue with whatever sendmail utility you use on your server.
> That particular exception occurs if mail() returns a boolean false
> (indicating the mail was not sent).
> 
> -- 
> Matthew Weier O'Phinney
> PHP Developer| [EMAIL PROTECTED]
> Zend - The PHP Company   | http://www.zend.com/
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Bug-in-Zend_Mail--tf4004989s16154.html#a11377769
Sent from the Zend Framework mailing list archive at Nabble.com.



[fw-general] Project Zero - have anyone heard of it?

2007-06-30 Thread Dinh

Dear all,

IBM has started a project that supports building REST-like services using
dynamic languages like PHP at
https://www.projectzero.org/wiki/bin/view/Main/WebHome

Does IBM do it with some PHP experts support or they just ignore us? I think
Zend Framework (SolarPHP, CakePHP...) should be a good reference for such
kind of project, shouldn't it? I am afraid that they are trying to create
another standard for PHP community

Dinh

--
Nobody in nowhere


Re: [fw-general] Bug in Zend_Mail?

2007-06-30 Thread Matthew Weier O'Phinney
-- Daniel Freudenberger <[EMAIL PROTECTED]> wrote
(on Saturday, 30 June 2007, 04:38 PM +0200):
> can someone confirm, that the following code is not working properly? I get a
> Zend_Mail_Transport_Exception with the message „Unable to send mail“.
> 
> I’m running php 5.2.3 (win / fcgi) and zf 1.0rc3
> 
> Everything seems to work fine as long as the body does not exceed 74 
> characters

It's an issue with whatever sendmail utility you use on your server.
That particular exception occurs if mail() returns a boolean false
(indicating the mail was not sent).

-- 
Matthew Weier O'Phinney
PHP Developer| [EMAIL PROTECTED]
Zend - The PHP Company   | http://www.zend.com/


Re: [fw-general] ZF Application Variables?

2007-06-30 Thread Matthew Weier O'Phinney
-- PotatoBob <[EMAIL PROTECTED]> wrote
(on Saturday, 30 June 2007, 01:03 AM -0700):
> Matthew, as far as I can see, Zend_Cache defines what backends you can load,
> so writing our own backend at the moment doesn't seem possible without
> editing the Zend_Cache factory to include our class.

You could *extend* the Zend_Cache class to add new backends, instead of
editing it... 

Please file an issue on this -- the class should be flexible enough to
allow registering custom frontends and backends.

However, please note that memcached and Zend Platform backends already
exist and would be quite suitable for such a task.

> Matthew Weier O'Phinney-3 wrote:
> > 
> > -- Laurent TAUPIAC <[EMAIL PROTECTED]> wrote
> > (on Friday, 29 June 2007, 02:35 PM +0200):
> > > 
> > > To expand on what Bill mentioned previously, the combination of
> > > Zend_Config + Zend_Cache + Zend_Registry would accomplish the same
> > > functionality:
> > > 
> > >  * Zend_Config for the actual variable storage.
> > >  * Zend_Cache for caching to disk (or database) between requests
> > >  * Zend_Registry to make it globally available in the application
> > > 
> > > Basically, everything you need is already present.
> > > 
> > > Imho, database is the best way to manage easily race condition. Disk
> > > storage
> > > will lead to problems, especially if you have many fronts.
> > 
> > Zend_Cache can use either memcached or Zend Platform for backends, and
> > you can also write your own backend. The benefit to a setup like this is
> > that the developer can test locally using filesystem or sqlite, and then
> > push live without changing any code but the backend used.

-- 
Matthew Weier O'Phinney
PHP Developer| [EMAIL PROTECTED]
Zend - The PHP Company   | http://www.zend.com/


Re: [fw-general] _getAllparams() always empty after upgrading

2007-06-30 Thread Matthew Weier O'Phinney
-- KungFuChris <[EMAIL PROTECTED]> wrote
(on Friday, 29 June 2007, 07:18 PM -0700):
> I am hoping someone can give me a heads up on where my problem may  be.
> 
> I just upgraded from RC1 to RC3 and my site stopped working . no matter what
> the url it just goes to my index page.. I did a print_r of _getAllParams()
> and it's an empty array now.
> 
> Any idea where the problem may be?

There was a change in the request object between RC2 and RC3 that's been
reverted. Please grab a copy of the latest nightly snapshot or from
subversion and test.

-- 
Matthew Weier O'Phinney
PHP Developer| [EMAIL PROTECTED]
Zend - The PHP Company   | http://www.zend.com/


Re: [fw-general] Wiki - Killedki - Resetki

2007-06-30 Thread Dinh

Andi,

That's great. It reminds me of Java's Pet store:
https://blueprints.dev.java.net/petstore/ When Zend Framwork reaches 1.0, it
would be necessary to have something like Zend Framework's Pet store. It is
a not only sample, illustrated application but also main source to teach
people what are the best practices when using Zend Framework

Dinh



On 7/1/07, Andi Gutmans <[EMAIL PROTECTED]> wrote:


Bill can probably attest more to the problems. I think some of them are
just application problems which might be solved once we upgrade to the
latest versions. We didn't have a lot of bandwidth to do that but will
look into fixing it now that we're going to ship.

Btw, it'd be great to see a ZF-based Wiki. In general, it's important
that the ZF have some sample apps. I have something going on around a
simple blog but no ETA on that yet. But in general, I think such sample
apps don't necessarily need to have all the latest and greatest features
but if they are done well enough to act as samples that people can
understand we'll see more and more copy-on-write going on and have the
community start building more fully featured apps on top of them.

Andi

> -Original Message-
> From: Thomas Weidner [mailto:[EMAIL PROTECTED]
> Sent: Saturday, June 30, 2007 7:36 AM
> To: Andi Gutmans; fw-general@lists.zend.com
> Subject: Re: [fw-general] Wiki - Killedki - Resetki
>
> I would propose to use ZF ;-)))
>
> Would be interesting to know where the problems are related to...
> Wiki ? Jira ? Confluence ? Hardware ? Biddy ? Apprentice ?
>
> Greetings
> Thomas
>
> - Original Message -
> From: "Andi Gutmans" <[EMAIL PROTECTED]>
> To: "Thomas Weidner" <[EMAIL PROTECTED]>;
> 
> Sent: Saturday, June 30, 2007 4:21 PM
> Subject: RE: [fw-general] Wiki - Killedki - Resetki
>
>
> Next time we won't use Java :'(
> Not sure if Bill had a chance to upgrade it yet. We'll look into it.
>
> > -Original Message-
> > From: Thomas Weidner [mailto:[EMAIL PROTECTED]
> > Sent: Saturday, June 30, 2007 12:37 AM
> > To: fw-general@lists.zend.com
> > Subject: [fw-general] Wiki - Killedki - Resetki
> >
> > Hy...
> >
> > once again wiki down since 2 hours...
> >
> > What's about a clock timer ???
> > Brute-Force-Reset all 2 hours :-)))
> >
> > Greetings
> > Thomas
> >
>





--
Nobody in nowhere


RE: [fw-general] Wiki - Killedki - Resetki

2007-06-30 Thread Andi Gutmans
Bill can probably attest more to the problems. I think some of them are
just application problems which might be solved once we upgrade to the
latest versions. We didn't have a lot of bandwidth to do that but will
look into fixing it now that we're going to ship.

Btw, it'd be great to see a ZF-based Wiki. In general, it's important
that the ZF have some sample apps. I have something going on around a
simple blog but no ETA on that yet. But in general, I think such sample
apps don't necessarily need to have all the latest and greatest features
but if they are done well enough to act as samples that people can
understand we'll see more and more copy-on-write going on and have the
community start building more fully featured apps on top of them.

Andi

> -Original Message-
> From: Thomas Weidner [mailto:[EMAIL PROTECTED] 
> Sent: Saturday, June 30, 2007 7:36 AM
> To: Andi Gutmans; fw-general@lists.zend.com
> Subject: Re: [fw-general] Wiki - Killedki - Resetki
> 
> I would propose to use ZF ;-)))
> 
> Would be interesting to know where the problems are related to...
> Wiki ? Jira ? Confluence ? Hardware ? Biddy ? Apprentice ?
> 
> Greetings
> Thomas
> 
> - Original Message -
> From: "Andi Gutmans" <[EMAIL PROTECTED]>
> To: "Thomas Weidner" <[EMAIL PROTECTED]>; 
> 
> Sent: Saturday, June 30, 2007 4:21 PM
> Subject: RE: [fw-general] Wiki - Killedki - Resetki
> 
> 
> Next time we won't use Java :'(
> Not sure if Bill had a chance to upgrade it yet. We'll look into it. 
> 
> > -Original Message-
> > From: Thomas Weidner [mailto:[EMAIL PROTECTED] 
> > Sent: Saturday, June 30, 2007 12:37 AM
> > To: fw-general@lists.zend.com
> > Subject: [fw-general] Wiki - Killedki - Resetki
> > 
> > Hy...
> > 
> > once again wiki down since 2 hours...
> > 
> > What's about a clock timer ???
> > Brute-Force-Reset all 2 hours :-)))
> > 
> > Greetings
> > Thomas
> >
> 


Re: [fw-general] Wiki - Killedki - Resetki

2007-06-30 Thread mikespook

here
http://services.alphaworks.ibm.com/qedwiki/

but maybe you need a ibm ID for tring it.


2007/7/1, till <[EMAIL PROTECTED]>:


On 6/30/07, Willie Alberty <[EMAIL PROTECTED]> wrote:
> On Jun 30, 2007, at 8:53 AM, Jurriën Stutterheim wrote:
>
> > First one to build a ZF-based Wiki wins! ;)
> >
> > But seriously, it would be cool if a ZF-based Wiki project was
> > created.
> > It might serve as an example of "best practice application
> > programming with Zend Framework".
> > Using only ZF components (where available), it would be incredibly
> > educational!
>
> Someone has: http://files.zend.com/qedwiki   There's a description on
> the framework home page: http://framework.zend.com

Yeah, that has been on the frontpage for forever. I am not sure though
- has anyone used it or is available anywhere?

Cheers,
Till





--
广州市一方信息咨询有限公司
地址:广州市 江南大道中 穗花村 三巷12号204
邮编:510245
电话:020-39738561 020-39738571
传真:020-84476279
网站:www.i-fang.com
[EMAIL PROTECTED]


RE: [fw-general] Wiki - Killedki - Resetki

2007-06-30 Thread Bill Karwin
I would have preferred to use a PHP-based issue tracker and wiki too.
But JIRA and Confluence were installed and running when I joined Zend,
and they are actually very good products.  I am not aware of any PHP
solution that has as rich a set of features.

Our instance of Confluence has been having a lot of troubles lately, and
the log is generating a huge amount of errors related to email failures.
I think some content in the wiki contains an email address that is
malformed.  I have spent some time trying to track it down but I haven't
found it yet.  

It's very frustrating, because I want to fix it and I'm sure it will be
a simple fix once we find it.  But at every moment of the day there are
a dozen other tasks that need to be done more urgently.

Bill 

> -Original Message-
> From: Thomas Weidner [mailto:[EMAIL PROTECTED] 
> Sent: Saturday, June 30, 2007 7:36 AM
> To: Andi Gutmans; fw-general@lists.zend.com
> Subject: Re: [fw-general] Wiki - Killedki - Resetki
> 
> I would propose to use ZF ;-)))
> 
> Would be interesting to know where the problems are related to...
> Wiki ? Jira ? Confluence ? Hardware ? Biddy ? Apprentice ?
> 
> Greetings
> Thomas
> 
> - Original Message -
> From: "Andi Gutmans" <[EMAIL PROTECTED]>
> To: "Thomas Weidner" <[EMAIL PROTECTED]>; 
> 
> Sent: Saturday, June 30, 2007 4:21 PM
> Subject: RE: [fw-general] Wiki - Killedki - Resetki
> 
> 
> Next time we won't use Java :'(
> Not sure if Bill had a chance to upgrade it yet. We'll look into it. 
> 
> > -Original Message-
> > From: Thomas Weidner [mailto:[EMAIL PROTECTED] 
> > Sent: Saturday, June 30, 2007 12:37 AM
> > To: fw-general@lists.zend.com
> > Subject: [fw-general] Wiki - Killedki - Resetki
> > 
> > Hy...
> > 
> > once again wiki down since 2 hours...
> > 
> > What's about a clock timer ???
> > Brute-Force-Reset all 2 hours :-)))
> > 
> > Greetings
> > Thomas
> >
> 


Re: [fw-general] Wiki - Killedki - Resetki

2007-06-30 Thread till

On 6/30/07, Willie Alberty <[EMAIL PROTECTED]> wrote:

On Jun 30, 2007, at 8:53 AM, Jurriën Stutterheim wrote:

> First one to build a ZF-based Wiki wins! ;)
>
> But seriously, it would be cool if a ZF-based Wiki project was
> created.
> It might serve as an example of "best practice application
> programming with Zend Framework".
> Using only ZF components (where available), it would be incredibly
> educational!

Someone has: http://files.zend.com/qedwiki   There's a description on
the framework home page: http://framework.zend.com


Yeah, that has been on the frontpage for forever. I am not sure though
- has anyone used it or is available anywhere?

Cheers,
Till


Re: [fw-general] Wiki - Killedki - Resetki

2007-06-30 Thread Willie Alberty

On Jun 30, 2007, at 8:53 AM, Jurriën Stutterheim wrote:


First one to build a ZF-based Wiki wins! ;)

But seriously, it would be cool if a ZF-based Wiki project was  
created.
It might serve as an example of "best practice application  
programming with Zend Framework".
Using only ZF components (where available), it would be incredibly  
educational!


Someone has: http://files.zend.com/qedwiki   There's a description on  
the framework home page: http://framework.zend.com


--

Willie Alberty, Owner
Spenlen Media
[EMAIL PROTECTED]

http://www.spenlen.com/



Re: [fw-general] Wiki - Killedki - Resetki

2007-06-30 Thread Jurriën Stutterheim

Sure would be interesting to find out what the problem is.
One thing is for sure: a server that's down most of the time is a bad  
thing no-one wants.


First one to build a ZF-based Wiki wins! ;)

But seriously, it would be cool if a ZF-based Wiki project was created.
It might serve as an example of "best practice application  
programming with Zend Framework".
Using only ZF components (where available), it would be incredibly  
educational!


On 30 Jun 2007, at 16:36, Thomas Weidner wrote:


I would propose to use ZF ;-)))

Would be interesting to know where the problems are related to...
Wiki ? Jira ? Confluence ? Hardware ? Biddy ? Apprentice ?

Greetings
Thomas

- Original Message - From: "Andi Gutmans" <[EMAIL PROTECTED]>
To: "Thomas Weidner" <[EMAIL PROTECTED]>; [EMAIL PROTECTED]>

Sent: Saturday, June 30, 2007 4:21 PM
Subject: RE: [fw-general] Wiki - Killedki - Resetki


Next time we won't use Java :'(
Not sure if Bill had a chance to upgrade it yet. We'll look into it.

-Original Message-
From: Thomas Weidner [mailto:[EMAIL PROTECTED] Sent:  
Saturday, June 30, 2007 12:37 AM

To: fw-general@lists.zend.com
Subject: [fw-general] Wiki - Killedki - Resetki
Hy...
once again wiki down since 2 hours...
What's about a clock timer ???
Brute-Force-Reset all 2 hours :-)))
Greetings
Thomas







[fw-general] Bug in Zend_Mail?

2007-06-30 Thread Daniel Freudenberger
Hello,

 

can someone confirm, that the following code is not working properly? I get
a Zend_Mail_Transport_Exception with the message "Unable to send mail". 

I'm running php 5.2.3 (win / fcgi) and zf 1.0rc3

 

Everything seems to work fine as long as the body does not exceed 74
characters

 

setSubject('subject');

$mail->setBodyText(str_repeat('a', 75));

$mail->setFrom('[EMAIL PROTECTED]');

$mail->addTo('[EMAIL PROTECTED]');

$mail->send();

?>

 

Best regards,

Daniel



Re: [fw-general] Wiki - Killedki - Resetki

2007-06-30 Thread Thomas Weidner

I would propose to use ZF ;-)))

Would be interesting to know where the problems are related to...
Wiki ? Jira ? Confluence ? Hardware ? Biddy ? Apprentice ?

Greetings
Thomas

- Original Message - 
From: "Andi Gutmans" <[EMAIL PROTECTED]>

To: "Thomas Weidner" <[EMAIL PROTECTED]>; 
Sent: Saturday, June 30, 2007 4:21 PM
Subject: RE: [fw-general] Wiki - Killedki - Resetki


Next time we won't use Java :'(
Not sure if Bill had a chance to upgrade it yet. We'll look into it. 


-Original Message-
From: Thomas Weidner [mailto:[EMAIL PROTECTED] 
Sent: Saturday, June 30, 2007 12:37 AM

To: fw-general@lists.zend.com
Subject: [fw-general] Wiki - Killedki - Resetki

Hy...

once again wiki down since 2 hours...

What's about a clock timer ???
Brute-Force-Reset all 2 hours :-)))

Greetings
Thomas



RE: [fw-general] Wiki - Killedki - Resetki

2007-06-30 Thread Andi Gutmans
Next time we won't use Java :'(
Not sure if Bill had a chance to upgrade it yet. We'll look into it. 

> -Original Message-
> From: Thomas Weidner [mailto:[EMAIL PROTECTED] 
> Sent: Saturday, June 30, 2007 12:37 AM
> To: fw-general@lists.zend.com
> Subject: [fw-general] Wiki - Killedki - Resetki
> 
> Hy...
> 
> once again wiki down since 2 hours...
> 
> What's about a clock timer ???
> Brute-Force-Reset all 2 hours :-)))
> 
> Greetings
> Thomas
> 


Re: [fw-general] ZF Application Variables?

2007-06-30 Thread Dinh

Regarding to Spead extension for PHP, it is out of date and does not work
any more.
An up-to-date version can be found at
http://www.briggs.net.nz/log/projects/phpspread/

On 6/29/07, Nico Edtinger <[EMAIL PROTECTED]> wrote:


What you need might be a database if you need data in sync across all
your servers (or you use the Spread extension from PECL).

If you only need a cache you can use Zend_Cache. It's what the
example you linked to does only with several other and better storage
options.

nico


[28.06.2007 21:59] Jack Sleight wrote:

>
> Hi,
> Are there any plans to introduce an application variable type
> system in ZF?
> Something like this:
>
> http://www.leosingleton.com/projects/code/phpapp/
>
> As far as I'm aware this is something PHP cant do. If this is
> something you
> would be interested in adding I would be happy to help with a
> proposal/coding/development.
>
> Thanks,
> Jack
> --
> View this message in context: http://www.nabble.com/ZF-Application-
> Variables--tf3996469s16154.html#a11349949
> Sent from the Zend Framework mailing list archive at Nabble.com.
>





--
Nobody in nowhere


Re: [fw-general] ZF Application Variables?

2007-06-30 Thread PotatoBob

Matthew, as far as I can see, Zend_Cache defines what backends you can load,
so writing our own backend at the moment doesn't seem possible without
editing the Zend_Cache factory to include our class.


Matthew Weier O'Phinney-3 wrote:
> 
> -- Laurent TAUPIAC <[EMAIL PROTECTED]> wrote
> (on Friday, 29 June 2007, 02:35 PM +0200):
>> 
>> To expand on what Bill mentioned previously, the combination of
>> Zend_Config + Zend_Cache + Zend_Registry would accomplish the same
>> functionality:
>> 
>>  * Zend_Config for the actual variable storage.
>>  * Zend_Cache for caching to disk (or database) between requests
>>  * Zend_Registry to make it globally available in the application
>> 
>> Basically, everything you need is already present.
>> 
>> Imho, database is the best way to manage easily race condition. Disk
>> storage
>> will lead to problems, especially if you have many fronts.
> 
> Zend_Cache can use either memcached or Zend Platform for backends, and
> you can also write your own backend. The benefit to a setup like this is
> that the developer can test locally using filesystem or sqlite, and then
> push live without changing any code but the backend used.
> 
> -- 
> Matthew Weier O'Phinney
> PHP Developer| [EMAIL PROTECTED]
> Zend - The PHP Company   | http://www.zend.com/
> 
> 

-- 
View this message in context: 
http://www.nabble.com/ZF-Application-Variables--tf3996469s16154.html#a11371622
Sent from the Zend Framework mailing list archive at Nabble.com.



[fw-general] Wiki - Killedki - Resetki

2007-06-30 Thread Thomas Weidner

Hy...

once again wiki down since 2 hours...

What's about a clock timer ???
Brute-Force-Reset all 2 hours :-)))

Greetings
Thomas