Re: [nyphp-talk] shell exec

2007-05-24 Thread Michael Novak
I was able to figure it out. I had to make that command available to all users using the unix user groups... it allowed me to brush up on the good old unix commands! Thanks for all your help! -Mike On 5/24/07, Ajai Khattri <[EMAIL PROTECTED]> wrote: On Thu, 24 May 2007, Michael Novak wrote:

Re: [nyphp-talk] shell exec

2007-05-24 Thread Ajai Khattri
On Thu, 24 May 2007, Michael Novak wrote: > thanks, where would those permissions live? What sort of permissions? It kind of depends on what the script is trying to do right? Is it opening files? Or is it running system commands? Or is it trying to open a network connection? Or listen on a port

Re: [nyphp-talk] PHP Marketing

2007-05-24 Thread Jon Baer
You can pick them up @ http://www.railsenvy.com I think it really depends on the job @ hand, an app running under new JRuby and a JVM under EC2 cluster is pretty impressive, but that's just me. I guess whatever language runs the looping functions getPaid (),payBills() fastest usually wins o

Re: [nyphp-talk] PHP Marketing

2007-05-24 Thread Rob Marscher
Sounds like RoR fanboys in action. I just got my first chance to check this list in the last week and those links aren't active anymore... Know an alternate way to get to them? Other than having to type dollar signs all the time, I think php is great :) I like other languages too... some

[nyphp-talk] building an event manager

2007-05-24 Thread David Mintz
Ladies and Gentlemen: I'm thinking about rolling an event manager and looking at the PEAR Calendar module. Anybody have any experience with it? I notice that it's in beta and the last release was November 2005, which makes me wonder if it has a future. Moving right along: how did you NYPHP dawg

Re: [nyphp-talk] shell exec

2007-05-24 Thread Michael Novak
thanks i appreciate the help! On 5/24/07, Andy Dirnberger <[EMAIL PROTECTED]> wrote: The permissions live on the file (command) itself. In a *nix environment I use some variation of "ls -l /path/to/file" to check the permissions. In Windows I would right-click on the file and go to Proper

RE: [nyphp-talk] shell exec

2007-05-24 Thread Andy Dirnberger
The permissions live on the file (command) itself. In a *nix environment I use some variation of "ls -l /path/to/file" to check the permissions. In Windows I would right-click on the file and go to Properties->Security. I'm not sure the best way to do it in OSX, but I'm sure you can figure that

Re: [nyphp-talk] shell exec

2007-05-24 Thread Michael Novak
thanks, where would those permissions live? -mike On 5/24/07, Andy Dirnberger <[EMAIL PROTECTED]> wrote: You need to check the execute permissions on the utility you are trying to run. The Apache user may have execute permission on the other utilities you are using and just not the one in ques

RE: [nyphp-talk] shell exec

2007-05-24 Thread Andy Dirnberger
You need to check the execute permissions on the utility you are trying to run. The Apache user may have execute permission on the other utilities you are using and just not the one in question. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael Nova

Re: [nyphp-talk] shell exec

2007-05-24 Thread Michael Novak
It could be permissions even though I can run other commands through the same script? On 5/24/07, Ajai Khattri <[EMAIL PROTECTED]> wrote: On Wed, 23 May 2007, Michael Novak wrote: > I am trying to run a foundation tool on os x through the shell > exec script. It is not working though. I

Re: [nyphp-talk] shell exec

2007-05-24 Thread Ajai Khattri
On Wed, 23 May 2007, Michael Novak wrote: > I am trying to run a foundation tool on os x through the shell > exec script. It is not working though. I have successfully run other > command line functions and it worked. I then copy and pasted the > command call in the php script into the term