Re: [fw-general] Performance and Example of Enterprice Applications

2010-09-04 Thread info
Thank you very much, friends. I'm sure that i will persuade my boss. Antonio -- i...@antoniocaccese.it i...@antoniocaccese.it wrote (on Friday, 03 September 2010, 03:05 PM +0200): i have a problem. I'm an applications developer (zend framework based) since 2 years. I'm italian. Well. Now

[fw-general] Performance and Example of Enterprice Applications

2010-09-03 Thread info
Hi friends, i have a problem. I'm an applications developer (zend framework based) since 2 years. I'm italian. Well. Now i'm working since 2 days in a software house that want to change its mode to approch at software development. The goal of the factory is develop software more manageable and

[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

[fw-general] Zend_Controller_Router_Route: Could not find a translator

2010-06-02 Thread info
I am developing a multilanguage application. In the bootstrap there is the routes setup: protected function _initRoutes() { $this-bootstrap('frontController'); $router = $this-frontController-getRouter(); // PAGES ROUTE $page = new

[fw-general] Zend_Navigation question?

2010-04-21 Thread info
Hi, i am using zend-navigation to render my menu but the html template i am using has a span inside a like this: ul li a href=# class=active spanHome/span /a /li li a href=# spanContact/span /a /li . . /ul Is possible generate this html

[fw-general] Get View object inside a controller plugin

2010-03-30 Thread info
Hi, how i can get the view object from a controller plugin? Now i put Zend_View in the Registry during the bootstrap, but i am asking myself if exists a better method. Antonio

[fw-general] Find Route from a generic URL?

2010-03-10 Thread info
Hi, i need a way to get the route name and the params from an Url of the application. For example, if i have the following route... $page = new Zend_Controller_Router_Route( '/:ident', array( 'module' = 'core', 'controller' = 'pagine', 'action' = 'view',

[fw-general] Generate complex html in ViewHelper

2010-03-01 Thread info
Hi, i need to generate complex html in some viewHelpers. Now i am using heredoc notation but i am looking for a best solution. Some tips? Here is an example of a viewHelper i am using: ?php class Zend_View_Helper_EditorPagineTesti extends Zend_View_Helper_Abstract { public function

[fw-general] Multilanguage Router

2010-02-17 Thread info
I am looking for a good solution for multilanguage sites. I found different approaches: http://www.zendcasts.com/introducing-zend_translate/2009/11/ http://www.m4d3l-network.com/2009/06/29/add-language-route-to-your-zend-framework-project/

Re: [fw-general] encoding problem in ajax request

2010-02-04 Thread info
My problem is with ajax requests that must return html and not JSON. So, if i receive a string from POST like La vita è bella and save it into DB without apply utf8_decode i'll get a string like La vita ù bella. I'm looking for an automatically method or best practise to deal with it.

[fw-general] encoding problem in ajax request

2010-02-03 Thread info
Hi, I am italian and so i use ISO-8859-1 encoding to support accented character (à è ì ò ù). In a controller i use ajaxContext for some actions. In these actions i need to apply utf8_decode for all text fields in POST otherwise the accented characters become like è à ì ù à in the DB.