Re: [PHP] PHP CLI question

2003-06-06 Thread Adam Voigt
>From a ./php -h: -c | Look for php.ini file in this directory The "|" means "OR", so logic would dictate you can point directly to the file with the -c option. On Thu, 2003-06-05 at 10:35, Monte Ohrt wrote: > Hi Cal, > > I may be missing something, but I don't see how this page answers eithe

Re: [PHP] PHP CLI question

2003-06-06 Thread Monte Ohrt
Hi Cal, I may be missing something, but I don't see how this page answers either of my questions. ini_set() is for setting configuration options. Monte On Thu, 2003-06-05 at 09:23, Cal Evans wrote: > http://www.php.net/manual/en/function.ini-set.php > > * Cal Evans > * http://www.christianperfo

Re: [PHP] PHP CLI question

2003-06-06 Thread Cal Evans
http://www.php.net/manual/en/function.ini-set.php * Cal Evans * http://www.christianperformer.com * Stay plugged into your audience * The measure of a programmer is not the number of lines of code he writes but the number of lines he does not have to write. * - Original Message - From: "M

Re: [PHP] php-cli

2003-02-10 Thread Jason Wong
On Tuesday 11 February 2003 14:20, Michael P. Carel wrote: > i've tried that several times but it doesnt work here. here's my test > script > > exec("cls"); > > echo"/ > > **/"; > > ?> > > This does'nt clear the previous lines of MS-DOS. Any

Re: [PHP] php-cli

2003-02-10 Thread Michael P. Carel
i've tried that several times but it doesnt work here. here's my test script This does'nt clear the previous lines of MS-DOS. Any ideas why? > you will want to issue a "cls" command to the shell with the exec > command for using the back ticks... > > That should do it for you... > > example:

Re: [PHP] php-cli

2003-02-10 Thread Ray Hunter
you will want to issue a "cls" command to the shell with the exec command for using the back ticks... That should do it for you... example: exec( "cls" ); That should do it for you... Ray On Mon, 2003-02-10 at 21:20, Michael P. Carel wrote: > Hi to all, > > Is there anyone who could help me

Re: [PHP] PHP (CLI) + CURL + SSL Problem...

2002-06-07 Thread Matthew Walker
It was definately included. I know this two ways. 1. Non-SSL curl sessions work. 2. I used the exact configure string I used for the module version, minus the --with-apxs option. On Fri, 2002-06-07 at 14:30, Mark Heintz PHP Mailing Lists wrote: > Are you sure curl was included with the CLI insta

Re: [PHP] PHP (CLI) + CURL + SSL Problem...

2002-06-07 Thread Mark Heintz PHP Mailing Lists
Are you sure curl was included with the CLI installation? Try running this through the CLI to check... if(extension_loaded('curl')){ echo 'curl support present'; } else { echo 'curl not found'; } mh. On 7 Jun 2002, Matthew Walker wrote: > I have PHP installed both as a module, and as a C

RE: [PHP] php CLI

2002-03-08 Thread matthew clay shultz
its a solaris box, with apache and oracle. its got php4.0.4 on it right now, about to upgrade i believe.. On Fri, 8 Mar 2002, Hunter, Ray wrote: > What type of system are you running this on? > > > Ray Hunter > Firmware Engineer > > ENTERASYS NETWORKS > > > -Original Message- > From: m

RE: [PHP] php CLI

2002-03-08 Thread Hunter, Ray
What type of system are you running this on? Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: matthew clay shultz [mailto:[EMAIL PROTECTED]] Sent: Friday, March 08, 2002 12:38 PM To: [EMAIL PROTECTED] Subject: [PHP] php CLI hi, when i run script from the CL

<    1   2