[fw-general] RE: [fw-mvc] CUSTOM_Controller_Plugin is loaded twice

2010-06-16 Thread Jachim Coudenys
Hi, You probably use some kind of forwarding in your controller. That is why it’s called twice. MvG, Jachim Coudenys Web Developer - Guideline Belgium Van: Enkhbilguun Erdenetsogt [mailto:enkhbilg...@beregu.com] Verzonden: maandag 14 juni 2010 11:23 Aan: fw-general@lists.zend.com;

[fw-general] Re: Progressive upload not working

2010-06-16 Thread David Muir
The problem I think is that you're trying to check the progress after it has already been uploaded. The php script that receives the file won't actually run until the file has been completely uploaded (IIUC, php isn't executed until the web-server recieves the full HTTP request, file and all). To

[fw-general] .htaccess and Download Route Problem

2010-06-16 Thread info
Hi, in my application i have a the classic .htaccess file like: SetEnv APPLICATION_ENV development RewriteEngine on RewriteRule !\.(js|ico|gif|jpg|jpeg|png|css|txt|rtf|pdf|doc|docx|xls|xlsx|ppt|pptx|mov|mpg|mp3|mp4|mpeg|avi|wmv|wmx|xml)$ index.php Then, in the router I added the following

Re: [fw-general] .htaccess and Download Route Problem

2010-06-16 Thread Nilesh Govindarajan
On 06/16/2010 08:37 PM, i...@antoniocaccese.it wrote: Hi, in my application i have a the classic .htaccess file like: SetEnv APPLICATION_ENV development RewriteEngine on RewriteRule !\.(js|ico|gif|jpg|jpeg|png|css|txt|rtf|pdf|doc|docx|xls|xlsx|ppt|pptx|mov|mpg|mp3|mp4|mpeg|avi|wmv|wmx|xml)$

RE: [fw-general] .htaccess and Download Route Problem

2010-06-16 Thread Vincent de Lau
You may try this: RewriteEngine on RewriteRule .*\.(js|ico|gif|jpg|jpeg|png|css|txt|rtf|pdf|doc|docx|xls|xlsx|ppt|pptx |mov|mpg|mp3|mp4|mpeg|avi|wmv|wmx|xml)$ index.php If you want all non-existent file requests to be redirected to ZF, then use this: RewriteEngine on RewriteCond