Re: [fw-general] JsTable: Javascript and Zend_Db_Table

2007-04-18 Thread Jan Pieper
Looks really interesting and it would be very easy to use PHP-Models from client side, but - like mentioned in article and first comment - the security issues should be solved before someone use it. Actually I don´t know how to solve these security lacks - i think there must be a unique hash

[fw-general] help :)

2007-04-18 Thread Roman1975
With tuning work with the session of use_cookies = on use_trans_sid = on and the conclusion of entire contents through $response-sendResponse (); Php 5.2 does not add SID into the references - form, that to make so that would add??? -- View this message in context:

[fw-general] Laggy JIRA

2007-04-18 Thread Jan Pieper
I think JIRA is very laggy at the moment. Is there someone working on it (updates, ...) or why is it so laggy? Yesterday it was also laggy at the same time. -- Jan -- Feel free - 10 GB Mailbox, 100 FreeSMS/Monat ... Jetzt GMX TopMail testen: http://www.gmx.net/de/go/topmail

[fw-general] How to return a file directly by an action

2007-04-18 Thread Mauro Casula
Hi all, I have an action that make a mysql database backup in this way: public function backupDatabaseAction() { $db = Zend::registry('db'); $view = Zend::registry('view'); $config = Zend::registry('config');

Re: [fw-general] How to return a file directly by an action

2007-04-18 Thread frederic wolf
Mauro Casula a écrit : Hi all, I have an action that make a mysql database backup in this way: public function backupDatabaseAction() { $db = Zend::registry('db'); $view = Zend::registry('view'); $config = Zend::registry('config'); $session

Re: [fw-general] How to return a file directly by an action

2007-04-18 Thread Goran Dodig
Hello there, I guess this could help you. The way I did it was by making streamAction() in my controller that looks like this: function streamAction() { $fileString = $this-_request-getParam(fileString); $dldFileName = $this-_request-getParam(fileName); $disposition

[fw-general] RE: [PHP-DEV] Re: [fw-general] Re: [PHP-DEV] ZF 0.8.0 Unit Tests behaving different on PHP 5.2.1 and PHP 5.2.2-dev

2007-04-18 Thread Dmitry Stogov
Tricky code - tricky result. Do you think php-5.1 result is perfect? :) BTW the difference is in implementation of %G format specifier. It seems, now it tries to produce the shortest string representation of float (I cannot remember why), but this is not conformed to POSIX specification Linux

Re: [fw-general] How to return a file directly by an action

2007-04-18 Thread Nico Edtinger
[18.04.2007 13:31] frederic wolf wrote: basically you could do that $str = file_get_contents($file); header('Content-Disposition: attachment; filename=downloaded.pdf'); header('Content-type: application/pdf'); echo $str; fpassthru() or readfile() use less memory

Re: [fw-general] route problem

2007-04-18 Thread Martel Valgoerad
Jacky Chen wrote: Hi all, I want to specify a url such as http://localhost/index.php?controller=indexaction=view http://localhost/index.php?controller=indexaction=view and have it dispatch properly,how? It should work out of the box. You just have to tell the request of your request base

[fw-general] Thanks to Gavin Vess

2007-04-18 Thread Bill Karwin
We would like to thank Gavin Vess for his enthusiasm and contributions to the Zend Framework over the past months. Gavin has left Zend Technologies, and we wish him well in all of his future endeavors. Gavin has served as the Zend point of contact for several key components of the Zend

Re: [fw-general] route problem

2007-04-18 Thread Jacky Chen
Thank you,Martel. 2007/4/19, Martel Valgoerad [EMAIL PROTECTED]: Jacky Chen wrote: Hi all, I want to specify a url such as http://localhost/index.php?controller=indexaction=view http://localhost/index.php?controller=indexaction=view and have it dispatch properly,how? It should work out