Login | Register For Free | Help
Search for: (Advanced)

Mailing List Archive: Catalyst: Users

fastcgi script returns 404

 

 

Catalyst users RSS feed   Index | Next | Previous | View Threaded


rdormer at myartplot

Sep 22, 2011, 1:51 PM

Post #1 of 11 (389 views)
Permalink
fastcgi script returns 404

Hello all,

I have a catalyst installation that I'm bringing up from scratch in a new
environment. I've decided to go with lighttpd / fastcgi as the web server.
When running the server script (the project is named map, so it's the
map_server.pl script), pages seem to come up just fine. However, when I
start lighttpd, and run the map_fastcgi.pl script with the following command
line:

./script/map_fastcgi.pl --listen 127.0.0.1:9000 --nproc 5 --keeperr 2

It seems that only the index page of the site is served properly - any other
link that I click on just results in a 404. So it seems that I am doing
something wrong with fastcgi. Can anyone recommend what I need to do
differently?

For informational purposes - I run lighttpd with the following configuration
file:

server.document-root = "/home/mapper/artplot/root/"
server.modules += ( "mod_fastcgi" )
server.port = 80

server.username = "mapper"
server.groupname = "mapper"

mimetype.assign = (
".htm" => "text/html",
".html" => "text/html",
".txt" => "text/plain",
".jpg" => "image/jpeg",
".png" => "image/png"
)

static-file.exclude-extensions = ( ".pm", ".pl", ".conf" )

fastcgi.server = ("" =>
((
"host" => "127.0.0.1",
"port" => 9000,
))
)


--


--
Main Number - (617) 752-1714
http://www.MyArtPlot.com
All-in-one empowerment platform for the art industry and profession -
complete with social, professional, and commercial power.

MyArtPlot, LLC
Attn: General Mail
P.O. Box 960812
Boston, MA 02196

Please note that this e-mail contains information that may be confidential
and proprietary. It is to be read and used solely by the intended
recipient(s). MyArtPlot, LLC and its affiliates retain all proprietary
rights that they may have in the information. If you are not an intended
recipient, please notify us immediately by reply e-mail and please delete
this e-mail (including any attachments hereto) immediately without reading,
disseminating, distributing or copying. Cheers & Thank you.


brainbuz at brainbuz

Sep 22, 2011, 2:48 PM

Post #2 of 11 (382 views)
Permalink
RE: fastcgi script returns 404 [In reply to]

I recommend Starman over fastcgi. I never had an easy time with fastcgi, and when I finally gave starman a shot it was surprisingly painless, it was pretty easy to make an upstart job out of, and I can ditch mod_perl. I have no experience with lighthttpd, but with Apache a simple ProxyPass or ReWriteRule[P] is the only non-boilerplate directive needed.


From: Robert Dormer [mailto:rdormer [at] myartplot]
Sent: Thursday, September 22, 2011 4:51 PM
To: catalyst [at] lists
Subject: [Catalyst] fastcgi script returns 404

Hello all,

I have a catalyst installation that I'm bringing up from scratch in a new environment. I've decided to go with lighttpd / fastcgi as the web server. When running the server script (the project is named map, so it's the map_server.pl<http://map_server.pl> script), pages seem to come up just fine. However, when I start lighttpd, and run the map_fastcgi.pl<http://map_fastcgi.pl> script with the following command line:

./script/map_fastcgi.pl<http://map_fastcgi.pl> --listen 127.0.0.1:9000<http://127.0.0.1:9000> --nproc 5 --keeperr 2

It seems that only the index page of the site is served properly - any other link that I click on just results in a 404. So it seems that I am doing something wrong with fastcgi. Can anyone recommend what I need to do differently?

For informational purposes - I run lighttpd with the following configuration file:

server.document-root = "/home/mapper/artplot/root/"
server.modules += ( "mod_fastcgi" )
server.port = 80

server.username = "mapper"
server.groupname = "mapper"

mimetype.assign = (
".htm" => "text/html",
".html" => "text/html",
".txt" => "text/plain",
".jpg" => "image/jpeg",
".png" => "image/png"
)

static-file.exclude-extensions = ( ".pm", ".pl", ".conf" )

fastcgi.server = ("" =>
((
"host" => "127.0.0.1",
"port" => 9000,
))
)


--


--
Main Number - (617) 752-1714
http://www.MyArtPlot.com
All-in-one empowerment platform for the art industry and profession - complete with social, professional, and commercial power.

MyArtPlot, LLC
Attn: General Mail
P.O. Box 960812
Boston, MA 02196

Please note that this e-mail contains information that may be confidential and proprietary. It is to be read and used solely by the intended recipient(s). MyArtPlot, LLC and its affiliates retain all proprietary rights that they may have in the information. If you are not an intended recipient, please notify us immediately by reply e-mail and please delete this e-mail (including any attachments hereto) immediately without reading, disseminating, distributing or copying. Cheers & Thank you.


jorge.gonzalez at daikon

Sep 23, 2011, 12:17 AM

Post #3 of 11 (379 views)
Permalink
Re: fastcgi script returns 404 [In reply to]

I fully support John regarding Starman, I got to know it through some
Catalyst IRC guru and have never looked back since.

I would add a special module: Plugin::SmartURI, configured with
"disposition: relative" directive. This module makes relocating your app
URL (say from http://myhost/ to http://myhost/app1/) a trivial thing,
just from the Apache configuration (provided all URLs in your app are
always generated via "uri_for" method).

Best regards
J.

El 22/09/11 23:48, John Karr escribi贸:
>
> I recommend Starman over fastcgi. I never had an easy time with
> fastcgi, and when I finally gave starman a shot it was surprisingly
> painless, it was pretty easy to make an upstart job out of, and I can
> ditch mod_perl. I have no experience with lighthttpd, but with Apache
> a simple ProxyPass or ReWriteRule[P] is the only non-boilerplate
> directive needed.
>
> *From:*Robert Dormer [mailto:rdormer [at] myartplot]
> *Sent:* Thursday, September 22, 2011 4:51 PM
> *To:* catalyst [at] lists
> *Subject:* [Catalyst] fastcgi script returns 404
>
> Hello all,
>
> I have a catalyst installation that I'm bringing up from scratch in a
> new environment. I've decided to go with lighttpd / fastcgi as the
> web server. When running the server script (the project is named map,
> so it's the map_server.pl <http://map_server.pl> script), pages seem
> to come up just fine. However, when I start lighttpd, and run the
> map_fastcgi.pl <http://map_fastcgi.pl> script with the following
> command line:
>
> ./script/map_fastcgi.pl <http://map_fastcgi.pl> --listen
> 127.0.0.1:9000 <http://127.0.0.1:9000> --nproc 5 --keeperr 2
>
> It seems that only the index page of the site is served properly - any
> other link that I click on just results in a 404. So it seems that I
> am doing something wrong with fastcgi. Can anyone recommend what I
> need to do differently?
>
> For informational purposes - I run lighttpd with the following
> configuration file:
>
> server.document-root = "/home/mapper/artplot/root/"
> server.modules += ( "mod_fastcgi" )
> server.port = 80
>
> server.username = "mapper"
> server.groupname = "mapper"
>
> mimetype.assign = (
> ".htm" => "text/html",
> ".html" => "text/html",
> ".txt" => "text/plain",
> ".jpg" => "image/jpeg",
> ".png" => "image/png"
> )
>
> static-file.exclude-extensions = ( ".pm", ".pl", ".conf" )
>
> fastcgi.server = ("" =>
> ((
> "host" => "127.0.0.1",
> "port" => 9000,
> ))
> )
>
>
> --
>
>
> --
> Main Number - (617) 752-1714
> http://www.MyArtPlot.com
> All-in-one empowerment platform for the art industry and profession -
> complete with social, professional, and commercial power.
>
> MyArtPlot, LLC
> Attn: General Mail
> P.O. Box 960812
> Boston, MA 02196
>
> Please note that this e-mail contains information that may be
> confidential and proprietary. It is to be read and used solely by the
> intended recipient(s). MyArtPlot, LLC and its affiliates retain all
> proprietary rights that they may have in the information. If you are
> not an intended recipient, please notify us immediately by reply
> e-mail and please delete this e-mail (including any attachments
> hereto) immediately without reading, disseminating, distributing or
> copying. Cheers & Thank you.
>
>
>
> _______________________________________________
> List: Catalyst [at] lists
> Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
> Searchable archive: http://www.mail-archive.com/catalyst [at] lists/
> Dev site: http://dev.catalyst.perl.org/


rdormer at myartplot

Sep 23, 2011, 4:45 PM

Post #4 of 11 (375 views)
Permalink
Re: fastcgi script returns 404 [In reply to]

Am I to understand that starman is a drop-in replacement for the fastcgi
script, then? I've tried following the instructions from
http://wiki.catalystframework.org/wiki/deployment/perlbal-starman-psgi with
little luck. It seems the provided PSGI script doesn't play well with
Catalyst...


jorge.gonzalez at daikon

Sep 24, 2011, 12:41 AM

Post #5 of 11 (379 views)
Permalink
Re: fastcgi script returns 404 [In reply to]

This is my PSGI script (script/myapp.psgi):

use strict;
use MyApp;
MyApp->setup_engine('PSGI');
my $app = sub { MyApp->run(@_) };

And this is my apache configuration for reverse proxying to Starman:

ProxyPass / http://localhost:3000/
ProxyPassReverse / http://localhost:3000/
<Directory /home/myapp/MyApp/root>
Options FollowSymLinks
AllowOverride None
</Directory>
Alias /css/ /home/myapp/MyApp/root/css/
Alias /img/ /home/myapp/MyApp/root/img/
Alias /js/ /home/myapp/MyApp/root/js/

(I know this could be better :-)

For running the app from the main app directory:

starman -Ilib script/myapp.psgi -p 3000 --workers 3

No problems so far, using the same configuration in 4 applications in
heavy production use.

Regards
J.

El 24/09/11 01:45, Robert Dormer escribi贸:
> Am I to understand that starman is a drop-in replacement for the
> fastcgi script, then? I've tried following the instructions from
> http://wiki.catalystframework.org/wiki/deployment/perlbal-starman-psgi
> with little luck. It seems the provided PSGI script doesn't play well
> with Catalyst...
>
>
> _______________________________________________
> List: Catalyst [at] lists
> Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
> Searchable archive: http://www.mail-archive.com/catalyst [at] lists/
> Dev site: http://dev.catalyst.perl.org/


ret at mac

Sep 24, 2011, 4:23 AM

Post #6 of 11 (378 views)
Permalink
Re: fastcgi script returns 404 [In reply to]

On 24/09/2011, at 5:41 PM, Jorge Gonzalez wrote:

> And this is my apache configuration for reverse proxying to Starman:
>
> ProxyPass / http://localhost:3000/
> ProxyPassReverse / http://localhost:3000/
> <Directory /home/myapp/MyApp/root>
> Options FollowSymLinks
> AllowOverride None
> </Directory>
> Alias /css/ /home/myapp/MyApp/root/css/
> Alias /img/ /home/myapp/MyApp/root/img/
> Alias /js/ /home/myapp/MyApp/root/js/
>
> (I know this could be better :-)
>
> For running the app from the main app directory:
>
> starman -Ilib script/myapp.psgi -p 3000 --workers 3
>
> No problems so far, using the same configuration in 4 applications in heavy production use.
>
> Regards
> J.
>

There must be some Rewrite Rules in the mix here as well, surely? I'm trying to get this set-up going, but am having two issues:

- All generated links refer to localhost:3000
- The Catalyst app is still attempting to serve all the static content

I would very much like to get this arrangement going, because under mod-perl, I'm finding I'm getting some outrageously long response times any time an apache child has to be respawned.

cheers
RET

_______________________________________________
List: Catalyst [at] lists
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst [at] lists/
Dev site: http://dev.catalyst.perl.org/


asjo at koldfront

Sep 24, 2011, 4:58 AM

Post #7 of 11 (374 views)
Permalink
Re: fastcgi script returns 404 [In reply to]

On Sat, 24 Sep 2011 21:23:44 +1000, Richard wrote:

> I would very much like to get this arrangement going, because under
> mod-perl, I'm finding I'm getting some outrageously long response
> times any time an apache child has to be respawned.

Standard operating proceduce is usually to tell Apache to run a fixed
number of children when running mod_perl. (Just like you start a fixed
number of fastCGI-processes, etc.)


Best regards,

Adam

--
"But after all, who is? At least in our case - no one Adam Sj鴊ren
is such a great musician. But we are stubborn." asjo [at] koldfront

_______________________________________________
List: Catalyst [at] lists
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst [at] lists/
Dev site: http://dev.catalyst.perl.org/


rdormer at myartplot

Sep 24, 2011, 2:48 PM

Post #8 of 11 (379 views)
Permalink
Re: Re: fastcgi script returns 404 [In reply to]

Thanks all for your replies. I actually have gotten FastCGI/lighttpd
working. Turns out I had to disable the "check-local" option for lighttpd
in the FastCGI configuration section. Now it's working just fine.

On Sat, Sep 24, 2011 at 7:58 AM, Adam Sj鴊ren <asjo [at] koldfront> wrote:

> On Sat, 24 Sep 2011 21:23:44 +1000, Richard wrote:
>
> > I would very much like to get this arrangement going, because under
> > mod-perl, I'm finding I'm getting some outrageously long response
> > times any time an apache child has to be respawned.
>
> Standard operating proceduce is usually to tell Apache to run a fixed
> number of children when running mod_perl. (Just like you start a fixed
> number of fastCGI-processes, etc.)
>
>
> Best regards,
>
> Adam
>
> --
> "But after all, who is? At least in our case - no one Adam Sj鴊ren
> is such a great musician. But we are stubborn." asjo [at] koldfront
>
> _______________________________________________
> List: Catalyst [at] lists
> Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
> Searchable archive:
> http://www.mail-archive.com/catalyst [at] lists/
> Dev site: http://dev.catalyst.perl.org/
>



--


--
Main Number - (617) 752-1714
http://www.MyArtPlot.com
All-in-one empowerment platform for the art industry and profession -
complete with social, professional, and commercial power.

MyArtPlot, LLC
Attn: General Mail
P.O. Box 960812
Boston, MA 02196

Please note that this e-mail contains information that may be confidential
and proprietary. It is to be read and used solely by the intended
recipient(s). MyArtPlot, LLC and its affiliates retain all proprietary
rights that they may have in the information. If you are not an intended
recipient, please notify us immediately by reply e-mail and please delete
this e-mail (including any attachments hereto) immediately without reading,
disseminating, distributing or copying. Cheers & Thank you.


jorge.gonzalez at daikon

Sep 25, 2011, 11:32 PM

Post #9 of 11 (371 views)
Permalink
Re: fastcgi script returns 404 [In reply to]

El 24/09/11 13:23, Richard Thomas escribi贸:
> On 24/09/2011, at 5:41 PM, Jorge Gonzalez wrote:
>
>> And this is my apache configuration for reverse proxying to Starman:
>>
>> ProxyPass / http://localhost:3000/
>> ProxyPassReverse / http://localhost:3000/
>> <Directory /home/myapp/MyApp/root>
>> Options FollowSymLinks
>> AllowOverride None
>> </Directory>
>> Alias /css/ /home/myapp/MyApp/root/css/
>> Alias /img/ /home/myapp/MyApp/root/img/
>> Alias /js/ /home/myapp/MyApp/root/js/
>>
>> (I know this could be better :-)
>>
>> For running the app from the main app directory:
>>
>> starman -Ilib script/myapp.psgi -p 3000 --workers 3
>>
>> No problems so far, using the same configuration in 4 applications in heavy production use.
>>
>> Regards
>> J.
>>
> There must be some Rewrite Rules in the mix here as well, surely? I'm trying to get this set-up going, but am having two issues:
>
> - All generated links refer to localhost:3000

You can avoid this by using Plugin::SmartURI in "relative" mode, AND
assuring ALL of your URLs in your app are generated via uri_for method.
No need for rewrite rules in Apache.

> - The Catalyst app is still attempting to serve all the static content
Sorry, I pasted some prior Apache configuration version by mistake!
These are my real "Alias" sections for Apache:

Alias /css/ /home/myapp/MyApp/root/css/
<Location "/css">
SetHandler default-handler
</Location>

Alias /img/ /home/myapp/MyApp/root/img/
<Location "/img">
SetHandler default-handler
</Location>

Alias /js/ /home/myapp/MyApp/root/js/
<Location "/js">
SetHandler default-handler
</Location>

Hope it works for you.
Regards
J.


_______________________________________________
List: Catalyst [at] lists
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst [at] lists/
Dev site: http://dev.catalyst.perl.org/


alexander.hartmaier at t-systems

Oct 4, 2011, 12:38 AM

Post #10 of 11 (318 views)
Permalink
Re: fastcgi script returns 404 [In reply to]

Static files should be in /root/static and configured to be served static.

Am 2011-09-26 08:32, schrieb Jorge Gonzalez:
> El 24/09/11 13:23, Richard Thomas escribi贸:
>> On 24/09/2011, at 5:41 PM, Jorge Gonzalez wrote:
>>
>>> And this is my apache configuration for reverse proxying to Starman:
>>>
>>> ProxyPass / http://localhost:3000/
>>> ProxyPassReverse / http://localhost:3000/
>>> <Directory /home/myapp/MyApp/root>
>>> Options FollowSymLinks
>>> AllowOverride None
>>> </Directory>
>>> Alias /css/ /home/myapp/MyApp/root/css/
>>> Alias /img/ /home/myapp/MyApp/root/img/
>>> Alias /js/ /home/myapp/MyApp/root/js/
>>>
>>> (I know this could be better :-)
>>>
>>> For running the app from the main app directory:
>>>
>>> starman -Ilib script/myapp.psgi -p 3000 --workers 3
>>>
>>> No problems so far, using the same configuration in 4 applications
>>> in heavy production use.
>>>
>>> Regards
>>> J.
>>>
>> There must be some Rewrite Rules in the mix here as well, surely? I'm
>> trying to get this set-up going, but am having two issues:
>>
>> - All generated links refer to localhost:3000
>
> You can avoid this by using Plugin::SmartURI in "relative" mode, AND
> assuring ALL of your URLs in your app are generated via uri_for
> method. No need for rewrite rules in Apache.
>
>> - The Catalyst app is still attempting to serve all the static content
> Sorry, I pasted some prior Apache configuration version by mistake!
> These are my real "Alias" sections for Apache:
>
> Alias /css/ /home/myapp/MyApp/root/css/
> <Location "/css">
> SetHandler default-handler
> </Location>
>
> Alias /img/ /home/myapp/MyApp/root/img/
> <Location "/img">
> SetHandler default-handler
> </Location>
>
> Alias /js/ /home/myapp/MyApp/root/js/
> <Location "/js">
> SetHandler default-handler
> </Location>
>
> Hope it works for you.
> Regards
> J.
>
>
> _______________________________________________
> List: Catalyst [at] lists
> Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
> Searchable archive:
> http://www.mail-archive.com/catalyst [at] lists/
> Dev site: http://dev.catalyst.perl.org/

*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*
T-Systems Austria GesmbH Rennweg 97-99, 1030 Wien
Handelsgericht Wien, FN 79340b
*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*
Notice: This e-mail contains information that is confidential and may be privileged.
If you are not the intended recipient, please notify the sender and then
delete this e-mail immediately.
*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*

_______________________________________________
List: Catalyst [at] lists
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst [at] lists/
Dev site: http://dev.catalyst.perl.org/


jorge.gonzalez at daikon

Oct 4, 2011, 2:22 AM

Post #11 of 11 (321 views)
Permalink
Re: fastcgi script returns 404 [In reply to]

I know. That's why I wrote "I know this could be better" in my first
email. I guess everyone has his/her own low priority legacy-code-to-fix.....

Regards
J.

El 04/10/11 09:38, Alexander Hartmaier escribi贸:
> Static files should be in /root/static and configured to be served
> static.
>
> Am 2011-09-26 08:32, schrieb Jorge Gonzalez:
>> El 24/09/11 13:23, Richard Thomas escribi贸:
>>> On 24/09/2011, at 5:41 PM, Jorge Gonzalez wrote:
>>>
>>>> And this is my apache configuration for reverse proxying to Starman:
>>>>
>>>> ProxyPass / http://localhost:3000/
>>>> ProxyPassReverse / http://localhost:3000/
>>>> <Directory /home/myapp/MyApp/root>
>>>> Options FollowSymLinks
>>>> AllowOverride None
>>>> </Directory>
>>>> Alias /css/ /home/myapp/MyApp/root/css/
>>>> Alias /img/ /home/myapp/MyApp/root/img/
>>>> Alias /js/ /home/myapp/MyApp/root/js/
>>>>
>>>> (I know this could be better :-)
>>>>
>>>> For running the app from the main app directory:
>>>>
>>>> starman -Ilib script/myapp.psgi -p 3000 --workers 3
>>>>
>>>> No problems so far, using the same configuration in 4 applications
>>>> in heavy production use.
>>>>
>>>> Regards
>>>> J.
>>>>
>>> There must be some Rewrite Rules in the mix here as well, surely? I'm
>>> trying to get this set-up going, but am having two issues:
>>>
>>> - All generated links refer to localhost:3000
>>
>> You can avoid this by using Plugin::SmartURI in "relative" mode, AND
>> assuring ALL of your URLs in your app are generated via uri_for
>> method. No need for rewrite rules in Apache.
>>
>>> - The Catalyst app is still attempting to serve all the static content
>> Sorry, I pasted some prior Apache configuration version by mistake!
>> These are my real "Alias" sections for Apache:
>>
>> Alias /css/ /home/myapp/MyApp/root/css/
>> <Location "/css">
>> SetHandler default-handler
>> </Location>
>>
>> Alias /img/ /home/myapp/MyApp/root/img/
>> <Location "/img">
>> SetHandler default-handler
>> </Location>
>>
>> Alias /js/ /home/myapp/MyApp/root/js/
>> <Location "/js">
>> SetHandler default-handler
>> </Location>
>>
>> Hope it works for you.
>> Regards
>> J.
>>
>>
>> _______________________________________________
>> List: Catalyst [at] lists
>> Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
>> Searchable archive:
>> http://www.mail-archive.com/catalyst [at] lists/
>> Dev site: http://dev.catalyst.perl.org/
>
> *"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*
>
> T-Systems Austria GesmbH Rennweg 97-99, 1030 Wien
> Handelsgericht Wien, FN 79340b
> *"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*
>
> Notice: This e-mail contains information that is confidential and may
> be privileged.
> If you are not the intended recipient, please notify the sender and then
> delete this e-mail immediately.
> *"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*
>
>
> _______________________________________________
> List: Catalyst [at] lists
> Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
> Searchable archive:
> http://www.mail-archive.com/catalyst [at] lists/
> Dev site: http://dev.catalyst.perl.org/


_______________________________________________
List: Catalyst [at] lists
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst [at] lists/
Dev site: http://dev.catalyst.perl.org/

Catalyst users RSS feed   Index | Next | Previous | View Threaded
 
 


Interested in having your list archived? Contact Gossamer Threads
 
  Web Applications & Managed Hosting Powered by Gossamer Threads Inc.