[7622] in Perl-Users-Digest
Perl-Users Digest, Issue: 1248 Volume: 8
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Thu Oct 30 06:07:28 1997
Date: Thu, 30 Oct 97 03:00:21 -0800
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)
Perl-Users Digest Thu, 30 Oct 1997 Volume: 8 Number: 1248
Today's topics:
A new type of Perl math? <blechler@pangea.ca>
Re: A new type of Perl math? (Iain Chalmers)
Re: A new type of Perl math? <seay@absyss.fr>
bourne vs. perl <Mstenkil@rational.com>
Re: bourne vs. perl <seay@absyss.fr>
CGI script results to email? (Neil Anuskiewicz)
Re: chdir or something like that... <seay@absyss.fr>
Re: Csh to Perl converter ? <seay@absyss.fr>
Re: detection of first execution since login ()
Re: File Locking? (Tad McClellan)
Re: Hello World gives Print Undefined? error !newbie he (Craig Simpson)
Re: how do I save an array into a file? <seay@absyss.fr>
Re: how do I save an array into a file? <seay@absyss.fr>
JavaScript document.write from Perl script (Michael Morrison)
Keep track of downloads - redirection <miran.sepic4@mss.tel.hr>
Re: Learning Perl (David Goh)
Re: mySQL (Toutatis)
Re: NEWBIE QUESTION (Craig Simpson)
Re: Perl for OS/2 <seay@absyss.fr>
Re: Perl for OS/2 <Steve_Kilbane@cegelecproj.co.uk>
Re: Perl Suffix (Was: Can perl be maken to Compiler ins <seay@absyss.fr>
Re: QUESTION: Perl, Selena Sol's db_Search, Netware Web <sbekman@iil.intel.com>
Re: QUESTION: Perl, Selena Sol's db_Search, Netware Web <sbekman@iil.intel.com>
Digest Administrivia (Last modified: 8 Mar 97) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Thu, 30 Oct 1997 00:00:45 -0600
From: Bernard Lechler <blechler@pangea.ca>
Subject: A new type of Perl math?
Message-Id: <3458228D.63B9B7DF@pangea.ca>
I have a CGI that is passed the values:
?ItemA-1=9&ItemB-1=55&ItemA-2=20&ItemB-2=45
Items with corresponding numbers need to be compared to each other, and
the numbers are always consecutive; so I say:
@ofKeys = keys(%in);
$HighestNumber = 0;
foreach $Key (@ofKeys) {
@ofKey = split (/-/, $Key);
if ($ofKey[1] gt $HighestNumber) {
$HighestNumber = $ofKey[1];
}
}
for ($i =1; $i <$HighestNumber; $i +=1) {
$keyA = "ItemA-$i";
$keyB = "ItemB-$i";
&Compare
}
The Compare sub contains:
if ($in{$keyA} gt $in{$keyB}) {
print "ItemA-$i is greater than ItemB-$i<BR>";
$difference = $in{$key1} - $in{$key2};
print "Difference : $difference";
}
else {
print "ItemB-$i is greater than or equal to ItemA-$i<BR>";
$difference = $in{$key2} - $in{$key1};
print "Difference : $difference";
}
It informs me that ItemA-1 is in fact greater than ItemB-1, and that the
difference is -46. This behavior is only exhibited when either of the
items do not contain the same amount of digits. For example 20 and 45
return the correct result. I dunno.
Thanks in advance.
------------------------------
Date: Thu, 30 Oct 1997 18:49:05 +1100
From: bigiain@mightymedia.com.au (Iain Chalmers)
Subject: Re: A new type of Perl math?
Message-Id: <bigiain-ya02408000R3010971849050001@news.ozemail.com.au>
In article <3458228D.63B9B7DF@pangea.ca>, Bernard Lechler
<blechler@pangea.ca> wrote:
> I have a CGI that is passed the values:
>
> ?ItemA-1=9&ItemB-1=55&ItemA-2=20&ItemB-2=45
>
<-snip->
> The Compare sub contains:
>
> if ($in{$keyA} gt $in{$keyB}) {
^^
this is a string compare, and yes "9" is greater than "55"
try ($in{$keyA} > $in{$keyB}) , because 55 > 9
<-snip->
> It informs me that ItemA-1 is in fact greater than ItemB-1, and that the
> difference is -46. This behavior is only exhibited when either of the
> items do not contain the same amount of digits. For example 20 and 45
> return the correct result. I dunno.
you'll find that 2 gt 11, 200 gt 10000, but 44 is not gt 5
>
> Thanks in advance.
no problem,
iain
Iain Chalmers
bigiain@mightymedia.com.au
------------------------------
Date: Thu, 30 Oct 1997 09:52:53 +0100
From: Doug Seay <seay@absyss.fr>
To: Bernard Lechler <blechler@pangea.ca>
Subject: Re: A new type of Perl math?
Message-Id: <34584AE5.67FE68EC@absyss.fr>
[posted and mailed]
> The Compare sub contains:
>
> if ($in{$keyA} gt $in{$keyB}) {
^^^^
Why are you using a string comparison for numeric values? Remember that
100 gt 99 -> FALSE
100 > 99 -> TRUE
You should look at p19 of the Camel for a summary.
- doug
------------------------------
Date: Wed, 29 Oct 1997 12:45:08 +0100
From: Martin Stenkilde <Mstenkil@rational.com>
Subject: bourne vs. perl
Message-Id: <345721C4.88EFEC19@rational.com>
Hi Guys!
I am a newbie (now you know it!) I recently did my first cgi/script,
using bourne shell - now I am to convert it to perl ...HOW? ...I have no
idea ...I dont even know how to write to standard output ...my script
look like this:
#!/bin/sh
echo Content-Type: text/html
echo
echo "<BODY BACKGROUND="/page/backpic.gif">"
echo "<center>"
if [ $# = 0 ]
then
echo "<head>"
echo "<title> local Name Search</title>"
echo "<isindex>"
echo "</head>"
echo "<body>"
echo "<h1>Local Name Search:</h1>"
echo "Enter the word you wish to search for:<p>"
echo "Please note that this search tool is NOT case sensative<P>"
echo "</body>"
else
echo "<head>"
echo "<title> result of search for \"$*\".</title>"
echo "</head>"
echo "<body>"
echo "<h1>The result of the search for \"$*\".</h1>"
echo "<PRE>"
for i in $*
do
grep -i $i
//net/europe/usr/home2/techsupport/mstenkil/httpd/cgi-bin/data
done
echo "</pre>"
echo "</body>"
fi
echo "<h2><a href=http://genial.pureatria.com:1550/cgi-bin/search>NEW
SEARCH</a></h2>"
echo "<a href=http://genial.pureatria.com:1550/1.html>GO HOME!</a>"
~
as you can see, a simpel search in a data file ..thats all - please
..any help would be greatly appreciated!
Martin
mstenkil@rational.com
--
__ __ __ .__
/ V \ _____ ________/ |_|__| ____
\\\ / \ / \\__ \\_ __ \ __\ |/ \
(oO)/ Y \/ __ \| | \/| | | | | \
/C \\____|____(______/__| |__| |__|___|__/
/__/\\ Martin Stenkilde
\\__// Rational Software | Http://www.rational.com
__> U<__ Siriusdreef 41 | Phone: +31 23 5694310
_\/_ 2132 WT Hoofddorp | Fax: +31 23 5694302
The views contained herein do not necessarily reflect those of my
employer
... BUT THEY SHOULD! -Tomorrow night, I try to take over the world.
------------------------------
Date: Thu, 30 Oct 1997 11:09:00 +0100
From: Doug Seay <seay@absyss.fr>
To: Martin Stenkilde <Mstenkil@rational.com>
Subject: Re: bourne vs. perl
Message-Id: <34585CBC.575833E@absyss.fr>
[psted and mailed]
Martin Stenkilde wrote:
>
> I am a newbie (now you know it!) I recently did my first cgi/script,
> using bourne shell - now I am to convert it to perl ...HOW? ...I have no
>
> idea ...I dont even know how to write to standard output ...my script
> look like this:
<buncha bourne "echo" statements removed>
You've got to be kidding. "man perl" and start reading. Actually, go
get Randal Schwartz's "Learning Perl" (man perlbook for the ISBN) and
start with it. We like helping people learn Perl, but we're not here to
do your work for you.
Use "print" for "echo". Here documents ("<<DONE" type thingies) would
make this more readable (true for both Perl and Bourne shell).
- doug
------------------------------
Date: 30 Oct 97 09:43:10 GMT
From: neil@pacifier.com (Neil Anuskiewicz)
Subject: CGI script results to email?
Message-Id: <345856ae.0@news.pacifier.com>
I am new to perl right now, so this may seem like a very simple issue.
I need to write a cgi script that creates a form on our web site that
someone can fill out, submit, and then the results sent in an email. The
email goes to several people so it must retain an easily readable
format:
question?
answer...
Easy to read question/answer format. At any rate, does anyone have some
guidance on how to accomplish this task or point me in the right
direction?
Thank you very much.
------------------------------
Date: Thu, 30 Oct 1997 09:12:18 +0100
From: Doug Seay <seay@absyss.fr>
To: rp11179@online-club.de
Subject: Re: chdir or something like that...
Message-Id: <34584162.5856C2D0@absyss.fr>
[posted and maild]
rp11179@online-club.de wrote:
>
> sorry, but I'm just a perl beginner ;-)
No need to be sorry about that. We all were at some time or another.
> Is it possible to use the chdir within a perl program and let this
> affect the parent program?
RTFM - perlfaq8
I {changed directory, modified my environment} in a perl
script. How come the change disappeared when I exited the
script? How do I get my changes to be visible?
> I hope anybody can get what I mean :-)
Sure do, we get this question all the time. That is why it has been put
in the FAQ. Please read the FAQ.
- doug
------------------------------
Date: Thu, 30 Oct 1997 09:14:17 +0100
From: Doug Seay <seay@absyss.fr>
To: mark hutchinson <markh@manhatten.prestel.co.uk>
Subject: Re: Csh to Perl converter ?
Message-Id: <345841D9.56E37917@absyss.fr>
[posted and mailed]
mark hutchinson wrote:
>
> does anyone have a (preferably perl) script to convert a C-shell script to
> Perl???
RTFM - perlfaq8
How can I convert my shell script to perl?
- doug
------------------------------
Date: 29 Oct 97 16:56:41 GMT
From: enielsen@rmci.net ()
Subject: Re: detection of first execution since login
Message-Id: <34576ac9.0@news.rmci.net>
In article <m32015mtqe.fsf@hudson.ftlsol.com>,
Matthew Rice <Matthew.Rice@ftlsol.com> writes:
> Chenyang Xu <chenyang@mashie.ece.jhu.edu> writes:
>
>> is put in the .login (or .cshrc). I only want my message to be displayed
>> when I login. Without a detection of first execution since login, my
>> message will be displayed everytime when I open a new window which is
>> quite annoying. I have tried to put it in the .profile but it doesn't
>> work. I suspect it is because I am using "tcsh" instead of "sh" although I
>> am not sure.
putting it in .login will work. I think your basic problem here might
be what you think of as "first logging in". Putting it in .cshrc will
cause it to be executed everytime you spawn a new shell (like, whenever you
open up a new window). .login calls it whenever you login (like, spawning
a new tty).
>
> Doesn't SGI have a /etc/motd? Try: man motd
Which will work fine, if you have root access. This person may not.
But then, I'm getting in on the thread a little late, so this may have
already been covered.
--
Erik Nielsen
Unix Systems Administrator
RMC Internet Services
(208)336-9200
------------------------------
Date: Thu, 30 Oct 1997 00:48:21 -0600
From: tadmc@flash.net (Tad McClellan)
Subject: Re: File Locking?
Message-Id: <lja936.v9j.ln@localhost>
Vik Rubenfeld (VikR@aol.com) wrote:
: I have both camel books, and I've read the PERl faq and lots of on-line PERL
: info,
: but I haven't yet found a complete discussion of file locking.
: Here's the LOCK subroutine from one of the on-line PERL manuals.
^^^^^^
^^^^^^ which one? perlfunc?
: sub lock {
: flock(MBOX,$LOCK_EX);
^
^ that dollar sign isn't really there, is it?
if so, what is the value of $LOCK_EX? (2 maybe?)
: # and, in case someone appended
: # while we were waiting...
: seek(MBOX, 0, 2);
: }
: What heppens if someone calls this on a file that is already locked?
24 lines above where that subroutine is given in the perlfunc man page
it says:
"If LOCK_NB is added to LOCK_SH or LOCK_EX then flock()
will return immediately rather than blocking waiting for the lock"
So, if someone calls this on a file that is already locked, then
it will block waiting for the lock.
: Does the
: call to FLOCK wait forever until the file becomes unlocked?
^^^^^^^
That's a pretty long time. Do you have one of those high-reliability
computers or something? ;-)
But yes, it will sit right there until it gets the lock.
: If so is there any
: way to do a timeout?
Yes. Using non-blocking and a loop.
flock(MBOX, LOCK_EX | LOCK_UN); # non-blocking flock(), returns
# immediately if cannot get lock
: If it returns an error, what are the error messages?
35 lines above where that subroutine is given in the perlfunc man page
it says:
"Returns TRUE for success, FALSE on failure."
There may be error messages available, but they come from the
Operating System, not perl, so they differ...
: Similarly,
: - What happens if someone tries to open an Flocked file?
They open it just fine. The same as if it was not flock()ed.
: - What happens if someone tries to write to an Flocked file?
They write to it just fine. The same as if it was not flock()ed.
flock() is *advisory*. It is up to the programs that access the file
to cooperate in the locking...
: - Does closing a file unlock a file,
Yes
: or is it necessary to unlock the file
: before closing it?
Never unlock the file. Just close it.
: Thanks very much in advance to all for any info.
Good luck ;-)
--
Tad McClellan SGML Consulting
tadmc@flash.net Perl programming
Fort Worth, Texas
------------------------------
Date: Thu, 30 Oct 1997 00:31:44 GMT
From: craigs@aka.visualperspectives.com (Craig Simpson)
Subject: Re: Hello World gives Print Undefined? error !newbie help!!!
Message-Id: <3457d4b2.25865003@aka2.visualperspectives.com>
On Wed, 29 Oct 1997 11:20:15 -0000, naja@eirlink.com (naja) wrote:
#!/usr/bin/perl
print "would you be so kind as to hit ENTER?\n";
$a=<STDIN>;
print "Hello world and Yo MaMa too\n";
>
>chmod is ok, paths ok, other basic prereq's are ok.
>I can run scripts, but they wont print to the screen.
>So, I went back to the basic 'Hello world' program but it gives me an
>error, saying print function is undefined.
>
>If I could see a working example, I could take things from there,
>but right now, I've pored over 3 books, numberous FAQ's, and my eyes are
>red and sore from RTFM'ing.
>Any ideas?
>thanks in advance!
>
>naja
>
------------------------------
Date: Thu, 30 Oct 1997 09:37:41 +0100
From: Doug Seay <seay@absyss.fr>
Subject: Re: how do I save an array into a file?
Message-Id: <34584755.788A375@absyss.fr>
brian d foy wrote:
>
> In article <345793c3.866606@news.cmc.ec.gc.ca>, sylvain.juneau@ec.gc.ca (Sylvain Juneau) wrote:
>
> >how do I save an array into a file?
>
> open FILE "> $file_name";
> print FILE @array;
> close FILE;
While this works, it assumes that either
- every element in @array ends with a \n
- you don't care that everything gets jumbled
Sylvain,
if you want one element per line and you don't already have \n at the
end of each element in @array, the easiest way to do this is
print FILE join("\n", @array);
You can also play with $\ but I think that sort of awk voodoo is a bit
harder to maintain. Of course, it is your choice.
> or if you really need to be sophisicated, you could use some of the
> Data Manipulation modules [1], like Data::Dumper, to save the array. it's
> difficult to recommend a solution when one doesn't know what the task
> is :)
So true.
- doug
------------------------------
Date: Thu, 30 Oct 1997 10:03:41 +0100
From: Doug Seay <seay@absyss.fr>
Subject: Re: how do I save an array into a file?
Message-Id: <34584D6D.4CE0FFEC@absyss.fr>
Doug Seay wrote:
> if you want one element per line and you don't already have \n at the
> end of each element in @array, the easiest way to do this is
>
> print FILE join("\n", @array);
Sorry to followup my own post, but,that doesn't put a \n after the last
element. That should have been
print FILE join("\n", @array, '');
- doug
------------------------------
Date: 30 Oct 1997 01:19:45 GMT
From: mmorrison@vnet.ibm.com (Michael Morrison)
Subject: JavaScript document.write from Perl script
Message-Id: <638nbh$ipk$2@sjnews.sanjose.ibm.com>
I've been trying to issue JavaScript document.write() statements from a Perl script,
but without success. Can it be done? If so how?
I did print the <SCRIPT> tag, and because of JavaScript syntax checking, I know the
browser is parsing the JavaScript of the Perl-generated page, but document.write is
ignored.
For now, I've given up, and simply allowed non-JS browsers to see the button that
they can't click, but included some text telling them what to do ... Is that my only
solution?
TIA,
Michael
------------------------------
Date: 30 Oct 1997 09:38:22 GMT
From: "Miran Sepic" <miran.sepic4@mss.tel.hr>
Subject: Keep track of downloads - redirection
Message-Id: <01bce517$928353e0$7a02a8c0@pc_miran>
On web page I have to show the list of files for download. After selecting
the file (click on the link or something) I have to write in a txt file the
username and a selected product. Files are on PASSWORD protected Ftp site.
I tried to do the following:
replace the direct link to the file with a link to a Perl script that
writes down the data in txt file, and redirects to the location of the
file:
print "Location: ftp://name.name/namefile.ext\n\n";
It works when I turn off the password protection on FTP site (NT IIS
Server). But If i put the protection i got the Anonymous Access Denied
response.
How can I send the username/password information within the script
(Location request), or all of it can be done in some other way.
Thanks, Miran
------------------------------
Date: 30 Oct 1997 04:55:48 GMT
From: david@unico.com.au (David Goh)
Subject: Re: Learning Perl
Message-Id: <63940k$l1@padre.unico.com.au>
In comp.lang.perl.misc, on 30 Oct 1997 01:37:47 GMT
David McGrath <dmcgrat@earthlink.net> wrote:
>sub good_word {
> my($somename,$someguess) =@_; # name the parameters
> $somename =~ s/\W.*//; # get rid of everything after
> # the first word
> $somename =~ tr/A-Z/a-z/; # translate to lower case
> if ($somename eq "dave") { # should not need guess
> return 1; # return value is true
> }
> elseif (($words{$somename} || "groucho") eq $someguess) {
^^^^^^
^^^^^^ This should be elsif.
Yes, that's right, only one e.
> return 1; # correct guess is true
> } <<=== COMPILER SAYS THIS IS WRONG
> else {
> return 0; # guess is wrong return false
> }
>} # end of subroutine
Check perlsyn(1).
Later,
David
--
Unico Computer Systems Pty Ltd
David Goh Software Engineer
david@unico.com.au (03) 9866 5688
------------------------------
Date: 30 Oct 1997 07:53:35 GMT
From: toutatis@_SPAMTRAP_toutatis.net (Toutatis)
Subject: Re: mySQL
Message-Id: <toutatis-ya023180003010970853380001@news.euro.net>
rfp@erienet.net wrote:
> I am new to the database game but seasoned to the Perl and Web game. I
> run sites on a Linux Redhat 4.2 server and have recently implemented the
>
> RPM for mySQL. However, I have no idea on how to get started with it.
> Where do I make the tables, etc... Is that done directly through Perl?
>
> I am pretty lost here and would appreciate any guidance to get started
> with this, especially with any info on using mySQL.
http://www.tcx.se will tell you *everything* you want to know (but were
afraid to ask).
--
Toutatis
------------------------------
Date: Thu, 30 Oct 1997 00:33:23 GMT
From: craigs@aka.visualperspectives.com (Craig Simpson)
Subject: Re: NEWBIE QUESTION
Message-Id: <3457d5c0.26135242@aka2.visualperspectives.com>
On Tue, 28 Oct 1997 22:32:37 -0600, Rabbid One
<shard@*REMOVE*free.xtel.com> wrote:
>I've got a perl script going on via DOS. My questions are:
>
>I'd like to set up a situation where I've got a 2 frame page up that a
>user can input something in frame 1 and the perl script works it and
>answers on frame 2. Is this possible?
>
>I noticed that if I say
>
> $x=1;
>
>and then later do a
>
> if ($x=1)
>
>then the if comes up false but if I do a
>
> if ($x="1")
>
>it works fine. Is this normal?
>
>thanx!
Perl is funny under DOS
------------------------------
Date: Thu, 30 Oct 1997 09:29:15 +0100
From: Doug Seay <seay@absyss.fr>
To: Billy Boone <bboone@lexmark.com>
Subject: Re: Perl for OS/2
Message-Id: <3458455B.15CEB364@absyss.fr>
[posted and mailed]
Billy Boone wrote:
>
> Where can I find a version of perl for OS/2?
>
> We are currently using perl version 5.003.07 for Windows ... and we would
> like to begin utilizing our perl scripts in an OS/2 environment.
>
> Can you email me as well as posting the information.
Doesn't the standard perl5.004 package work for OS/2 too? The
README.os2 says (in the BUILD section)
Quick cycle of developers release may break the OS/2 build
time to time, looking into
http://www.perl.com/CPAN/ports/os2/ilyaz/
may indicate the latest release which was publicly
released by the maintainer. Note that the release may
include some additional patches to apply to the current
source of perl.
Hope this points you in the right direction.
- doug
------------------------------
Date: Thu, 30 Oct 1997 09:26:30 GMT
From: Steve Kilbane <Steve_Kilbane@cegelecproj.co.uk>
To: "Billy Boone" <bboone@lexmark.com>
Subject: Re: Perl for OS/2
Message-Id: <a1e7cd$91a1e.9@news.cegelecproj.co.uk>
[ Copy emailed]
In article <3457806d.0@usenet.lexmark.com>, "Billy Boone" <bboone@lexmark.com> writes:
> Where can I find a version of perl for OS/2?
We have successfully used the native 5.004_01 release on
OS/2, although the binary was generated using M$ VC++ on
Windows NT 4.0.
steve
--
<Steve_Kilbane@cegelecproj.co.uk> - All opinions are mine alone.
Kilbane's law of integration: standardise on protocols and file
formats, and the applications take care of themselves.
------------------------------
Date: Thu, 30 Oct 1997 09:45:09 +0100
From: Doug Seay <seay@absyss.fr>
Subject: Re: Perl Suffix (Was: Can perl be maken to Compiler instead of interpreter?)
Message-Id: <34584915.168A7472@absyss.fr>
? the platypus {aka David Formosa} wrote:
>
> I like it because it tells me what the things writton in. This way I know
> weather to load it into my editor or hunt around for the sorce.
Do your shell scripts end in .sh too?
- doug
------------------------------
Date: Thu, 30 Oct 1997 10:04:32 +0200
From: Bekman Stanislav <sbekman@iil.intel.com>
To: dreeves@fix.net
Subject: Re: QUESTION: Perl, Selena Sol's db_Search, Netware Web Server and You.
Message-Id: <34583F90.167E@iil.intel.com>
Cliff Campbell wrote:
>
> I am trying to use Selena Sol's db_search.cgi script on my
> Netware 4.11 server running Web Server 3.1. I always get back a
> document contains no data, this error can occur when I specify the
> wrong file name even. I think I don't have it installed in the right
> directory and that is why this is happening. Does anyone know the
> correct directory to install this script tree structure into?
> TIA
> Cliff CAmpbell
> dreeves@fix.net
I'm not familiar with Netware 4.11, but try to use the forum on Selena's
site. People who read these forums are actually the people who work
with Selena's tools. So you will probably find a better help there.
The pointer to forums from the Selena's cgi scripts page...
Hope that will help you...
--
______________________________________________________________________
Stas Bekman mailto:sbekman@iil.intel.com.il [WebMaster Intel Corp]
Address: Aba Silver 12/29, Haifa, 32694, Israel
Phones: [w] 972-(0)4-865-5188, [h] 972-(0)4-828-2264/3020
Home Page: http://techunix.technion.ac.il/~ofelix
Resource Center http://www.eprotect.com/stas/TULARC (Java,CGI,PC,Linux)
Linux-il Home: http://www.linux.org.il/
------------------------------
Date: Thu, 30 Oct 1997 10:27:54 +0200
From: Bekman Stanislav <sbekman@iil.intel.com>
To: dreeves@fix.net
Subject: Re: QUESTION: Perl, Selena Sol's db_Search, Netware Web Server and You.
Message-Id: <3458450A.2781@iil.intel.com>
Cliff Campbell wrote:
>
> I am trying to use Selena Sol's db_search.cgi script on my
> Netware 4.11 server running Web Server 3.1. I always get back a
> document contains no data, this error can occur when I specify the
> wrong file name even. I think I don't have it installed in the right
> directory and that is why this is happening. Does anyone know the
> correct directory to install this script tree structure into?
I'm not familiar with Netware 4.11, but try to use the forum on Selena's
site. People who read these forums are actually the people who work
with Selena's tools. So you will probably find a better help there.
The pointer to forums from the Selena's cgi scripts page...
Hope that will help you...
______________________________________________________________________
Stas Bekman mailto:sbekman@iil.intel.com.il [WebMaster Intel Corp]
Address: Aba Silver 12/29, Haifa, 32694, Israel
Phones: [w] 972-(0)4-865-5188, [h] 972-(0)4-828-2264/3020
Home Page: http://techunix.technion.ac.il/~ofelix
Resource Center http://www.eprotect.com/stas/TULARC (Java,CGI,PC,Linux)
Linux-il Home: http://www.linux.org.il/
------------------------------
Date: 8 Mar 97 21:33:47 GMT (Last modified)
From: Perl-Request@ruby.oce.orst.edu (Perl-Users-Digest Admin)
Subject: Digest Administrivia (Last modified: 8 Mar 97)
Message-Id: <null>
Administrivia:
The Perl-Users Digest is a retransmission of the USENET newsgroup
comp.lang.perl.misc. For subscription or unsubscription requests, send
the single line:
subscribe perl-users
or:
unsubscribe perl-users
to almanac@ruby.oce.orst.edu.
To submit articles to comp.lang.perl.misc (and this Digest), send your
article to perl-users@ruby.oce.orst.edu.
To submit articles to comp.lang.perl.announce, send your article to
clpa@perl.com.
To request back copies (available for a week or so), send your request
to almanac@ruby.oce.orst.edu with the command "send perl-users x.y",
where x is the volume number and y is the issue number.
The Meta-FAQ, an article containing information about the FAQ, is
available by requesting "send perl-users meta-faq". The real FAQ, as it
appeared last in the newsgroup, can be retrieved with the request "send
perl-users FAQ". Due to their sizes, neither the Meta-FAQ nor the FAQ
are included in the digest.
The "mini-FAQ", which is an updated version of the Meta-FAQ, is
available by requesting "send perl-users mini-faq". It appears twice
weekly in the group, but is not distributed in the digest.
For other requests pertaining to the digest, send mail to
perl-users-request@ruby.oce.orst.edu. Do not waste your time or mine
sending perl questions to the -request address, I don't have time to
answer them even if I did know the answer.
------------------------------
End of Perl-Users Digest V8 Issue 1248
**************************************