Re: [Catalyst] Re: Running MyAppB under MyAppA (only for developers)

2007-08-02 Thread Oleg Pronin
If someone need te attach one application to another i will send the plugin's code (it works only with several restriction to the application being attached). ___ List: Catalyst@lists.rawmode.org Listinfo:

Re: [Catalyst] Re: Running MyAppB under MyAppA (only for developers)

2007-08-02 Thread Oleg Pronin
I solved this problem recently. But only for my case. To enable uniadm for your project you just need to do use Catalyst qw/Uniadm/; and possibly. __PACKAGE__-config-{uniadm} = { prefix = 'admin', }; and it will be available at yoursite/admin The plugin attaches all actions (changing

[Catalyst] Problems forwarding to view

2007-08-02 Thread Adeola Awoyemi
Hi all, I'm trying to use Catayst::View::XSLT and my end sub looks like this: # from MyApp::Controller::Root sub end : Private { my ( $c, $self ) = @_; $c-forward( $c-view('XSLT') ); } but when I make a request to the server I get an error: [error] Caught exception in

Re: [Catalyst] Problems forwarding to view

2007-08-02 Thread Brian Cassidy
Adeola Awoyemi wrote: # from MyApp::Controller::Root sub end : Private { my ( $c, $self ) = @_; $c-forward( $c-view('XSLT') ); } try: my( $self, $c ) = @_; -Brian ___ List: Catalyst@lists.rawmode.org Listinfo:

Re: [Catalyst] Problems forwarding to view

2007-08-02 Thread Peter Karman
Adeola Awoyemi wrote on 8/2/07 6:12 AM: Hi all, I'm trying to use Catayst::View::XSLT and my end sub looks like this: # from MyApp::Controller::Root sub end : Private { my ( $c, $self ) = @_; $c-forward( $c-view('XSLT') ); } my ($self, $c) = @_; you got 'em reversed. -- Peter

Re: [Catalyst] Problems forwarding to view

2007-08-02 Thread Adeola Awoyemi
Brian Cassidy wrote: Adeola Awoyemi wrote: # from MyApp::Controller::Root sub end : Private { my ( $c, $self ) = @_; $c-forward( $c-view('XSLT') ); } try: my( $self, $c ) = @_; Doh! How could I have missed that one?! I feel sheepish ;-) Thanks Brian Peter. -- Creative Developer

[Catalyst] Multiple FastCGI app servers with Apache2

2007-08-02 Thread Tobias Kremer
Does anyone know if it's possible to distribute requests to multiple external FastCGI servers with Apache2 + mod_fastcgi similar to the round-robin load-balancing approach lighttpd provides? I have this large legacy app running on mod_perl behind an apache2 reverse proxy where I'd like to plug in

Re: [Catalyst] Multiple FastCGI app servers with Apache2

2007-08-02 Thread Adeola Awoyemi
Tobias Kremer wrote: Does anyone know if it's possible to distribute requests to multiple external FastCGI servers with Apache2 + mod_fastcgi similar to the round-robin load-balancing approach lighttpd provides? I have this large legacy app running on mod_perl behind an apache2 reverse proxy

Re: [Catalyst] Session trouble

2007-08-02 Thread Bill Moseley
I'm still having plenty of session trouble. Maybe it's just related to the dev server. I'm implementing a remember me, but once a cookie is written (rather is returned in the request) a new cookie is never sent. Is there a way to force a cookie? No, Session::DynamicExpiry doesn't help. Also,