Re: Accessing CSS,JS and other files

2008-04-16 Thread Dileep Eduri
It worked...:jumping: Thank you... Michael Peters wrote: > > Dileep Eduri wrote: > >> When I searched thru' forums, came to know abt the section, which >> I >> can use. But still after studying the documentation, I could not write a >> proper section.

Accessing CSS,JS and other files

2008-04-15 Thread Dileep Eduri
Hi everyone... I tried searching the forums, but got few clues..yet I don't have my doubts clarified. Hence posting. I am running Apache/2.2.6 (Unix) with mod_perl/2.0.3 Perl/v5.8.8 Recently I have started developing pages using mod_perl and when I tried to link the CSS file or Javascript file,

Re: child process exited with status ### - Restarting

2007-11-07 Thread Dileep Eduri
thats pity thing... may be i have to downgrade my apache now... Thanks.. Tom Donovan-4 wrote: > > Dileep Eduri wrote: >> Hello Folks, >> >> I am using Apache/2.2.6 (Win32) mod_perl/2.0.3 Perl/v5.8.8 configured > ... >> Here is log entry for that: >> [Tu

child process exited with status ### - Restarting

2007-11-06 Thread Dileep Eduri
Hello Folks, I am using Apache/2.2.6 (Win32) mod_perl/2.0.3 Perl/v5.8.8 configured I have following entries for mod_perl in httpd.conf Alias /perl/ C:/Apache2.2/perl/ PerlModule ModPerl::Registry SetHandler perl-script PerlHandlerModPerl::Registry Options+ExecCGI Pe

Re: mod_perl and CGI::Application.. Strange Behaviour

2007-10-29 Thread Dileep Eduri
t; } > > sub greet { > my $self = shift; > my $q = $self->query(); > > my $output = ''; > $output .= $q->start_html(-title => 'MyTest'); > > foreach my $key ( keys %ENV ) { > $output .= "$key => $ENV{$key}";

Re: mod_perl and CGI::Application.. Strange Behaviour

2007-10-26 Thread Dileep Eduri
I added PerlSendHeader Off to config file and removed send_http_header call and print call. Now I am returning $var. Nothing got printed... Thanks Michael Peters wrote: > > > > Dileep Eduri wrote: >> No change. still getting headers in browser. >> this one is pr

Re: mod_perl and CGI::Application.. Strange Behaviour

2007-10-26 Thread Dileep Eduri
it is printing ONLY headers and NOT the $var I have PerlSendHeader as 'Off' in config file, even if I change that to 'On', there is no change in the result. Anthony Gardner wrote: > > Unless I'm missing sth, have you read the docs? > > With CGI::Application, you do

Re: mod_perl and CGI::Application.. Strange Behaviour

2007-10-26 Thread Dileep Eduri
No change. still getting headers in browser. this one is pretty annoying. Michael Peters wrote: > > Dileep Eduri wrote: > >> modified my httpd conf file as follows: >> >> Config File Entry >> >> Alias /perl /docroot/cgi-perl >> PerlModule A

Re: mod_perl and CGI::Application.. Strange Behaviour

2007-10-26 Thread Dileep Eduri
..if I tried to comment $req->send_http_headers; line in perl module, then nothing is seen in the browser. unable to figure out solution. Please help me Dileep Eduri wrote: > > Hi everyone, > > Recently I have ported my Apache server to mod_perl and the server is > work