[PHP-WIN] GD 2.0.1 DLL

2001-11-30 Thread Chris Murphy
Anybody have the GD 2.0.1 or higher DLL compiled? I would REALLY appreciate a copy... I am hopeless for compiling... Thank you Chris -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the li

Re: [PHP-WIN] Header() redirect

2001-11-30 Thread Todd Williamsen
If you need another option to redirect use the meta refresh tag in HTML, that is what I use. I set the time to 2 seconds or less "Mike Flynn" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Which session library files do you mean? Sessions should never create

[PHP-WIN] PHP and IIS

2001-11-30 Thread Mike
When setting up vBulletin board with PHP i am unable to send emails to my members and so on. I have specifed in my php.ini file what the IP is of my SMTP server. I also know that my SMTP server works with my ASP scripts. If you could help me out on this, that would be great. -- PHP Windows Mai

[PHP-WIN] array problems

2001-11-30 Thread ChaoticWorks
i have been learning php from a book, but whenever i do array examples i get errors. like if i have multi selectional list box and there are 5 things to select and you select 3, there will be 2 errors and then the results of the 3 will display. i dont think i have the full php installation or s

Re: [PHP-WIN] BARE LF in Sending Mail from PHP

2001-11-30 Thread Eric Rosebrock
Unfortunately, that code gave me a parse error. "R'Twick Niceorgaw" <[EMAIL PROTECTED]> wrote in message 04af01c179d5$3503f010$[EMAIL PROTECTED]">news:04af01c179d5$3503f010$[EMAIL PROTECTED]... > Eric, > Here is what I believe will work. > You need to put \r\n after the From Header and after the

Re: [PHP-WIN] BARE LF in Sending Mail from PHP

2001-11-30 Thread R'twick Niceorgaw
Eric, Here is what I believe will work. You need to put \r\n after the From Header and after the X-Mailer header. I have moved the from and X-Mailer to a separate header for clarity. try it and let me know if you still getting the same error. Good luck function SendSite($yname, $ymail, $fname,

Re: [PHP-WIN] BARE LF in Sending Mail from PHP

2001-11-30 Thread Eric Rosebrock
Ok, I am going to try go go into as much detail as I can for this one. I have done some modifications of the certain script that I am using and I am getting --- somewhere --- Starting off, Here's the original script and a copy of the mail log from my mail server for this transacition. Original

Re: [PHP-WIN] BARE LF in Sending Mail from PHP - Actually this is the one:

2001-11-30 Thread Eric Rosebrock
function SendSite($yname, $ymail, $fname, $fmail) { global $sitename, $slogan, $nukeurl, $ModName; $subject = ""._INTSITE." $sitename"; $message = ""._HELLO." $fname:\r\n"._YOURFRIEND." $yname "._OURSITE." $sitename "._INTSENT."\r\n"._FSITENAME." $sitename\n$slogan\r\n"._FSITEURL." $nu

RE: [PHP-WIN] BARE LF in Sending Mail from PHP

2001-11-30 Thread Ryan Marrs
I think the issue here is you need to convert the \n to be \r\n which is CRLF (Carriage Return - Line Feed) it's not a bug in PHP. Good luck, and I hope this helps. Ryan -Original Message- From: Eric Rosebrock [mailto:ERIC@ 3dhavoc.net] Sent: Friday, November 30, 2001 12:59 PM To: [EM

Re: [PHP-WIN] BARE LF in Sending Mail from PHP

2001-11-30 Thread Eric Rosebrock
Ok, this particular script (one of many) is sending the email. If you can show me how to fix this one, I can probably recode the rest of them. I believe this is the part sending the mail: function SendStory($sid, $yname, $ymail, $fname, $fmail) { global $sitename, $nukeurl, $pntable, $ModNa

[PHP-WIN] Re: BARE LF in Sending Mail from PHP

2001-11-30 Thread Eric Rosebrock
Do you have any links to describing this? Is this something that I can just configure in my php.ini and run with it, or will I have to configure each script (which I really dont want to do). -Eric "Peter" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Aha, I

Re: [PHP-WIN] BARE LF in Sending Mail from PHP

2001-11-30 Thread R'twick Niceorgaw
What I believe, and as pointed out at http://pobox.com/~djb/docs/smtplf.html. mail servers require each line to end with a \r\n ( CARRIAGE RETURN + LINE FEED) not just \n(LINE FEED). So, try appending a "\r\n" to the end of each line ( mail headers and body) in your PHP script and see if that fi

[PHP-WIN] Re: BARE LF in Sending Mail from PHP

2001-11-30 Thread Peter
Aha, I see, sorry - didn't read the entirety of your message. In which case the problem needs to be fixed in PHP itself, so hopefully one of the developers will pick up on this for you. I know that the Windows implementation of the mailer is supposed to be somewhat flawed. One other method you

[PHP-WIN] Re: BARE LF in Sending Mail from PHP

2001-11-30 Thread Eric Rosebrock
Peter, Yes, I hear you but the problem is, I do not run qmail. The servers that my users send emails through my php scripts do. So like if [EMAIL PROTECTED] sings up for a user registration, an email is sent to his email address and his email account may be on a server that's running qmail. That

[PHP-WIN] Compiling with Dev-CPP

2001-11-30 Thread Chris Murphy
Does anybody out there know how to compile PHP with Dev-CPP? I can't afford MSVCPP - what can I say. Anyway - I am a relative Newbie, but would like to compile it with extensions such as GD... Thanks for the help, I know its probably something simple! Chris -- PHP Windows Mailing List (http

[PHP-WIN] Re: BARE LF in Sending Mail from PHP

2001-11-30 Thread Peter
I think you could add the 'fixcrio' command to your QMail startup. Not really fixing the problem, but a workaround nonetheless. HTH Peter "Eric Rosebrock" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hey there, I posted this on the Php.net bug reporting s

[PHP-WIN] BARE LF in Sending Mail from PHP

2001-11-30 Thread Eric Rosebrock
Hey there, I posted this on the Php.net bug reporting site. Was wondering if anyone else has noticed the same thing and found a fix for it. -- I am running an apache web server using PHP 4.06 on Windows 2000 Server and Windows XP (so we know it doesn't matter the OS as long

Re: [PHP-WIN] Header() redirect

2001-11-30 Thread Piotr Pluciennik
Hi, It can be caused by quite common mistake - any extra space (or characters like LF or CR) before or after in php file! Such characters are automaticly sent to the browser - and before it - all headers are sent - and we've got described error. I don't have this moment access to the online php

Re: [PHP-WIN] Header() redirect

2001-11-30 Thread Mike Flynn
Which session library files do you mean? Sessions should never create the headers -- there's no reason for them to do so. There's nothing in the page itself that sessions need care about and nothing they can affect / be affected by. Are you sure that the headers aren't coming from somewhere

[PHP-WIN] Re: PATH_INFO doesn't work -- resolution?

2001-11-30 Thread Gijsbert te Riet
Hi Albert James, > PROBLEM: > PHP seems to support this functionality on a UNIX server I run. A request > for http://www.foobar.com/hello.php/more/foobar/filename.html works > exactly as the above describes, stuffing "/more/foobar/filename.html" into > the $PATH_INFO php variable. > > However,

[PHP-WIN] Header() redirect

2001-11-30 Thread Martin.Andrew
Is there another function that does the same job as Header() I'm creating a forum, and when a user sends a message I call a function that checks name, password etc, then updates the DB and then calls the Header function to redirect the page. This would be fine except I am also using session lib

[PHP-WIN] Pop up of save as window

2001-11-30 Thread Kanchan Majumder
Hi all, I had recently configured php4.0.6 as apache module in my win95 OS machine. As per available php & apache documentation I had configured my both apache and php. But when I tried to see phpinfo.php script at htdocs directory, my browser opens up save as window. please help me to come out fr

RE: [PHP-WIN] bcc mail win32

2001-11-30 Thread Ross Fleming
Haven't tried, but the win version shouldn't make a difference, SMTP is the same across the board. However I think you may still need a $to address, but you can just make that yourself. Ross $headers = "MIME-Version: 1.0\r\n"; $headers .= "Content-type: text/html; charset=iso-8859-1\r\n"; /*

php-windows Digest 30 Nov 2001 08:42:17 -0000 Issue 878

2001-11-30 Thread php-windows-digest-help
php-windows Digest 30 Nov 2001 08:42:17 - Issue 878 Topics (messages 10653 through 10662): Multiple charts in one page 10653 by: Justyn Franklin IIS4 - asp w/ ms-access hangs about once a week 10654 by: Don Sanders 10656 by: MrBaseball34 10660 by: Antonello

[PHP-WIN] bcc mail win32

2001-11-30 Thread natesanden
I read that you can't send BCC mail on a win32 server with PHP. Is that true? and if so, is there some sort of work-around or a 3rd party add-on that will allow this? I am running a Win2K server with PHP4, and IIS 5.0 and i'm creating a site that needs to allow admins, to send identical emails t