Mailing List Archive



Back to the month index Back to the list index

Darrell Schulte (dschulte@facstaff.wisc.edu)
Fri, 12 Mar 1999 11:33:37 -0500


Message-Id: <v04020a06b30ef22755e0@[144.92.15.71]>
Date: Fri, 12 Mar 1999 11:33:37 -0500
From: Darrell Schulte <dschulte@facstaff.wisc.edu>
Subject: Re: mod_graph

At 11:28 AM -0600 3/12/99, Mitch Shields wrote:
+I have had luck with a construct like:
+
+$data1[4] = "$c5";
+
+when assigning values to an array. Dunno if you can make use of that info
+or not.

Excellent! I can and did make use of it. It worked. Thanks Mitch (and to
Bambi for my earlier question).

Darrell
_____________________________________________________________________
          Darrell A. Schulte - dschulte@facstaff.wisc.edu
 University of Wisconsin-Madison - Office of News and Public Affairs
  The Why Files http://whyfiles.news.wisc.edu - The Graduate School
102A Bascom Hall, 500 Lincoln Drive - Madison WI 53706 (608) 265-8551
From jbueno@magic.fr Fri Mar 12 14:39:55 1999
Received: from casablanca.magic.fr (casablanca.magic.fr [195.154.101.81])
        by services.bunyip.com (8.8.5/8.8.5) with ESMTP id OAA11056
        for <msql-list@services.bunyip.com>; Fri, 12 Mar 1999 14:39:54 -0500 (EST)
Received: from magic.fr (ppp-231.net11.magic.fr [195.154.129.231])
        by casablanca.magic.fr (8.8.8/8.8.8) with ESMTP id UAA14140;
        Fri, 12 Mar 1999 20:39:34 +0100 (MET)
Sender: joseph@magic.fr
Message-ID: <36E96D40.FC77BA2D@magic.fr>
Date: Fri, 12 Mar 1999 20:38:40 +0100
From: Joseph Bueno <jbueno@magic.fr>
X-Mailer: Mozilla 4.5 [en] (X11; I; Linux 2.0.36 i586)
X-Accept-Language: en
MIME-Version: 1.0
To: ricker@upsaint.upsa.edu.bo
CC: Multiple recipients of list <msql-list@services.bunyip.com>
Subject: Re: help me
References: <01be6ba5$1b6da920$039c72a6@biblioteca.upsa.edu.bo>
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: 8bit

Ricker Muņoz wrote:
>
> [...]
> Hello !
>
> I have problem !!
>
> where can i find libraries for accessing from perl to msql database ..?
> I work with perl 4.0 for digital unix 3.2

You can have a look on CPAN (http://www.perl.com/CPAN/), there is
an Msql-Mysql module.
However, you will have to upgrade to perl 5.

>
> Thanks a lot=20
> 
> Ricker=20

-- 
Joseph Bueno
jbueno@magic.fr
From hahnbc@uwec.edu  Fri Mar 12 15:22:04 1999
Received: from mail01.uwec.edu (mail01.uwec.edu [137.28.1.33])
	by services.bunyip.com (8.8.5/8.8.5) with ESMTP id PAA11836
	for <msql-list@services.bunyip.com>; Fri, 12 Mar 1999 15:22:04 -0500 (EST)
Received: from [137.28.152.79] by mail01.uwec.edu; Fri, 12 Mar 1999 14:22:00 -0600
Message-Id: <3.0.1.32.19990312142138.00962da0@uwec.edu>
X-Sender: hahnbc@uwec.edu
X-Mailer: Windows Eudora Light Version 3.0.1 (32)
Date: Fri, 12 Mar 1999 14:21:38 -0600
To: tyuhas@neurobio.arizona.edu,
        Multiple recipients of list <msql-list@services.bunyip.com>
From: Bryan Hahn <hahnbc@uwec.edu>
Subject: Re: Access control
In-Reply-To: <Pine.SUN.3.96.990312100103.13415A-100000@manduca.neurobio.
 arizona.edu>
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"

The acl file takes all precedence over what you can and cannot do in the database. I believe that w3-msql, php, java have further acl in a way, but the msql.acl file would override those. If you want people to access your database and make updates from the web, the acl file would have to be similar to the following:

database=registration read=tyuhas, nobody write=tyuhas, nobody host=* access=local, remote

Remember to refresh the acl list so that your changes take effect (msqladmin -restart).

Good Luck,

Bryan Hahn

At 12:08 PM 3/12/99 -0500, Terrill Yuhas wrote: >I must be missing the concept here but I put together an acl file similar >to the sample that only allowed a few to read/write a database. Where >things are going wrong is that it's affecting w3-msql access which I >thought was controlled solely through w3-auth. There didn't seem to be >any implied overlap in the docs. > >Basically what I want to do is to have a database (a registration >database) where people can register on-line and access their record later. >I only want command-line access to a few users on the local system. > >My acl file contains: > >database=registration >read=tyuhas >write=tyuhas >host=*.arizona.edu >access=local > > >I admit I'm a bit lost at the meaning of the "host" and "access" >directives which may be causing me some grief but the above won't let me >access the database using w3-msql. This would make sense if w3-msql were >subjected to the acl statements since my daemon runs as msql but the >manual seemed to give me the impression that the w3-msql doesn't fall >under acl control. > >Terrill > >