[PHP] php CLI

2002-03-08 Thread matthew clay shultz
hi, when i run script from the CLI, it doens't recognize the oracle library functions. why is tthis and what can i do aobut it? thanks everyone! matt -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

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

RE: [PHP] php CLI

2002-03-08 Thread matthew clay shultz
--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 CLI, it doens't recognize the oracle library > functio

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

2002-06-07 Thread Matthew Walker
I have PHP installed both as a module, and as a CLI. When I use CURL from inside the module, it works fine for all connections, including SSL. When I use the CLI, I can't make SSL connections with CURL. It just returns 'false'. Anyone know why? -- PHP General Mailing List (http://www.php.net

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) + 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