> Odd. I'm running with the following hardware:
> vendor_id : AuthenticAMD
..
> model name : Quad-Core AMD Opteron(tm) Processor 2350 HE
Odd indeed. Is there nothing on the ubuntu networking side that may be
blocking requests? iptables etc.
Are you adding the files to the directory after you've run your
webapp, or before? Perhaps it's worth exiting lisp, setting the # of
files in the directory and running the webapp (from scratch, from the
command line), once each for 20 and 400 files?
> And I am seeing timeouts. I assume there is a way to change how long
> the server has to respond to label it a timeout?
If you're seeing timeouts on the server side (slime debugger) then
what is the backtrace?
If you're seeing timeouts on the browser (the "oops" message) you can
change the timeout period using Prototype's args in weblocks.js -- see
the lines below (/home/webapp/pub/scripts/):
function onActionFailure() {
alert('Oops, we could not complete your request because of an
internal error.');
}
... snip ...
function initiateActionWithArgs(actionCode, sessionString, args,
method) {
if (!method) method = 'get';
new Ajax.Request(getActionUrl(actionCode, sessionString, true),
{
method: method,
// I don't know the args but something should
go here.
onSuccess: onActionSuccess,
onFailure: onActionFailure,
parameters: args
});
}
--
You received this message because you are subscribed to the Google Groups
"weblocks" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/weblocks?hl=en.