RE: [PHP] running a stand-alone PHP program

2001-05-16 Thread scott [gts]
yeah. i run it as a CGI. compile it as a binary, then edit the apache config... that's it > -Original Message- > From: midget2000x [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, May 16, 2001 4:18 PM > To: [EMAIL PROTECTED] > Subject: [PHP] running a stand-alone PHP program > > > I ap

RE: [PHP] running a stand-alone PHP program

2001-05-16 Thread midget2000x
I suppose I need to be more clear. I already have PHP running, but I want to run actual PHP code that I write as a stand-alone program. Is this what you're doing? On Wed, 16 May 2001, you wrote: > yeah. i run it as a CGI. > > compile it as a binary, then edit the apache config... > > that's

Re: [PHP] running a stand-alone PHP program

2001-05-16 Thread Nathan Cook
by: # /usr/local/bin/php /path/to/script/scriptname Have Fun! Nathan Cook [EMAIL PROTECTED] - Original Message - From: "midget2000x" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 16, 2001 2:52 PM Subject: RE: [PHP] running a stand-alone PHP program >

Re: [PHP] running a stand-alone PHP program

2001-05-16 Thread Tomasz Piłat
Nathan Cook wrote: > then you can run scripts by: > # /usr/local/bin/php /path/to/script/scriptname Or you can put: #!/usr/local/bin/php as a first line in your script, then % chown u+x yourscript % ./yourscript HTH, Poncki -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-

Re: [PHP] running a stand-alone PHP program

2001-05-17 Thread elias
you can also run like: php -q myfile.php -elias "midget2000x" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I apologize if this has already been covered...I can't seem to find it in the > archives... > > can PHP be coded and run as a stand-alone program? I

Re: [PHP] running a stand-alone PHP program

2001-05-17 Thread midget2000x
ipt/scriptname > > Have Fun! > Nathan Cook > [EMAIL PROTECTED] > - Original Message - > From: "midget2000x" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Wednesday, May 16, 2001 2:52 PM > Subject: RE: [PHP] running a stand-alone PHP pr

Re: [PHP] running a stand-alone PHP program

2001-05-17 Thread Nathan Cook
;Nathan Cook" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, May 17, 2001 10:38 AM Subject: Re: [PHP] running a stand-alone PHP program > OK, thanks. This is great. But will this affect my existing installation of > PHP? excuse the newbie questions! > > I app

Re: [PHP] running a stand-alone PHP program

2001-05-17 Thread midget2000x
t; > To: "Nathan Cook" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> > Sent: Thursday, May 17, 2001 10:38 AM > Subject: Re: [PHP] running a stand-alone PHP program > > > > OK, thanks. This is great. But will this affect my existing installation of &g

Re: [PHP] running a stand-alone PHP program

2001-05-17 Thread Nathan Cook
Does your script happen to look like this? #!/usr/local/bin/php To: "Nathan Cook" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, May 17, 2001 3:15 PM Subject: Re: [PHP] running a stand-alone PHP program > Excellent. I got this working. From a comman

Re: [PHP] running a stand-alone PHP program

2001-05-17 Thread midget2000x
t;manually": > > # php script.php > > Nathan Cook > [EMAIL PROTECTED] > - Original Message - > From: "midget2000x" <[EMAIL PROTECTED]> > To: "Nathan Cook" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> > Sent: Thursday,

RE: [PHP] running a stand-alone PHP program

2001-05-17 Thread Peter Houchin - SunRentals Australia
M To: Nathan Cook; [EMAIL PROTECTED] Subject: Re: [PHP] running a stand-alone PHP program Yes, it has the path to PHP on the first line. So there's no way to hide it? It doesn't show up when it's a perl script and it's the path to perl. On Thu, 17 May 2001, Nathan

RE: [PHP] running a stand-alone PHP program

2001-05-18 Thread scott [gts]
do you have a "ScriptAlias" directive in the apache conf's? > -Original Message- > From: midget2000x [mailto:[EMAIL PROTECTED]] > Sent: Thursday, May 17, 2001 5:16 PM > To: Nathan Cook; [EMAIL PROTECTED] > Subject: Re: [PHP] running a stand-alone PHP pro