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

[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

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

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 ?php ? 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

[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 site.

[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

[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] 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

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

[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 see,

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,

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

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,

[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

[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

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 the

[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

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

2001-11-30 Thread Gijsbert te Riet
Hi Albert James, snip 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, the