Returned mail: User unknown (fwd)

2000-06-07 Thread Allen Ahoffman
---BeginMessage--- The original message was received at Wed, 7 Jun 2000 12:14:21 -0400 from [EMAIL PROTECTED] - The following addresses had permanent fatal errors - debian-isp.lists.debian.org - Transcript of session follows - 550 debian-isp.lists.debian.org... User unknown

secret data for php pages

2000-06-07 Thread Robert Varga
Is there a way in which I can store some data (eg. mysql passwords) safely from other users on a website and retrieve it from php3/4? The site is running php3 or php4 as an apache_module, and I need to provide separate mysql databases for each users inaccessible to all other users, so each

RE: secret data for php pages

2000-06-07 Thread Sean 'Shaleh' Perry
On 07-Jun-2000 Robert Varga wrote: Is there a way in which I can store some data (eg. mysql passwords) safely from other users on a website and retrieve it from php3/4? include the files from your script. The file can be elsewhere, the server just has to be able to get to it.

RE: secret data for php pages

2000-06-07 Thread Robert Varga
On Wed, 7 Jun 2000, Sean 'Shaleh' Perry wrote: On 07-Jun-2000 Robert Varga wrote: Is there a way in which I can store some data (eg. mysql passwords) safely from other users on a website and retrieve it from php3/4? include the files from your script. The file can be elsewhere,

Re: secret data for php pages

2000-06-07 Thread Robert Varga
That is not the same problem. When I refer on users, they are meant as system users on the webserver, not web visitors. What I need is a way to provide separate mysql databases to all virtualhosts and webserver users, without a possibility for them to access each other's databases. Regards,

Re: secret data for php pages

2000-06-07 Thread Sean 'Shaleh' Perry
On 07-Jun-2000 Robert Varga wrote: That is not the same problem. When I refer on users, they are meant as system users on the webserver, not web visitors. What I need is a way to provide separate mysql databases to all virtualhosts and webserver users, without a possibility for them to

Re: secret data for php pages

2000-06-07 Thread Fraser Campbell
Robert Varga wrote: What I need is a way to provide separate mysql databases to all virtualhosts and webserver users, without a possibility for them to access each other's databases. Create a unique database for each site. Grant access to it from localhost (and others if necessary) to a

Re: secret data for php pages

2000-06-07 Thread Robert Varga
On Wed, 7 Jun 2000, Fraser Campbell wrote: Robert Varga wrote: What I need is a way to provide separate mysql databases to all virtualhosts and webserver users, without a possibility for them to access each other's databases. Create a unique database for each site. Grant access to

Re: secret data for php pages

2000-06-07 Thread Sean 'Shaleh' Perry
On 07-Jun-2000 Robert Varga wrote: On Wed, 7 Jun 2000, Sean 'Shaleh' Perry wrote: On 07-Jun-2000 Robert Varga wrote: That is not the same problem. When I refer on users, they are meant as system users on the webserver, not web visitors. What I need is a way to provide

Re: secret data for php pages

2000-06-07 Thread Robert Varga
On Wed, 7 Jun 2000, Sean 'Shaleh' Perry wrote: On 07-Jun-2000 Robert Varga wrote: On Wed, 7 Jun 2000, Sean 'Shaleh' Perry wrote: On 07-Jun-2000 Robert Varga wrote: That is not the same problem. When I refer on users, they are meant as system users on the webserver,

Re: secret data for php pages

2000-06-07 Thread Sean 'Shaleh' Perry
apache runs as the vhost user. One apache daemon group per v host. Nope. It may be true for ip-based virtual hosts, but surely not for namebased virtual hosts. we ran IP based, I assumed most people did, sorry. Guess you just have to cross your fingers and hope.

Re: secret data for php pages

2000-06-07 Thread Robert Varga
Unfortunately we are serving only web- and mail services currently and we don't have an ip-block, only one server. Regards, Robert Varga On Wed, 7 Jun 2000, Sean 'Shaleh' Perry wrote: apache runs as the vhost user. One apache daemon group per v host. Nope. It may be true for

Re: secret data for php pages

2000-06-07 Thread cfm
On Wed, Jun 07, 2000 at 08:23:18PM +0200, Robert Varga wrote: Store the mysql connection information in a PHP file in the webspace. I often create a file db_config.php3 and it looks like this: ? $dbhost = localhost; $dbuser = someuser; $dbpasswd = somepassword;

Re: secret data for php pages

2000-06-07 Thread Robert Varga
On Wed, 7 Jun 2000 [EMAIL PROTECTED] wrote: On Wed, Jun 07, 2000 at 08:23:18PM +0200, Robert Varga wrote: Store the mysql connection information in a PHP file in the webspace. I often create a file db_config.php3 and it looks like this: ? $dbhost = localhost;

Re: secret data for php pages

2000-06-07 Thread Gerard MacNeil
On Wed, 7 Jun 2000, Robert Varga wrote: On Wed, 7 Jun 2000, Fraser Campbell wrote: Robert Varga wrote: What I need is a way to provide separate mysql databases to all virtualhosts and webserver users, without a possibility for them to access each other's databases. Create a

Re: Returned mail: User unknown (fwd)

2000-06-07 Thread Larry Morrow
If you are trying to run FULL DUPLEX 100BaseT make sure of your cables and switch port settings. Also I am not sure the CISCO router will run FULL Duplex. Larry At 12:14 PM 6/7/00 -0400, Allen Ahoffman wrote: Return-Path: MAILER-DAEMON Received: from localhost (localhost) by announce.com

IPCP problem with pppd

2000-06-07 Thread Daniel Quinlan
hi, I'm having a problem with pppd (deb version 2.3.5-2) on a slink box. IPCP doesn't appear to be either logging or working properly. a user dials in mgetty answers, detects PPP frames and starts pppd pppd does LCP negotiation pppd authenticates the user with PAP then

Re: secret data for php pages

2000-06-07 Thread cfm
On Wed, Jun 07, 2000 at 09:05:29PM +0200, Robert Varga wrote: On Wed, 7 Jun 2000 [EMAIL PROTECTED] wrote: On Wed, Jun 07, 2000 at 08:23:18PM +0200, Robert Varga wrote: Store the mysql connection information in a PHP file in the webspace. I often create a file db_config.php3