Re: [PHP] MacOSX / php.ini newbie question

2002-06-04 Thread 1LT John W. Holmes

Did a php.ini-dist or php.ini-recommended file come with your installation
files? Locate those, edit them accordingly, and save it as php.ini in
/usr/lib/

---John Holmes...

- Original Message -
From: Verdon Vaillancourt [EMAIL PROTECTED]
To: Peter [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Tuesday, June 04, 2002 9:04 AM
Subject: Re: [PHP] MacOSX / php.ini newbie question


 Hi Peter, Thanks for the reply.

 Yes, I have searched using both locate and find in the terminal, and
 sherlock, though I don't think sherlock will find anything in system
 folders. BTW... I updated my locate db before doing the search.

 :) verdon


 On 6/3/02 10:19 PM, Peter [EMAIL PROTECTED] wrote:

  have you tried doing a general search for that file? ie search all of ur
hdd
  ...
 
  -Original Message-
  From: Verdon Vaillancourt [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, 4 June 2002 11:15 AM
  To: [EMAIL PROTECTED]
  Subject: [PHP] MacOSX / php.ini newbie question
 
 
  Hi Apologies in advance if this question is simple. I haven't been able
to
  find an answer...
 
  Is there no php.ini file in a php 4.1.2 install on MacOSX 10.1.4 (client
not
  server) ? My php info/test page says that the path to the configuration
file
  (php.ini) file is '/usr/lib', but it is not there (or anywhere else
  according to locate)
 
  Is this a file I can create myself or is there an example to be had
  somewhere?
 
  TIA, verdon
 
 
  --
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php
 
 
 


 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] MacOSX / php.ini newbie question

2002-06-04 Thread Verdon Vaillancourt

Hi John,

Thanks for answering. Apparently not. I have tried both the builds provided
by Marc (well respected) at http://www.entropy.ch/software/macosx/ and the
default build included with Apple's MacOSX (10.1.4). Neither include these
files. Marc says that the file is not included and just instructs to write
it... I just can't find an example of the format. I only need a couple of
lines in it for the scripts I wish to run, and know what they are. I am just
unsure if the php.ini file needs specific lines to open and close, or if I
can just create a file with the declarations I require (and nothing else)
and save it in the correct location.

Cheers, verdon


On 6/4/02 11:26 AM, 1LT John W. Holmes [EMAIL PROTECTED] wrote:

 Did a php.ini-dist or php.ini-recommended file come with your installation
 files? Locate those, edit them accordingly, and save it as php.ini in
 /usr/lib/
 
 ---John Holmes...
 
 - Original Message -
 From: Verdon Vaillancourt [EMAIL PROTECTED]
 To: Peter [EMAIL PROTECTED]; [EMAIL PROTECTED]
 Sent: Tuesday, June 04, 2002 9:04 AM
 Subject: Re: [PHP] MacOSX / php.ini newbie question
 
 
 Hi Peter, Thanks for the reply.
 
 Yes, I have searched using both locate and find in the terminal, and
 sherlock, though I don't think sherlock will find anything in system
 folders. BTW... I updated my locate db before doing the search.
 
 :) verdon
 
 
 On 6/3/02 10:19 PM, Peter [EMAIL PROTECTED] wrote:
 
 have you tried doing a general search for that file? ie search all of ur
 hdd
 ...
 
 -Original Message-
 From: Verdon Vaillancourt [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, 4 June 2002 11:15 AM
 To: [EMAIL PROTECTED]
 Subject: [PHP] MacOSX / php.ini newbie question
 
 
 Hi Apologies in advance if this question is simple. I haven't been able
 to
 find an answer...
 
 Is there no php.ini file in a php 4.1.2 install on MacOSX 10.1.4 (client
 not
 server) ? My php info/test page says that the path to the configuration
 file
 (php.ini) file is '/usr/lib', but it is not there (or anywhere else
 according to locate)
 
 Is this a file I can create myself or is there an example to be had
 somewhere?
 
 TIA, verdon
 
 
 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 
 
 
 
 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




FW: [PHP] MacOSX / php.ini newbie question

2002-06-04 Thread Clay Loveless

Verdon,

Maybe you didn't see my response to your message yesterday, since I saw a
few more posts from you after I replied wondering where you can get a
php.ini file.

Just go to http://www.php.net/downloads

Download the .tar.gz file for the version you're using from entropy.ch

Within, you will find php.ini-dist and php.ini-recommended. Move those
out of the directory of unpacked PHP source, and delete the rest. (You won't
need it, since you have the entropy.ch version.)

Look through the two files.
Decide which one you like.
Edit if necessary.
Rename to php.ini
Upload to your /usr/lib directory on your server.

That's it!

-Clay


-- Forwarded Message
From: Clay Loveless [EMAIL PROTECTED]
Date: Mon, 03 Jun 2002 19:11:10 -0700
To: PHP-General [EMAIL PROTECTED]
Subject: Re: [PHP] MacOSX / php.ini newbie question

Verdon,

I'm a fellow PHP'er on Mac OS X (Server) 10.1.4. : )

You need to download the full distribution from php.net/downloads ... In
there you will find a php.ini-dist file and php.ini-recommended file.

Pick one that you like, edit as needed with BBEdit Lite (NOT TextEdit!),
rename to php.ini and upload to /usr/lib. Restart Apache, and the newly
installed php.ini file will be read in at that time.

Good luck!

-Clay


 From: Verdon Vaillancourt [EMAIL PROTECTED]
 Date: Mon, 03 Jun 2002 21:15:27 -0400
 To: [EMAIL PROTECTED]
 Subject: [PHP] MacOSX / php.ini newbie question
 
 Hi Apologies in advance if this question is simple. I haven't been able to
 find an answer...
 
 Is there no php.ini file in a php 4.1.2 install on MacOSX 10.1.4 (client not
 server) ? My php info/test page says that the path to the configuration file
 (php.ini) file is '/usr/lib', but it is not there (or anywhere else
 according to locate)
 
 Is this a file I can create myself or is there an example to be had
 somewhere?
 
 TIA, verdon
 
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


-- End of Forwarded Message


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] MacOSX / php.ini newbie question

2002-06-04 Thread Verdon Vaillancourt

Thanks Clay :)  got it!



On 6/4/02 1:49 PM, Clay Loveless [EMAIL PROTECTED] wrote:

 Verdon,
 
 Maybe you didn't see my response to your message yesterday, since I saw a
 few more posts from you after I replied wondering where you can get a
 php.ini file.
 
 Just go to http://www.php.net/downloads
 
 Download the .tar.gz file for the version you're using from entropy.ch
 
 Within, you will find php.ini-dist and php.ini-recommended. Move those
 out of the directory of unpacked PHP source, and delete the rest. (You won't
 need it, since you have the entropy.ch version.)
 
 Look through the two files.
 Decide which one you like.
 Edit if necessary.
 Rename to php.ini
 Upload to your /usr/lib directory on your server.
 
 That's it!
 
 -Clay
 
 
 -- Forwarded Message
 From: Clay Loveless [EMAIL PROTECTED]
 Date: Mon, 03 Jun 2002 19:11:10 -0700
 To: PHP-General [EMAIL PROTECTED]
 Subject: Re: [PHP] MacOSX / php.ini newbie question
 
 Verdon,
 
 I'm a fellow PHP'er on Mac OS X (Server) 10.1.4. : )
 
 You need to download the full distribution from php.net/downloads ... In
 there you will find a php.ini-dist file and php.ini-recommended file.
 
 Pick one that you like, edit as needed with BBEdit Lite (NOT TextEdit!),
 rename to php.ini and upload to /usr/lib. Restart Apache, and the newly
 installed php.ini file will be read in at that time.
 
 Good luck!
 
 -Clay
 
 
 From: Verdon Vaillancourt [EMAIL PROTECTED]
 Date: Mon, 03 Jun 2002 21:15:27 -0400
 To: [EMAIL PROTECTED]
 Subject: [PHP] MacOSX / php.ini newbie question
 
 Hi Apologies in advance if this question is simple. I haven't been able to
 find an answer...
 
 Is there no php.ini file in a php 4.1.2 install on MacOSX 10.1.4 (client not
 server) ? My php info/test page says that the path to the configuration file
 (php.ini) file is '/usr/lib', but it is not there (or anywhere else
 according to locate)
 
 Is this a file I can create myself or is there an example to be had
 somewhere?
 
 TIA, verdon
 
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] MacOSX / php.ini newbie question

2002-06-04 Thread Verdon Vaillancourt

Hi Peter, Thanks for the reply.

Yes, I have searched using both locate and find in the terminal, and
sherlock, though I don't think sherlock will find anything in system
folders. BTW... I updated my locate db before doing the search.

:) verdon


On 6/3/02 10:19 PM, Peter [EMAIL PROTECTED] wrote:

 have you tried doing a general search for that file? ie search all of ur hdd
 ...
 
 -Original Message-
 From: Verdon Vaillancourt [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, 4 June 2002 11:15 AM
 To: [EMAIL PROTECTED]
 Subject: [PHP] MacOSX / php.ini newbie question
 
 
 Hi Apologies in advance if this question is simple. I haven't been able to
 find an answer...
 
 Is there no php.ini file in a php 4.1.2 install on MacOSX 10.1.4 (client not
 server) ? My php info/test page says that the path to the configuration file
 (php.ini) file is '/usr/lib', but it is not there (or anywhere else
 according to locate)
 
 Is this a file I can create myself or is there an example to be had
 somewhere?
 
 TIA, verdon
 
 
 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] MacOSX / php.ini newbie question

2002-06-03 Thread Verdon Vaillancourt

Hi Apologies in advance if this question is simple. I haven't been able to
find an answer...

Is there no php.ini file in a php 4.1.2 install on MacOSX 10.1.4 (client not
server) ? My php info/test page says that the path to the configuration file
(php.ini) file is '/usr/lib', but it is not there (or anywhere else
according to locate)

Is this a file I can create myself or is there an example to be had
somewhere?

TIA, verdon


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] MacOSX / php.ini newbie question

2002-06-03 Thread Clay Loveless

Verdon,

I'm a fellow PHP'er on Mac OS X (Server) 10.1.4. : )

You need to download the full distribution from php.net/downloads ... In
there you will find a php.ini-dist file and php.ini-recommended file.

Pick one that you like, edit as needed with BBEdit Lite (NOT TextEdit!),
rename to php.ini and upload to /usr/lib. Restart Apache, and the newly
installed php.ini file will be read in at that time.

Good luck!

-Clay


 From: Verdon Vaillancourt [EMAIL PROTECTED]
 Date: Mon, 03 Jun 2002 21:15:27 -0400
 To: [EMAIL PROTECTED]
 Subject: [PHP] MacOSX / php.ini newbie question
 
 Hi Apologies in advance if this question is simple. I haven't been able to
 find an answer...
 
 Is there no php.ini file in a php 4.1.2 install on MacOSX 10.1.4 (client not
 server) ? My php info/test page says that the path to the configuration file
 (php.ini) file is '/usr/lib', but it is not there (or anywhere else
 according to locate)
 
 Is this a file I can create myself or is there an example to be had
 somewhere?
 
 TIA, verdon
 
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] MacOSX / php.ini newbie question

2002-06-03 Thread Peter

have you tried doing a general search for that file? ie search all of ur hdd
...

-Original Message-
From: Verdon Vaillancourt [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, 4 June 2002 11:15 AM
To: [EMAIL PROTECTED]
Subject: [PHP] MacOSX / php.ini newbie question


Hi Apologies in advance if this question is simple. I haven't been able to
find an answer...

Is there no php.ini file in a php 4.1.2 install on MacOSX 10.1.4 (client not
server) ? My php info/test page says that the path to the configuration file
(php.ini) file is '/usr/lib', but it is not there (or anywhere else
according to locate)

Is this a file I can create myself or is there an example to be had
somewhere?

TIA, verdon


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php