Hi All, I've already downloaded the DBI-1.13 and DBD-Informix-0.60 but I don't know how to install them... I tried the DBI first on my own directory and it...
147
Ahrendt, Robert
RAHRENDT@...
Dec 2, 1999 4:50 pm
It is saying that the computer compiler looked in the following directories and did not find a directory for DBD. /usr/local/lib/perl5/sun4-solaris/5.00404 ...
148
Ahrendt, Robert
RAHRENDT@...
Dec 2, 1999 4:51 pm
I meant DBI not DBD Sorry...
149
Manolo.Marzan@...
Dec 2, 1999 5:05 pm
How can I add directory on @INC? ... From: Ahrendt, Robert [mailto:RAHRENDT@...] Sent: 02 December 1999 16:53 To: 'perl-beginner@egroups.com' ...
150
Ahrendt, Robert
RAHRENDT@...
Dec 2, 1999 5:23 pm
Try this , Tell me if it works. -Robert #! your path to perl #change $dir to reflect the pwd where you put DBI $dir="/usr/local/bin/whatever/"; ...
151
Manolo.Marzan@...
Dec 2, 1999 5:32 pm
Hi, I've edited the Makefile.PL and added the $dir="DBI directory" and also push(@INC, $dir) but it didn't work... ... From: Ahrendt, Robert...
152
Ahrendt, Robert
RAHRENDT@...
Dec 2, 1999 5:39 pm
Hmm maybe I read this wrong did DBI successfully install into a directory...
153
Manolo.Marzan@...
Dec 2, 1999 5:51 pm
I think so that I installed DBI successfully because this is the instruction given... Writing Makefile for DBI Remember to actually *read* the README file! Use...
154
Jeff Boes
jboes@...
Dec 2, 1999 6:10 pm
... What you probably need is a line like this: use lib '/usr/local/lib/perl5/site_perl'; at the top of your script, before use DBI; ... Jeffery Boes |ferric...
155
junior2@...
Dec 7, 1999 3:19 am
I have a script that handles e-mails by sendmail/aliases: ... adress: "|path/to/script.pl" ... I need to know the length of STDIN whithout read it on some...
156
greg@...
Dec 7, 1999 3:23 am
What's your most hated Perl problem? Many think pattern matching is hell, others just can't get key-value hashes. ... Please select one of the following: o...
157
James Fox
james@...
Dec 8, 1999 5:52 pm
Hi, I am thinking of creating a script whereby the user enters their name, then the script takes each letter of their name and displays a graphic e.g. if...
158
Ahrendt, Robert
RAHRENDT@...
Dec 8, 1999 6:43 pm
I'm sure there is a better way to do this, but here is what I came up with it assumes you have parsed $name and it's in a cgi environment(printing out the...
159
Ahrendt, Robert
RAHRENDT@...
Dec 8, 1999 6:44 pm
sorry here's the script #!/usr/bin/perl #assuming $name is the variable that holds the name to be changed #to a graphic also assumes this is in the middle of a...
160
Smith, Eric - WPAFB/Y...
Eric.Smith@...
Dec 8, 1999 6:46 pm
You can use the GD module for this. If you really want to get fancy, you could use the Image::Magick module along with the ImageMagick program. GD should be...
161
Greg Webster
greg@...
Dec 9, 1999 2:54 am
That seems a little overkill...make 26 gifs called a.gif, b.gif, etc. ... $name = "greg"; @letters = split(//, $name); foreach $letter (@letters) { $filename =...
162
Maisha Walker
maisha@...
Dec 16, 1999 4:51 pm
i am having what seems to me a very strange problem with a very simple perl script. im just trying to get 2 name=value pairs into a hash called %crumbs, then ...
163
Jeff Boes
jboes@...
Dec 16, 1999 5:05 pm
... Maybe I'm missing something, but I don't see how the variable '$secondpassword' gets set by this code. You set $crumbs{'secondpassword'}, and you set $key...
164
Maisha Walker
maisha@...
Dec 16, 1999 5:47 pm
sorry here is the full script . . . ... print "Content-type: text/html\n\n"; if ($ENV{'HTTP_COOKIE'}) { @cookies=split(/;/,$ENV{'HTTP_COOKIE'}); foreach...
165
Maxy
maxwell@...
Dec 26, 1999 2:02 pm
Hi.. I have a mailing list on egrops and I want to make a form on my site to subscribe directly. I'm looking for a script to do that.. (send the email of the...
166
Tom Barron
tbarron@...
Dec 26, 1999 9:38 pm
... Hi, Maxy. It doesn't have to do with perl particularly, but e-groups provides HTML code for just what you're asking. On the information page for your...
167
dmarney
dmarney@...
Dec 26, 1999 11:06 pm
I've been learning perl on unix for a few weeks, and thought I would give it a whirl on windows. I know squat about DOS ( as you will now see ). I downloaded...
168
Greg Flowers
gregoryf@...
Dec 26, 1999 11:27 pm
Use the full path to your script ie. perl c:\myscript\script.pl greg ... From: dmarney To: perl-beginner@eGroups.com Sent: Sunday, December 26, 1999 4:21 PM ...
169
crengifo@...
Dec 31, 1999 3:03 am
... Add SET PATH=C:\PERL\BIN; into Autoexec.bat Also, In Windows, you can run your script from a batch file, and click. Example: run.bat ... echo off perl...
170
Greg Flowers
gregoryf@...
Dec 31, 1999 5:31 am
Try using the full path to the script: Example: run.bat ... echo off perl c:\path\script.pl ... Greg Flowers http://www.eng.auburn.edu/~gregoryf ... From:...
171
Greg Webster
greg@...
Jan 2, 2000 12:02 am
I've been playing with the following script this morning and I keep getting a 500 server error when I submit a form to the "userlogin" subroutine. Any help ...
172
Jeff Boes
jboes@...
Jan 2, 2000 1:22 am
... Well, without even looking at your code, may I refer you to the following reference: The Idiot's Guide to Solving Perl CGI Problems ...
173
Ahrendt, Robert
RAHRENDT@...
Jan 3, 2000 12:58 pm
don't you get a 500 error when you don't set your script permissions? chmod 755 perlscript.pl...
174
Jeff Boes
jboes@...
Jan 3, 2000 1:23 pm
Actually, you can get a 500 error from a number of things: * syntax error in the script * bad header (usually caused by a run-time error occurring before the...
175
Greg Webster
greg@...
Jan 3, 2000 6:42 pm
... Looks like you've got it...I made these two changes and all worked well! Thanks! Greg Your faithful moderator...