Re: [PHP] Running system commands

2003-09-25 Thread Nitin
, 2003 4:38 PM Subject: Re: [PHP] Running system commands If it's filtering port 22, you're not going to be able to access the server from any client, unless you can bypass the firewall. Only the server needs to be run as root. The client should _never_ be run as root. I don't know how

Re: [PHP] Running system commands

2003-09-24 Thread Nitin
for your help anyway Nitin - Original Message - From: Robert Cummings [EMAIL PROTECTED] To: Mike Migurski [EMAIL PROTECTED] Cc: Nitin [EMAIL PROTECTED]; PHP-General [EMAIL PROTECTED] Sent: Wednesday, September 24, 2003 2:16 AM Subject: Re: [PHP] Running system commands On Tue, 2003-09-23

[PHP] Running system commands

2003-09-23 Thread Nitin
Hi all, I was wondering, if anyone can help me with running system commands from within php. Actually I have a script which deletes users from my database (which is of course MySQL), now I want to delete those users from system level also, as they are authenticated users of my OS also. Now,

Re: [PHP] Running system commands

2003-09-23 Thread Evan Nemerson
google for openssh or lsh. I dunno if you'd be able to input the password through PHP, but if not you could telnet over an SSH encrypted tunnel... Or if you have absolutely no worries about security you could use telnet, but that would be, IMHO, a Bad Idea(TM). On Tuesday 23 September 2003

Re: [PHP] Running system commands

2003-09-23 Thread Mike Migurski
I was wondering, if anyone can help me with running system commands from within php. Actually I have a script which deletes users from my database (which is of course MySQL), now I want to delete those users from system level also, as they are authenticated users of my OS also. Now, the problem

Re: [PHP] Running system commands

2003-09-23 Thread Robert Cummings
On Tue, 2003-09-23 at 16:34, Mike Migurski wrote: I was wondering, if anyone can help me with running system commands from within php. Actually I have a script which deletes users from my database (which is of course MySQL), now I want to delete those users from system level also, as they are

Re: [PHP] Running system commands

2003-02-26 Thread Chris Hewitt
[EMAIL PROTECTED] wrote: I was thinking the exact same thing but I can actually delete files from these directories using a system command through php. Would that be a different type of permission? Ed On Tue, 25 Feb 2003, Chris Hewitt wrote: [EMAIL PROTECTED] wrote: Before I ask, I have read

[PHP] Running system commands

2003-02-25 Thread ed
Before I ask, I have read the documentation but nothing seems to work. I want to run a system command from behind the scenes (totally secure area of my server) that creates a directory and changes permissions on it. i.e. system (mkdir $path); Example above uses a value from a form passed to

Re: [PHP] Running system commands

2003-02-25 Thread Chris Hewitt
[EMAIL PROTECTED] wrote: Before I ask, I have read the documentation but nothing seems to work. I want to run a system command from behind the scenes (totally secure area of my server) that creates a directory and changes permissions on it. i.e. system (mkdir $path); Example above uses a value

Re: [PHP] Running system commands

2003-02-25 Thread Jason Wong
On Wednesday 26 February 2003 03:28, [EMAIL PROTECTED] wrote: Before I ask, I have read the documentation but nothing seems to work. I want to run a system command from behind the scenes (totally secure area of my server) that creates a directory and changes permissions on it. i.e. system