On 4/16/07, Will Fould <[EMAIL PROTECTED]> wrote:
I am looking for next steps to growing up from this machine. Can somebody
recommend a good article, presentation or document that advocates various
strategies to growing up the current architecture (i.e. basic load
balancing, network topology, sw
On Apr 16, 2007, at 3:21 PM, Will Fould wrote:
Hi,
I have a service that is currently running a basic LAMP stack with
mod_perl and life has been good!
The site running has been getting very busy and I've ordered a
second machine with intention to move the database off that machine
and
On Mon, 16 Apr 2007 12:21:30 -0700
"Will Fould" <[EMAIL PROTECTED]> wrote:
> I have a service that is currently running a basic LAMP stack with
> mod_perl and life has been good!
>
> The site running has been getting very busy and I've ordered a second
> machine with intention to move the databa
Hi,
I have a service that is currently running a basic LAMP stack with mod_perl
and life has been good!
The site running has been getting very busy and I've ordered a second
machine with intention to move the database off that machine and start the
growing up process.
I am looking for next step
Issac Goldstand wrote:
> ISn't that kind of short notice? Even for a proposal and certainly for
> the paper...
it is what it is, and I suspect that the deadline is meant to be just
before the conference committee meets for ApacheCon EU the following week.
as for the distinction between "proposal
ISn't that kind of short notice? Even for a proposal and certainly for
the paper...
Geoffrey Young wrote:
>> The paper submission deadline is Monday, 28 April 2007, Midnight GMT.
>
> note that the date (april 28) is correct, but it's a saturday not a monday.
>
> --Geoff
> The paper submission deadline is Monday, 28 April 2007, Midnight GMT.
note that the date (april 28) is correct, but it's a saturday not a monday.
--Geoff
michael watson (IAH-C) wrote:
Sorry for the confusion
The code also actually attempts to print out HTML headers ie
" etc" but these DO NOT come through to the webpage -
instead, a bunch of special characters are printed out...
Right... because the and tags are being (incorrectly)
shov
--
Philip M. Gollucci ([EMAIL PROTECTED]) 323.219.4708
Consultant / http://p6m7g8.net/Resume/resume.shtml
Senior Software Engineer - TicketMaster - http://ticketmaster.com
1024D/EC88A0BF 0DE5 C55C 6BF3 B235 2DAB B89E 1324 9
Sorry for the confusion
The code also actually attempts to print out HTML headers ie
" etc" but these DO NOT come through to the webpage -
instead, a bunch of special characters are printed out...
-Original Message-
From: Michael Peters [mailto:[EMAIL PROTECTED]
Sent: 16 April 2007
On Mon, Apr 16, 2007 at 09:22:08AM -0400, Michael Peters wrote:
> michael watson (IAH-C) wrote:
>
> > If I view source in IE, the very top of the web page starts:
> >
> > Ensembl release 43: Gallus gallus Features on Chromosome 23
> > 6042217-6042217
>
> You can't see HTTP headers when doing a
michael watson (IAH-C) wrote:
> If I view source in IE, the very top of the web page starts:
>
> Ensembl release 43: Gallus gallus Features on Chromosome 23
> 6042217-6042217
You can't see HTTP headers when doing a 'view source'. No browser will include
them. In order to really see your HTTP h
I'm sorry... here's better formated text:
Hi all,
-8<-- Start Bug Report8<--
1. Problem Description:
As subject says I compiled the mod_perl2 successfully and without any problems
and
everything worked perfectly.
I needed to debug some code so I r
Hi all,
-8<-- Start Bug Report
8<--
1. Problem Description:
As subject says I compiled the mod_perl2 successfully
and without any problems and everything worked
perfectly.
I needed to debug some code so I recompiled mod_perl2
with debug information.
Now I'm
Thanks again. What I am working with here is a well established project
with 1000s of lines of code on release number 43; maybe I am showing too
much faith, but I just don't think they're suddenly forgotten that they
need to send properly formatted HTTP headers. The code to do so is in
there some
On Mon, 2007-04-16 at 11:49 +0100, michael watson (IAH-C) wrote:
> Hi
>
> Thanks for all your help. If I print out the header line myself, before
> anything else is printed out, then for some reason none of the images
> are produced. Images are produced dynamically using perl and GD. If I
> lea
Hi
Thanks for all your help. If I print out the header line myself, before
anything else is printed out, then for some reason none of the images
are produced. Images are produced dynamically using perl and GD. If I
leave everything alone, I get images that work properly but no HTTP
header; If
On Mon, 2007-04-16 at 11:12 +0100, michael watson (IAH-C) wrote:
> That does indeed make the HTML headers come through, however, I get
> about 20 "Content-type: text/html" lines in my web page because that
> print function is used to print out ALL HTML, not just the headers.
Then just print the he
That does indeed make the HTML headers come through, however, I get
about 20 "Content-type: text/html" lines in my web page because that
print function is used to print out ALL HTML, not just the headers.
httpd.conf has:
$Location{"/perl"}={
SetHandler => 'perl-script',
PerlHandler
On 13 Apr 2007 at 7:25, Tyler Gee wrote:
> On 4/12/07, Bill Whillers <[EMAIL PROTECTED]> wrote:
> > Hello,
>
> I was just contsidering using SWF::Chart. Has anyone used that
> successfully or what issues would there be (other than the fact that
> it is flash).
Yes I have used it and found it
On Mon, 2007-04-16 at 10:33 +0100, michael watson (IAH-C) wrote:
> If I was missing the "Content-type: text/html" line, then my web browser
> would not display anything except the "500: Internal Server Error" line,
> wouldn't it?
No.
Try it.
Just add:
$r->print ("Content-Type: text/html\n\n")
If I was missing the "Content-type: text/html" line, then my web browser
would not display anything except the "500: Internal Server Error" line,
wouldn't it?
My error logs say:
[Mon Apr 16 10:24:07 2007] [error] [client 149.155.42.148] malformed
header from script. Bad header=: contigview
[Mon A
> r is Apache2::RequestRec=SCALAR(0x98d2108)
> I was given ' Transitional//EN"
> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
> http://www.w3.org/1999/xhtml"; xml:lang="en-gb"
> lang="en-gb">
>
> '
>
> So, the perl code is using an Apache2::RequestRec object to print out
> the he
OK, this may be long, but stick with me.
The code that prints out the HTML is this:
sub print {
my $self = shift;
$self->{'r'}->print( @_) if $self->{'r'};
}
It is in a 3rd party module, EnsEMBL::Web::Document::Renderer::Apache.
I put in some debugging code thus:
sub print {
my $se
24 matches
Mail list logo