Hi all, I have a cgi script that calls a module which uses Sybase::CTlib. Unfortunately, the script doesn't load Sybase::CTlib properly unless I have the...
Hi all, I'm having trouble with merging multiple files together. Here is a small example of what I'm trying to do: file1.dat file2.dat file3.dat 12345...
Original Message: From: Jeff Eggen <perl-beginner@yahoogroups.com> Date: Thursday August 01 2002 08:33AM PT JE> Hi all, JE> I have a cgi script that calls a...
Wow! This is a pretty good explaination. Are you an instructor? You should be. <G> Yes I am using X10 and having a time of troubleshooting the false signals. I...
... I'm a real estate investor. Teaching perl is easy compared to teaching people how to do creative financing. ... Not for reading. You may have a problem if...
... This can actually be written as for (@order) { # The special variable $_ contains the value of order # currently being looped over. You can also say # for...
11199
RSS
skumar.srinivasan@...
Aug 2, 2002 10:21 am
Hi all, I have a perl script where i am using Crypt::CBC module to encrypt a password. I am calling that subroutine in a C program. The C program gets...
11200
RSS
skumar.srinivasan@...
Aug 2, 2002 10:29 am
The problem seems to be in file read "read(INPUTFILE, $data, $size, $offset);" The offset here i guess is the offset to place the read data at some other ...
From: "Charles K. Clarkson" <cclarkson@...> ... Unless you are under Win9x it's the same as under Unix. Plus there are mandatory locks, but that's...
11202
Will
self_deprecated@...
Aug 2, 2002 11:57 pm
Greets Folks, 1.) This may sound like a dumb question, but is this a legitimate command? #!/usr/bin/perl -Tw 2.) Also, when should I use taint checking? It...
1. Yep, should be, it turns on warnings and taint mode. 2. Firstly, it doesn't work that way on windows, the -T will stop the script running. Best uses are,...
Dear guru, This is more Linux question rather than perl's. When 'make install' perl into linux, I got these error message saying "No space left on device". I...
11206
Mike Burkhouse
mburkhouse@...
Aug 5, 2002 2:55 pm
Hi everyone, I installed Perl 5.8 and then the Time::HiRes module. Testing HiRes is successful. When the program I am using tries to find HiRes, it is ...
Hi everyone, I am very new at all this but I need help. This is my problem: Here is the code: open(PRDLOG,$sc_prd_log_path)||die "cant open $sc_prd_log_path"; ...
11208
SykkN
sykkn@...
Aug 5, 2002 10:40 pm
I would think that you simply need a variable to catch the number. Currently you have this: ($phrase,$number)=split(/\|/,$prd); You should have something like...
11209
stuv48ac@...
Aug 6, 2002 3:51 am
Hello, I have a question please. How can I make a Perl script for sending emails witch not require "sendmail" or an other MTA(Mail Transport Agent), also no...
... Instead of storing all the lines into an array and processing them why don't you loop through the filehandle like this. while (<PRDLOG>) { # Do your...
... @INC contains the list of dirs where perl looks for your modules. This gets built in when you install perl. Make sure that the perl you are using in your...
Hello All I have been programming for more than 2 years now . I now need to convert one of my codes to C. I am an absolute beginner and I just want to know how...
... Why not? Memory's cheap, and it's considerably faster to process things in memory than it is to process them from a disk... especially if it's a huge...
... When you make a IO request on a file the OS reads the entire block into a in memory buffer and maybe also the next block. The next read request say is...
... Depends... a hash of what type of variables? Unlike Perl, C requires you to define a type of data to be stored in a variable. Basically, you're probably...
11217
Jeff Eggen
jeggen@...
Aug 6, 2002 2:47 pm
JE> effect. My webserver runs as user nobody, plus it won't source setup JE> files so I can't set it for the user globally. ... Sorry, I guess I should have...
11218
Octavian Rasnita
orasnita@...
Aug 6, 2002 4:45 pm
Yes, I would be also interested in creating a kind of SMTP server in Perl. Is it very complicated? Teddy Center: http://teddy.fcc.ro/ Mail: orasnita@... ...
11219
Bill Gates
k3s@...
Aug 6, 2002 4:55 pm
Do you have a Kernighan and Ritchies C, the second edition? In section 6.6 they give you a hash function. They are also prevalent in many algorithm books. ...
... Yes. ... Why would you want to? Use the tools, that have been evolving for decades, take care of the drudgery of delivering mail. A VERY simple, and...
Hi all, Just a quick question... I am using the LWP module to grab a page and save it locally (as $file)... using this: my $return_query =...
11222
Wright, William
William_Wright@...
Aug 6, 2002 5:53 pm
if you have the result document in a single variable then try just using a substitution match to replace all the \n's with something else e.g. $lwp_results =~...