[PHP-DB] RE: Getting apache to recognizeindex.php....

2001-12-04 Thread Luke Muszkiewicz

Vincent:

Find the DIRECTORYINDEX attribute in httpd.conf and add 'index.php' to
the list:

DIRECTORYINDEX index.html index.php index.wml homepage.html index.shtml
homepage.shtml index.cgi homepage.cgi index.htm \ Index.html
Homepage.html Index.shtml Homepage.shtml Index.cgi Homepage.cgi
Index.htm

Let me know if you need further clarification.

-luke

Luke Muszkiewicz
Pure Development, LLC
http://puredev.com

 -Original Message-
 From: Vincent Beaulieu [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, December 04, 2001 9:23 AM
 To: [EMAIL PROTECTED]
 Subject: Getting apache to recognizeindex.php


 Can anyone tell me where to configure apache so that it recognizes
 index.php as the index of a directory?  I tried looking through the
 httpd.conf file for the option to add an extension...couldn't see
 anything! My server treats index.html files correctly...(but is not
 working with index.php)!

 HELP!

 Thank you,

 Vincent




-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP-DB] mail() - is there a limit?

2001-09-27 Thread Luke Muszkiewicz

olinux:

I do not know the answer to your question.

However, I would alternatively suggest that you send the email to each
person individually. That is to say, loop through your recipient array and
use mail() to send the message to each recipient, as opposed to creating a
bcc array and then sending one email.

This solution will take longer to execute -- you may in fact need to adjust
the maximum program execution time via set_time_limit() -- but each
recipient will receive an individual email, which, I think, will make your
message look more personal.

Plus, you no longer need to consider the number of addresses in the bcc
field.

Let me know if you have any questions!

-luke

Luke Muszkiewicz
Pure Development, LLC
http://puredev.com


 I am using a script that grabs about 100 emails from a
 database, loops thru and writes them to $bcc

 Then I use a single mail() to send a msg to everyone
 in the $bcc

 Is there a maximum nuber of emails that i can mail to
 this way?

 Thanks,
 olinux


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]