Re: [Catalyst] Application stallling problem

2009-05-06 Thread kakimoto
hi, all,

 I found that the problem again.


1) I ran my application with DBIC_TRACE=1
ie DBIC_TRACE=1 myapp_server.pl -d 

2) When I clicked on a link which shows me all the subscription listings
belonging to an agent, the application loads the page just fine (and
quickly)

3) I then moved on to click a link within the page which shows the
details of a given listing.

4 ) Application stalls

 What I have done:
- Opened up new terminal 
- Ran top
- Observed that my server process is taking up 60% of the CPU
- load average is  1.31, 1.00, 0.81
- Here's what the catalyst debug screen looks like:


-+--'

You can connect to your server at
http://lginsurance.com.au.hosting24.com.au:3000
SELECT me.id, me.user_id, me.subscriptions_id, me.name,
me.rea_agent_code, me.domain_agent_code, me.logo_file, me.logo_url,
me.active_from, me.active_to, me.comments, me.created_by, me.updated_by,
me.created_on, me.updated_on, subscription.id, subscription.type,
subscription.name, subscription.price, subscription.currency,
subscription.property_type_access, subscription.comments,
subscription.created_by, subscription.updated_by,
subscription.created_on, subscription.updated_on FROM user_subscriptions
me  JOIN subscriptions subscription ON subscription.id =
me.subscriptions_id WHERE ( user_id = ? ): 'test_agent'
SELECT COUNT( * ) FROM user_subscriptions me  JOIN subscriptions
subscription ON subscription.id = me.subscriptions_id WHERE ( user_id =
? ): 'test_agent'
[debug] GET request for users/subscriptions/ from 123.243.50.59
[debug] Found sessionid b061fb50b6799c8e1deb11ecd8f5011b6fc99244 in cookie
[debug] Restored session b061fb50b6799c8e1deb11ecd8f5011b6fc99244
[debug] Path is users/subscriptions
[debug]  Root.pm - Begin
[debug]  Root.pm - auto and path is users/subscriptions/
[debug] Rendering template agents/subscriptions/list.tt2
[debug] Applying HTML page layout wrappers to agents/subscriptions/list.tt2


Any ideas?

 I suspected postgres to be the culprit but it's not taking any
percentage of load on the CPU (from reference to 'top').




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


Re: [Catalyst] Application stallling problem

2009-05-04 Thread kakimoto

 Catalyst 5.8 doesn't do this.  If you're using 5.8 that's not the
 problem.


hello, Ian,

   thanks for the reply. I have upgraded my catalyst runtime to version
5.8. I will report to the mailing list if this problem comes up again.

  So far, I have observed it once (with catalyst runtime 5.8). Alas, I
was't running myapp_server.pl with the -d flag (as per Kieren Diment's
recommendation)  to see where the problem brewed from.

 thank you

K. akimoto

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


Re: [Catalyst] Application stallling problem

2009-05-04 Thread Ian Wells
2009/5/4  kakim...@tpg.com.au:
 Kieren-
 try running your server under the debugger i.e. script/myapp_server.pl
 -d and hit control-c where the application stalls to see where in the
 code it's stalling.

 Hello, Kieren,
  Good morning. Strangely I tried it and it seems to be acting right.

Another possibility is the one that was mentioned a few days ago - on
Catalyst 5.7, the test server does a reverse DNS lookup on clients.
With a decent DNS setup this should be quick enough for test purposes
(though you'd never do it in production) but with various test setups,
particularly virtual machines in my experience, a broken DNS setup can
take a long time to decide that the lookup won't work.

Assuming your client address is 1.2.3.4, how long does 'nslookup
1.2.3.4' take on your server?

Catalyst 5.8 doesn't do this.  If you're using 5.8 that's not the problem.

-- 
Ian.

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


Re: [Catalyst] Application stallling problem

2009-05-03 Thread kakimoto
hi Kieren and everyone:)

 I have sent through my templates in my previous reply.

 Could I please have some feedback when you are ready?

Again, thank you everyone for your help !  :)



K. akimoto

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


Re: [Catalyst] Application stallling problem

2009-05-03 Thread Kieren Diment
try running your server under the debugger i.e. script/myapp_server.pl  
-d and hit control-c where the application stalls to see where in the  
code it's stalling.


On 04/05/2009, at 10:38 AM, kakim...@tpg.com.au wrote:


hi Kieren and everyone:)

I have sent through my templates in my previous reply.

Could I please have some feedback when you are ready?

Again, thank you everyone for your help !  :)



K. akimoto

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




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


Re: [Catalyst] Application stallling problem

2009-05-03 Thread kakimoto
Kieren-
try running your server under the debugger i.e. script/myapp_server.pl
-d and hit control-c where the application stalls to see where in the
code it's stalling.

Hello, Kieren,
 Good morning. Strangely I tried it and it seems to be acting right. I
will keep your instructions handy and if I spot the problem again, I
will post to the thread.

 Thank you:)

K. akimoto

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


Re: [Catalyst] Application stallling problem

2009-04-11 Thread kakimoto
Hello, Kieren,

Good morning. Thank you for your help. I have the templates below. 
My apologies if it is too long but I really need some pointers here.

The main file, home/kakimoto/projects/myApp/root/src/index.tt2 decides
if we show the general static content if the user is not logged in. If
the user is logged in, we display the menu.

My problem happens site wide be it the user is logged in or not.
 For example, clicking on either of the static page links, Test Drive,
About us and so forth (within 10 seconds) causes the myapp_server.pl
screen in my terminal to not do anything (ie it freezes up).


is it true that myapp_server.pl is not good enough to handle requests
that are established within 10 seconds or less? Or even double clicks?

Thank you for your help. Any comment would be appreaciated.





1) /home/kakimoto/projects/myApp/root/src/index.tt2
=

[% IF Catalyst.user_exists %]
[% PROCESS menu.tt2 %]
[% ELSE %]
!--
User has not logged in. 
--

!--
   this section displays the general site page  (ie the general contents)
--
[% END %]


2) /home/kakimoto/projects/myApp/root/src/sidebar.tt2


!-- Sidebar code [start] --
a href=/menu class=sidebar
Main 
/a
br/
a href=/users/profile class=sidebar
Profile
/a
br/
a href=/users/subscriptions class=sidebar
Subscriptions
/a
br/
a href=/listings/search class=sidebar
Search Listings
/a
br/
a href=/users/reporting class=sidebar
Reporting
/a
br/
a href=/users/export_logs class=sidebar
Export logs
/a
!-- Sidebar code [end] --



3) /home/kakimoto/projects/myApp/root/src/agents/create.tt2


[%  USE Dumper(Indent=1) -%]

[% META title = 'Sign up' %]
!-- 
Load agent form [start]
--

h1 [% page_title %] /h1

[% IF signup_success and message %]
div id=message
[% message %]
/div
[% ELSE %] 
[%
#  target_action =
Catalyst.uri_for('/sign_up');
PROCESS 'agents/form.tt2';
%] 
[% END %]
!--
Load agent form [end]
--

4) /home/kakimoto/projects/myApp/root/src/agents/form.tt2


[%  USE Dumper(Indent=1) -%]


[% META title = 'Sign up/agent profile' %]

[% element_requires_validation = 'font
id=requires_validation*/font' %]

[% IF message %]
div id=message
[% message %]
/div

[% END %]
pre
[% #Dumper.dump(errors) %] 
/prE

[% IF errors %]
br/
div id=error
ul
[% FOREACH error IN errors %]
li[% error %]/li
[% END %]
/ul
/div
hr/
[% END %]
form method=post action=[% target_action
%] id=agent_profile_form name=agent_profile_form
table border=0 cellspacing=3
[% IF sign_up %]
tr
td valign=top
h2 Login Credentials/h2
[% PROCESS
agents/login_credentials.tt2 %]
/td
/tr
[% END %]

tr
td valign=top
h2Company/h2
[% PROCESS
agents/company_details.tt2 %]
/td
/tr

tr
td valign=top
table
tr
td
h2Address/h2
   

Re: [Catalyst] Application stallling problem

2009-04-09 Thread kakimoto
hello , everyone :)

   good morning. Happy eAster!

any more ideas?

thank you


Quoting kakim...@tpg.com.au:

 Hello, Kieren,
 
   thank you for your feedback.
 
 1) CGI Template Toolkit plugin - not using it
 
 I do not think that I am using the CGI Template Toolkit plugin.
 I have only been using Template Toolkit as prescribed in the
 Catalyst
 tutorials.
 
 in my file, /myAppl/lib/myApp/View/HTML.pm, I have the line,
  TEMPLATE_EXTENSION = '.tt2'
 
 
 May I ask on what sort of CGI Template Toolkit plugin are you
 referring
 to specifically?
 
 
 2) Currently having my own ubuntu virtual server to deploy my
 application.
 
 
   - Any good recommendations?
- Would using myapp_server.pl cut for an application which has say
 50
 users logged in at the same time?
 
 Please pardon my lack of knowledge for I am only a developer and
 have
 little experience in the systems administation and tuning sector.
 
 Thank you, all.
 
 
 
 
 
 Quoting Kieren Diment kie...@diment.org:
 
  Are you using the CGI Template Toolkit plugin thingy?  Don't.  This
 
  
  will cause your problem as described.  If not you've given us  
  insufficient information
  
  Fastcgi is easier to setup on shared hosting, and has some  
  advantages.  CATALYST_ENGINE=HTTP::Prefork script/myapp_server.pl
 is 
  
  pretty simple and can be reverse proxied pretty easily.  Install  
  C::E::HTTP::Prefork from CPAN and give it a shot...
  
  On 09/04/2009, at 11:14 AM, kakim...@tpg.com.au wrote:
  
  
   hello
  
   good morning. The page which I access at first doesn't require
 any
   database request. It's just pretty much a page that's generated
 by
   template toolkit and that's it.
  
   On the terminal which I am running the myapp_server.pl script, it
 
  
   seems
   to stall and not do anything when i put in another url path into
  the
   webbrowser and hit enter.
  
   Example:
  
  
   1) URL, www.lginsurance.com/signup is accessed
   2) URL, www.lginsurance.com/signup is accessed again by
  highlighting  
   the
   url on the web browser and hitting enter
   -- notice that on the terminal screen, the last line is  HTML-
 
   process
along with the time taken and stalls there
  
   Is this a problem you guys have?
  
  
  
   for production deployment, do many of you run myapp_server.pl or
   myapp_fastcgi.pl?
  
   Any comments please?
  
  
   thank you
  
  
   K. akimoto
  
  
  
 
 ___
 List: Catalyst@lists.scsys.co.uk
 Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
 Searchable archive:
 http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
 Dev site: http://dev.catalyst.perl.org/
 
 
 




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


Re: [Catalyst] Application stallling problem

2009-04-09 Thread Kieren Diment

Show us your template.


On 10/04/2009, at 11:22 AM, kakim...@tpg.com.au wrote:


hello , everyone :)

 good morning. Happy eAster!

any more ideas?

thank you


Quoting kakim...@tpg.com.au:


Hello, Kieren,

thank you for your feedback.

1) CGI Template Toolkit plugin - not using it

I do not think that I am using the CGI Template Toolkit plugin.
I have only been using Template Toolkit as prescribed in the
Catalyst
tutorials.

in my file, /myAppl/lib/myApp/View/HTML.pm, I have the line,
   TEMPLATE_EXTENSION = '.tt2'


May I ask on what sort of CGI Template Toolkit plugin are you
referring
to specifically?


2) Currently having my own ubuntu virtual server to deploy my
application.


- Any good recommendations?
 - Would using myapp_server.pl cut for an application which has say
50
users logged in at the same time?

Please pardon my lack of knowledge for I am only a developer and
have
little experience in the systems administation and tuning sector.

Thank you, all.





Quoting Kieren Diment kie...@diment.org:


Are you using the CGI Template Toolkit plugin thingy?  Don't.  This




will cause your problem as described.  If not you've given us
insufficient information

Fastcgi is easier to setup on shared hosting, and has some
advantages.  CATALYST_ENGINE=HTTP::Prefork script/myapp_server.pl

is


pretty simple and can be reverse proxied pretty easily.  Install
C::E::HTTP::Prefork from CPAN and give it a shot...

On 09/04/2009, at 11:14 AM, kakim...@tpg.com.au wrote:



hello

good morning. The page which I access at first doesn't require

any

database request. It's just pretty much a page that's generated

by

template toolkit and that's it.

On the terminal which I am running the myapp_server.pl script, it





seems
to stall and not do anything when i put in another url path into

the

webbrowser and hit enter.

Example:


1) URL, www.lginsurance.com/signup is accessed
2) URL, www.lginsurance.com/signup is accessed again by

highlighting

the
url on the web browser and hitting enter
-- notice that on the terminal screen, the last line is  HTML-



process

 along with the time taken and stalls there

Is this a problem you guys have?



for production deployment, do many of you run myapp_server.pl or
myapp_fastcgi.pl?

Any comments please?


thank you


K. akimoto





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








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



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


Re: [Catalyst] Application stallling problem

2009-04-08 Thread kakimoto

hello

 good morning. The page which I access at first doesn't require any
database request. It's just pretty much a page that's generated by
template toolkit and that's it.

On the terminal which I am running the myapp_server.pl script, it seems
to stall and not do anything when i put in another url path into the
webbrowser and hit enter.

Example:


1) URL, www.lginsurance.com/signup is accessed
2) URL, www.lginsurance.com/signup is accessed again by highlighting the
url on the web browser and hitting enter
-- notice that on the terminal screen, the last line is  HTML-process
 along with the time taken and stalls there

Is this a problem you guys have?



for production deployment, do many of you run myapp_server.pl or
myapp_fastcgi.pl?

Any comments please?


thank you


K. akimoto





Quoting Tomas Doran bobtf...@bobtfish.net:

 kakim...@tpg.com.au wrote:
  sorry, guys, some bad character encodings from my mail client.
  Here's the mail again:
 
  Any ideas??
 
 Not sure, but I think its something between the server you're using
 and 
 the browser - if you're getting the request table, then as far as the
 
 Catalyst server is aware, then it has passed a page to your browser,
 and 
 your browser hasn't requested another one..
 
 Probably trying to use tcpdump or a capturing proxy (parosproxy.org)
 to 
 try and take apart the requests/responses to work out whats going on
 
 would be helpful?
 
 Cheers
 t0m
 
 
 ___
 List: Catalyst@lists.scsys.co.uk
 Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
 Searchable archive:
 http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
 Dev site: http://dev.catalyst.perl.org/
 
 
 




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


Re: [Catalyst] Application stallling problem

2009-04-08 Thread Kieren Diment
Are you using the CGI Template Toolkit plugin thingy?  Don't.  This  
will cause your problem as described.  If not you've given us  
insufficient information


Fastcgi is easier to setup on shared hosting, and has some  
advantages.  CATALYST_ENGINE=HTTP::Prefork script/myapp_server.pl is  
pretty simple and can be reverse proxied pretty easily.  Install  
C::E::HTTP::Prefork from CPAN and give it a shot...


On 09/04/2009, at 11:14 AM, kakim...@tpg.com.au wrote:



hello

good morning. The page which I access at first doesn't require any
database request. It's just pretty much a page that's generated by
template toolkit and that's it.

On the terminal which I am running the myapp_server.pl script, it  
seems

to stall and not do anything when i put in another url path into the
webbrowser and hit enter.

Example:


1) URL, www.lginsurance.com/signup is accessed
2) URL, www.lginsurance.com/signup is accessed again by highlighting  
the

url on the web browser and hitting enter
-- notice that on the terminal screen, the last line is  HTML- 
process

 along with the time taken and stalls there

Is this a problem you guys have?



for production deployment, do many of you run myapp_server.pl or
myapp_fastcgi.pl?

Any comments please?


thank you


K. akimoto





Quoting Tomas Doran bobtf...@bobtfish.net:


kakim...@tpg.com.au wrote:

sorry, guys, some bad character encodings from my mail client.
Here's the mail again:



Any ideas??


Not sure, but I think its something between the server you're using
and
the browser - if you're getting the request table, then as far as the

Catalyst server is aware, then it has passed a page to your browser,
and
your browser hasn't requested another one..

Probably trying to use tcpdump or a capturing proxy (parosproxy.org)
to
try and take apart the requests/responses to work out whats going on

would be helpful?

Cheers
t0m


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








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



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


Re: [Catalyst] Application stallling problem

2009-04-08 Thread kakimoto
Hello, Kieren,

  thank you for your feedback.

1) CGI Template Toolkit plugin - not using it

I do not think that I am using the CGI Template Toolkit plugin.
I have only been using Template Toolkit as prescribed in the Catalyst
tutorials.

in my file, /myAppl/lib/myApp/View/HTML.pm, I have the line,
 TEMPLATE_EXTENSION = '.tt2'


May I ask on what sort of CGI Template Toolkit plugin are you referring
to specifically?


2) Currently having my own ubuntu virtual server to deploy my application.


  - Any good recommendations?
   - Would using myapp_server.pl cut for an application which has say 50
users logged in at the same time?

Please pardon my lack of knowledge for I am only a developer and have
little experience in the systems administation and tuning sector.

Thank you, all.





Quoting Kieren Diment kie...@diment.org:

 Are you using the CGI Template Toolkit plugin thingy?  Don't.  This 
 
 will cause your problem as described.  If not you've given us  
 insufficient information
 
 Fastcgi is easier to setup on shared hosting, and has some  
 advantages.  CATALYST_ENGINE=HTTP::Prefork script/myapp_server.pl is 
 
 pretty simple and can be reverse proxied pretty easily.  Install  
 C::E::HTTP::Prefork from CPAN and give it a shot...
 
 On 09/04/2009, at 11:14 AM, kakim...@tpg.com.au wrote:
 
 
  hello
 
  good morning. The page which I access at first doesn't require any
  database request. It's just pretty much a page that's generated by
  template toolkit and that's it.
 
  On the terminal which I am running the myapp_server.pl script, it 
 
  seems
  to stall and not do anything when i put in another url path into
 the
  webbrowser and hit enter.
 
  Example:
 
 
  1) URL, www.lginsurance.com/signup is accessed
  2) URL, www.lginsurance.com/signup is accessed again by
 highlighting  
  the
  url on the web browser and hitting enter
  -- notice that on the terminal screen, the last line is  HTML- 
  process
   along with the time taken and stalls there
 
  Is this a problem you guys have?
 
 
 
  for production deployment, do many of you run myapp_server.pl or
  myapp_fastcgi.pl?
 
  Any comments please?
 
 
  thank you
 
 
  K. akimoto
 
 
 

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


Re: [Catalyst] Application stallling problem

2009-03-26 Thread Tomas Doran

kakim...@tpg.com.au wrote:

sorry, guys, some bad character encodings from my mail client.
Here's the mail again:



Any ideas??


Not sure, but I think its something between the server you're using and 
the browser - if you're getting the request table, then as far as the 
Catalyst server is aware, then it has passed a page to your browser, and 
your browser hasn't requested another one..


Probably trying to use tcpdump or a capturing proxy (parosproxy.org) to 
try and take apart the requests/responses to work out whats going on 
would be helpful?


Cheers
t0m


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


Re: [Catalyst] Application stallling problem

2009-03-26 Thread Alexander Hartmaier
The test server can only process one request per time!
Maybe your first request blocks the server cause a e.g. database query
takes long so the second query isn't handles by the server.

-
BR Alex


Am Donnerstag, den 26.03.2009, 14:17 +0100 schrieb Tomas Doran:
 kakim...@tpg.com.au wrote:
  sorry, guys, some bad character encodings from my mail client.
  Here's the mail again:

  Any ideas??

 Not sure, but I think its something between the server you're using
 and
 the browser - if you're getting the request table, then as far as the
 Catalyst server is aware, then it has passed a page to your browser,
 and
 your browser hasn't requested another one..

 Probably trying to use tcpdump or a capturing proxy (parosproxy.org)
 to
 try and take apart the requests/responses to work out whats going on
 would be helpful?

 Cheers
 t0m


 ___
 List: Catalyst@lists.scsys.co.uk
 Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
 Searchable archive:
 http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
 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@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


Re: [Catalyst] Application stallling problem

2009-03-26 Thread K. akimoto
hello Alex,

  Good morning.
 Not likely. The pages I am requesting don't even use the database. Just
controller and view needed.


any ideas, everyone?


K. akimoto


2009/3/27 Alexander Hartmaier alexander.hartma...@t-systems.at

 The test server can only process one request per time!
 Maybe your first request blocks the server cause a e.g. database query
 takes long so the second query isn't handles by the server.

 -
 BR Alex


 Am Donnerstag, den 26.03.2009, 14:17 +0100 schrieb Tomas Doran:
  kakim...@tpg.com.au wrote:
   sorry, guys, some bad character encodings from my mail client.
   Here's the mail again:
 
   Any ideas??
 
  Not sure, but I think its something between the server you're using
  and
  the browser - if you're getting the request table, then as far as the
  Catalyst server is aware, then it has passed a page to your browser,
  and
  your browser hasn't requested another one..
 
  Probably trying to use tcpdump or a capturing proxy (parosproxy.org)
  to
  try and take apart the requests/responses to work out whats going on
  would be helpful?
 
  Cheers
  t0m
 
 
  ___
  List: Catalyst@lists.scsys.co.uk
  Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
  Searchable archive:
  http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
  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@lists.scsys.co.uk
 Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
 Searchable archive:
 http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
 Dev site: http://dev.catalyst.perl.org/

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


[Catalyst] Application stallling problem

2009-03-25 Thread K. akimoto
hi guys,

 i have this issue when i click on any url of my site more than once (ie
double clicking).
When i click more than once, the site stalls and nothing loads (even if it's
just a light weight static page that i want to load).

Example:

   1. i load up www.lginsurance.com
   2. all loaded up and nice
   3.  i now click on about us link which points to
   www.lginsurance.com/aboutus
   4. i then immediately change my mind and want to go to the products
   page and click on the link, products which points to
   www.lginsurance.com/products
   5. the site stalls and doens't move

at the terminal, i observed that HTML::View-process is the last thing
that's being called.

[debug] GET request for / from 123.243.50.59
[debug] Path is /
[debug] Rendering template index.tt2
[debug] Applying HTML page layout wrappers to index.tt2
[info] Request took 0.094246s (10.611/s)
.+---.
| Action | Time
|
++---+
| /auto  | 0.000406s
|
| /default   | 0.000129s
|
| /end   | 0.049609s
|
|   - myApp::View::HTML-process| 0.047017s
|
'+---'



Any ideas??


K. akimoto
___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


Re: [Catalyst] Application stallling problem

2009-03-25 Thread kakimoto
sorry, guys, some bad character encodings from my mail client.
Here's the mail again:

hi guys,

 i have this issue when i click on any url of my site more than once (ie
double clicking).
When i click more than once, the site stalls and nothing loads (even if
it's just a light weight static page that i want to load).

Example:

   1. i load up www.lginsurance.com
   2. all loaded up and nice
   3.  i now click on about us link which points to
www.lginsurance.com/aboutus
   4. i then immediately change my mind and want to go to the products
page and click on the link, products which points to
www.lginsurance.com/products
   5. the site stalls and doens't move

at the terminal, i observed that HTML::View-process is the last thing
that's being called.

[debug] GET request for / from 123.243.50.59
[debug] Path is /
[debug] Rendering template index.tt2
[debug] Applying HTML page layout wrappers to index.tt2
[info] Request took 0.094246s (10.611/s)
.+---.
| Action | Time
 |
++---+
| /auto  |
0.000406s |
| /default   |
0.000129s |
| /end   |
0.049609s |
|   - myApp::View::HTML-process|
0.047017s |
'+---'



Any ideas??


K. akimoto

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