Description:
beginners-cgi@perl.org (Moderated)
|
|
|
XML-Parameters from the Server Side
|
| |
how to read the XML-Parameters from the Server Side: I use a Script client.pl to send XML-Parameters to a Script "server.pl" client.pl: ... my $uaB=new LWP::UserAgent; $uaB->agent("TEST CALL" ); my $ReqB=new HTTP::Request GET => 'server.pl'; $ReqB->authorization_basic('TO TO','Password'); $ReqB->content_type('text/xml' );... more »
|
|
Data Conversion ?
|
| |
How would I get the length of a string as returned by length () into a 4 byte unsigned integer in network byte order Thanks
|
|
Strategy ideas please
|
| |
Hi, I want to create a web interface to allow users on my subnet to create FTP accounts on a local server. I would like it to be a secure as I can make it. What I am not sure about is how I can create ftp accounts without non-root access or suexec. I believe there might be an ftp server that users another file for storing ftp user accounts. That might... more »
|
|
Local search with Google::Search module
|
| |
Hi, I am tested Google::Search and would appreciated if anyone has experience on this module. The module seem not to provide a way for me to restrict the search result to national level rather than returning resulting mainly consisting of US site. I though Google::Search->Local() will return results for my location (UK),... more »
|
|
content type headers
|
| |
Hi, I've got some old code to deal with and I have hit a problem. If there is a request for a page that has mixed content EG: 'text/html' and 'image/jpeg', the image media is not being displayed correctly under the FireFox browser. The way things currently work is that media other than text/html is... more »
|
|
Storing a file from a cgi parameter
|
| |
I am trying to store a file in the temp directory. It creates the desired file, but with size 0. The files are videos sent via CGI. I tried with the upload function, but it did not work too. Would you please give me some direction about what I am doing wrong or what should I do in order to make it work?... more »
|
|
Price comparison-agent
|
| |
Sorry if you have received multiple copies of this e-mail. I am trying to write a small online price comparison-agent, but I have no experience doing something similar before. My intention is to query search engines for a product and try to my own algorithm to parse the returned values for the prices and compare them.... more »
|
|
Auto detect timezone
|
| |
Hello, I need to detect the timezone based on Date, City(State/ZIP), Country(USA for now) as part of my application. Any idea about a perl module which does the above? Thanks, Rajesh
|
|
Web photo album, is this possible in CGI
|
| |
Hi all, I am wanting to put something together where every time the script executes it looks into a set directory for photos and then builds a web page with those photos, or even a enlargeable thumbnail of the photo, in kind of a photo album way. I don't know if something like this can be done in CGI or... more »
|
|
Global scope
|
| |
Hi, I'm trying to get some variables to be global in scope. I have declared a bunch of variables that I want to be accessible throughout my program. I have a module options.pm defined as: <pre> package options; use strict; use base qw(Exporter); our @EXPORT = qw(@BenefitsOptions %BenefitsOptions);... more »
|
|
|