Re: [PHP-WIN] mail to too many users

2002-01-28 Thread Ignatius Teo
As big as strlen() says it is * Ignatius Teo Project Manager, Internet Access Services Information Technology and Telecommunication Services Corporate Services Southern Cross University PO Box 157 Lismore NSW 2480 Ph: +61 2 6620-3221

RE: [PHP-WIN] mail to too many users

2002-01-28 Thread Mostafa Al-Mallawani
How big would a string of 19000 email addresses be? Can anyone estimate? -Original Message- From: Angie Tollerson [mailto:[EMAIL PROTECTED]] Sent: Monday, January 28, 2002 11:55 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: [PHP-WIN] mail to too many users

Re: [PHP-WIN] mail to too many users

2002-01-28 Thread Angie Tollerson
Last I heard BCC and CC wasn't working for Windows...it would only send to the first person in the list. That's what it did for me 6 months ago..has that been fixed? Thanks! Angie >>> "Jim Lucas [php]" <[EMAIL PROTECTED]> 01/28/02 03:47PM >>> with php's mail() funciton you can send to multiple

Re: [PHP-WIN] mail to too many users

2002-01-28 Thread Jim Lucas [php]
with php's mail() funciton you can send to multiple recipents via the headers. just build the headers so it will BCC to everybody at once. one word of caution, you can only have a header that is 5kb or smaller. otherwise php will start truncating the header. Found that out the hard way. so, jus

[PHP-WIN] mail to too many users

2002-01-28 Thread Mostafa Al-Mallawani
I need to send an email to 19000 users using a script, any suggestions. Looping on a result set using the mail function would kill the server. I know it can be done using a mailing list module but I'm running a windows machine with IIS, what's the best thing for this? Thanks.

[PHP-WIN] Re: New to PHP

2002-01-28 Thread Alan McFarlane
Nah, that sounds pretty normal for Windows... Laserjetter <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > RE access violations: > I've never encountered this error message with PHP but for some reason on > Win98/Apache 1.3.20/PHP 4.0.6 and also running WinVNC f

php-windows Digest 28 Jan 2002 18:46:19 -0000 Issue 973

2002-01-28 Thread php-windows-digest-help
php-windows Digest 28 Jan 2002 18:46:19 - Issue 973 Topics (messages 11663 through 11673): Re: Porting from Linux to Windows!?$# 11663 by: Alan McFarlane how to download files by http 11664 by: "Spycha³a, Wojciech" 11669 by: Martin Lindhe Problems using mail() it a

[PHP-WIN] Re: New to PHP

2002-01-28 Thread LaserJetter
RE access violations: I've never encountered this error message with PHP but for some reason on Win98/Apache 1.3.20/PHP 4.0.6 and also running WinVNC for remote control, I cannot modify any files which have been used or processed by Apache. This includes any PHP files which have been executed and

Re: [PHP-WIN] Problems using mail() it always states Failed to Receive in

2002-01-28 Thread Jan-Volkert Meuldijk
> =to use PHP variables, remove the quotation marks. > =dn Thanks fro replying. Didn't work here. Tried both ways, double-quotes just evaluate to the contents of the variable. Jan-Volkert -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additi

Re: [PHP-WIN] Problems using mail() it always states Failed to Receive in

2002-01-28 Thread DL Neil
Jan-Volkert, > I'm trying to use mail() and have read about all kinds of troubles, but i've > got another one :-) > > The machine is running IIS5 configurated for smtp-mail. > I've set $email, $subject, $body and $header and try to use >$mailsend = mail("$email", "$subject", "$body", "$heade

RE: [PHP-WIN] Problems using mail() it always states Failed to Receive in

2002-01-28 Thread Martin Lindhe
> I'm trying to use mail() and have read about all kinds of > troubles, but i've got another one :-) > > The machine is running IIS5 configurated for smtp-mail. > I've set $email, $subject, $body and $header and try to use >$mailsend = mail("$email", "$subject", "$body", > "$header"); I alw

RE: [PHP-WIN] how to download files by http

2002-01-28 Thread Martin Lindhe
> I need help > I want to to get file list o n remote http server for > example: http://heban.unx.eragsm.pl:/baobab/static/tmp/ > If I open this adress in browser i got list of files in this > folder i want to get the list and download this files by > application wrote in PHP is it possibl

RE: [PHP-WIN] calling PHP code on a different website

2002-01-28 Thread Martin Lindhe
> Hi > > Plot: how can I share data/info from a PHP based site on a > ASP based site ? > > Site A, running PHP > Site B , running ASP > > Now on site B I would like to publish some information from > site A's database, is that possible ? > > Thanks i advance > > Steen Scenario 1. S

RE: [PHP-WIN] HELP! with PHP extension <

2002-01-28 Thread Martin Lindhe
> Hi all, > > Here is the situation. > > I have Windows 2000 SP2, IIS5 running PHP 4.1.1 using CGI. > > My PHP folder is C:\php > Extension Folder is: C:\php\extension > PHP.INI file: extention_dir = "C:\php\extension\" Are you sure the foldername is "extension"? Just asking you to doublecheck

RE: [PHP-WIN] Windows NT SMTP Set Up Help Needed

2002-01-28 Thread Martin Lindhe
> Hi Martin- > > Separating the parameters from the function call didn't work. > I think the problem is with the WindowsNT SMTP server. How > should the WindowsNT SMTP server be set up to make mail() work? > > Charlie Just set the SMTP directive in php.ini to the mail server you wish to use

[PHP-WIN] Problems using mail() it always states Failed to Receive in

2002-01-28 Thread Jan-Volkert Meuldijk
I'm trying to use mail() and have read about all kinds of troubles, but i've got another one :-) The machine is running IIS5 configurated for smtp-mail. I've set $email, $subject, $body and $header and try to use $mailsend = mail("$email", "$subject", "$body", "$header"); I always get an error

[PHP-WIN] how to download files by http

2002-01-28 Thread "Spychała, Wojciech"
Hi I need help I want to to get file list o n remote http server for example: http://heban.unx.eragsm.pl:/baobab/static/tmp/ If I open this adress in browser i got list of files in this folder i want to get the list and download this files by application wrote in PHP is it possible Vry