[PHP-WIN] Re: mail() doesn't work with $ variable

2002-05-05 Thread Cheyenne Vermeulen
Thanks man!! it did the job! For a strange reason i just did'nt see it. Thanks very much Regards, Cheyenne -- Tinck all media www.tinck.com [EMAIL PROTECTED] "Steve Yates" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > "Cheyenne Vermeulen" <[EMAIL PROT

Re: [PHP-WIN] php won't "process" forms anymore

2002-05-05 Thread Steve Yates
"Toby z" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > the book > only talks bout writting a string to a file ... while > i have multiple stingz to b saved Use fwrite() twice. http://www.php.net/manual/en/function.fwrite.php - Steve Yates - Sex is n

[PHP-WIN] Re: Why Global Variables turned off??

2002-05-05 Thread Steve Yates
"Then" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > At the cost of sounding dense...wouldn't POSTing the variables solve the > problem. Nope. For instance, was the variable $authorized set via POST, GET, cookie, etc.? You don't know. But specifically

[PHP-WIN] Re: mail() doesn't work with $ variable

2002-05-05 Thread Steve Yates
"Cheyenne Vermeulen" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > $recipient.= "$voornaam $naam <$email>" ; I would suggest trying this with just the e-mail address, and/or quotes around the name. Heck, replace each of the four variables with a strin

RE: [PHP-WIN] Apache 2.0.35 w/ PHP 4.12 -HELP

2002-05-05 Thread Ross Fleming
Someone answered didn't they? Put quotes round the c:\programer.dll and all should be well. Ross -Original Message- From: Alex [mailto:[EMAIL PROTECTED]] Sent: 04 May 2002 22:51 To: [EMAIL PROTECTED] Subject: [PHP-WIN] Apache 2.0.35 w/ PHP 4.12 -HELP I used - LoadModule php4_mo

[PHP-WIN] Apache 2.0.35 w/ PHP 4.12 -HELP

2002-05-05 Thread Alex
I used - LoadModule php4_module C:\Program Files\Apache Group\Apache\php-4.2.0-Win32\experimental\apache2filter.dll. But then when I do an Apache -K start I get the following error message: "Load Module takes two arguments, a module name and the name of a shared object file to load it from" Wh

Re: [PHP-WIN] Re: How do i get SSI (Server Side Include) to work

2002-05-05 Thread Stuart Dallas
On 5 May 2002 at 9:32, Alex wrote: > How did you installed PHP i have tried without sucess. I tried the > experimental, but I get the message "Loadmodule takes two arguments, a > module name and the name of a shared object file to load it from " > which I did - LoadModule php4_module C:/Program F

[PHP-WIN] Re: How do i get SSI (Server Side Include) to work

2002-05-05 Thread Alex
How did you installed PHP i have tried without sucess. I tried the experimental, but I get the message "Loadmodule takes two arguments, a module name and the name of a shared object file to load it from " which I did - LoadModule php4_module C:/Program Files/Apache Group/Apache/php-4.2.0-Win32/ph

RE: [PHP-WIN] How do i get SSI (Server Side Include) to work

2002-05-05 Thread Ross Fleming
We'll charitably assume your frustration accounts for your rudeness shall we? To paraphrase "I have a problem that is not related to PHP, yet I will ask it here anyway, and please, don't waste my time with suggestions, just give me the damn answer". Try RTFM or asking politely on an apache forum

php-windows Digest 5 May 2002 22:36:37 -0000 Issue 1129

2002-05-05 Thread php-windows-digest-help
php-windows Digest 5 May 2002 22:36:37 - Issue 1129 Topics (messages 13551 through 13560): Re: Security Alert! PHP CGI cannot be accessed directly. HELP 13551 by: Numero 6 13558 by: Roberto Valverde Re: PHP4.04 Methodes mkdir(), fopen() brings an Error on a WinXP/IIS5.0 PC

RE: [PHP-WIN] Small Doubt in PHP Manual...pls help

2002-05-05 Thread Ross Fleming
It means that the ?>'\n' is actually taken by the PHP parser. I think the best way to explain it is with the following demo: random text more random text will produce: random text helloworldmore random text instead of the (commonly) expected: random text hello world more random text Howev

[PHP-WIN] Re: How can i install PHP as an Apache module on windows 2000?

2002-05-05 Thread alphapoet
I've done what Cybero recommends below, still, my .php files don't seem to be excuting properly. I've verified all paths and even made sure the Load and Add's are under the proper sections in the httpd.conf file. Running php.exe. -i from command line gives me the proper output (ie, the html for

[PHP-WIN] Re: Security Alert! PHP CGI cannot be accessed directly. HELP

2002-05-05 Thread Roberto Valverde
Thank you, But I have try too use that new line on my php.ini file but I still can't get it to work out. I use Win Xp Pro with IIS 5.1 I've done a reset to the server & restarted windows too. but still it shows the some msg error. Rob "Numero 6" <[EMAIL PROTECTED]> wrote in message [EMAIL PR

[PHP-WIN] Small Doubt in PHP Manual...pls help

2002-05-05 Thread theN
Note that the "?>" sequence also eats a end-of-line character after it, so this end-of-line won't get generated to the implicitly echo'ed output. If you need to generate an end-of-line after the "?> sequence, you MUST follow it by another end-of-line... This above is a User Contributed Note on

[PHP-WIN] Re: mail() funtion won't work

2002-05-05 Thread Cheyenne Vermeulen
You could try the following script to test it.. also check your firewall settings. "" Regards! -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] mail() funtion won't work

2002-05-05 Thread Derek Bond
I'm runngin XP Pro, apache and php 4.2 I set my php.ini correctly, even rebootedand my mail() still won't work grrr Bond www.phpwebpages.com -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] Re: mail() doesn't work with $ variable

2002-05-05 Thread Cheyenne Vermeulen
The error occurs on 103 wich is the following line: mail($recipient, $subject, $message, $headers); Thanks in advance! Regards -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] mail() doesn't work with $ variable

2002-05-05 Thread Cheyenne Vermeulen
Hi all! I'm pretty green on this and i'm trying to create a form that sends a authorization mail using a few variable using the ()mail script. I have all settings correct, added the smtp right, even tested it with the following script wich worked fine "" When using the concerning script

Re: [PHP-WIN] PHP4.04 Methodes mkdir(), fopen() brings an Error on a WinXP/IIS5.0 PC "Permission denied"

2002-05-05 Thread toby z
i had the same problem . checkout your dir where you've saved the file you are executing . check the path in your code . with me ... i put another "\" in the path after the ie $fp=fopen("c:\\name.txt", "w"); vat happened after this waz it didnt give me the errors you are ge

[PHP-WIN] Re: Security Alert! PHP CGI cannot be accessed directly. HELP

2002-05-05 Thread Numero 6
[EMAIL PROTECTED] (Roberto Valverde), il 04 mag 2002, trasse un profondo sospiro e disse: > Hi all, > > please I need help, the Message error is: > > Security Alert! PHP CGI cannot be accessed directly. > This PHP CGI binary was compiled with force-cgi-redirect enabled. This > means that a pag

php-windows Digest 5 May 2002 09:53:20 -0000 Issue 1128

2002-05-05 Thread php-windows-digest-help
php-windows Digest 5 May 2002 09:53:20 - Issue 1128 Topics (messages 13544 through 13550): Security Alert! PHP CGI cannot be accessed directly. HELP 13544 by: Roberto Valverde Session 13545 by: Ib Helmer Nielsen 13546 by: Ib Helmer Nielsen Re: Good Book for PHP ??

[PHP-WIN] PHP4.04 Methodes mkdir(), fopen() brings an Error on a WinXP/IIS5.0 PC "Permission denied"

2002-05-05 Thread Thorsten Hodes
Hi Newsgroup! I have a big Problem with PHP-4.0.4 on a WinXP/IIS 5.0 PC, when I want to write an File or create a Folder with the PHP-Methodes "mkdir" bzw. "fopen"! The PHP brings me an Error like: Warning: MkDir failed (File exists) in functions.inc.php on line 56 Warning: fopen("C:/Programme/

[PHP-WIN] How do i get SSI (Server Side Include) to work

2002-05-05 Thread jerico
I've tried everything - and I'm desperate and frustrated I'm using: Windows XP Apache 2.035 PHP 4.2.0 installed as Apache module (/experimental/apache2filter.dll) ...using a VIRTUAL HOST in httpd.conf ServerName localhost DocumentRoot "c:/web" DirectoryIndex index.htm