search for: start_html

Displaying 5 results from an estimated 5 matches for "start_html".

2003 Apr 27
2
smbpasswd via cgi
...echo "$temp_ldif\n" | /usr/bin/ldapmodify -x -D "cn=root,dc=prupref,dc=com" -w ROOTPASSWORD 2>&1`; my $samba_update = `echo "$password\n$password\n" | /usr/bin/smbpasswd -s $username 2>&1`; print $app->header(); print $app->start_html(); print $app->h1({align=>'center'}, "Password Changed"); print $app->h1("$md5"); print $app->h1("LDAP RESPONSE: $ldap_update"); print $app->h1("SAMBA RESPONSE: $samba_update"); print $app->end...
2002 Oct 16
0
CGI and RSPerl
...ing script by John Barnett without success. #!/usr/lib/R/bin/R.bin --source invisible(library(RSPerl)); foo <- .PerlExpr("use CGI;"); foo <- .PerlExpr("$q = new CGI; 1;"); a <- .PerlExpr("$q->param('a')"); cat(.PerlExpr("$q->header . $q->start_html . 'Hellooooo....';"), a, .PerlExpr("$q->end_html")); I get the error: premature end of script headers : /var/www/cgi-bin/test.cgi Thanks to help, Nolwenn ******************************************** Nolwenn Le Meur INSERM U533 Facult? de m?decine 1, rue Gaston...
2008 Dec 16
4
perl-web-script should start a application with wine
...e a perlscript which start this wine application. my perl script&#058; 1 #!/usr/bin/perl 2 3 use strict; 4 use CGI; 5 use CGI::Carp qw(fatalsToBrowser warningsToBrowser); 6 7 my $cgi = new CGI; 8 my $html = q(); 9 10 print $cgi->header(q(text/html)); 11 print $cgi->start_html(-title => q(lustiger wine test)), 12 $cgi->h1(q( is not an Emulator)), 13 my $output = exec("wine /usr/share/weblicgen/bin/ct.exe 14 -open /usr/share/weblicgen/bin/coreTechLeer.lic "); 15 print "$output"; 16 $cgi->end_html(); 17 print $html; Error_l...
2011 Jun 16
1
Web based call back
Hi, I am looking for a simple solution to do this. I wish to have the user to enter their preferred method of connection i.e. for the cheapest solution to their desktop phone or mobile phone, then plan callfile based on the number that user provided and dial to the user. Any suggestions? CK -------------- next part -------------- An HTML attachment was scrubbed... URL:
2001 Feb 11
6
embedding R?
My apologies if this is a FAQ, I searched the mailing list archives before posting. Background: I am a long time user of SPlus, and a recent user of R. My work normally involves converting the raw output of something interesting into data to be analyzed in S/R, for which I use Perl extensively. I then import the data into S/R, perform the analyses I need, dumping the values into a new file,