perl script to binary executible

2005-01-24 Thread Manas Kulkarni
Hi, I would like to convert my perl script into a binary executable before deploying it on a client machine I checked on google and found "perlbin" at sourceforge.net but that does not seem to work. It gives compilation error with handy.h file which is the perl distribution file. Is there a w

Re: File Upload Using CGI

2004-12-02 Thread Manas Kulkarni
OK Guys I tried using the upload method of CGI. Here is what I did: my $upload = CGI::Upload->new; *Do I need to associate the upload variable with the CGI object in some way which I am creating in the cgi script to accept the other parameters from the html form ?

Re: File Upload Using CGI

2004-12-01 Thread Manas Kulkarni
OK. Advice taken. I have a moustache and I definitely don't wear diapers ;) Thanks a lot, Manas. Quoting "JupiterHost.Net" <[EMAIL PROTECTED]>: > > > Charles K. Clarkson wrote: > > > Manas Kulkarni <[EMAIL PROTECTED]> wrote: > > > &

Addition to doubt: File Upload using CGI

2004-12-01 Thread Manas Kulkarni
Hi, I made a slight mistake in my previous post. I am not getting the key value, I am getting the name of the file instead(not the absolute path). Thanks, Manas. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

File Upload Using CGI

2004-12-01 Thread Manas Kulkarni
Hey All ! I know this is not the place to ask cgi doubts but since cgi is just a small part of my work, I had subscribed to only this list. Anyways, I am writing a perl-cgi script which will accept a file from the user through an HTML form and the script will write this file on the server side. Th