[PHP-WIN] Re: configuration error... where??

2003-03-25 Thread Vladimir Galkov
well ... problem wasn't in php. it was in NT filesystem owner. -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] configuration error... where??

2003-03-24 Thread Vladimir Galkov
I get standart distr. 4.1.1. (ok it's not the last, I know but works before). Run Installer then set several things in php.ini (first of all) enable_dl = off setup IIS 5 to run php to process *.php Then tests all that... and found a problem: Any php script shows blank page on browser (ju

[PHP-WIN] Re: PWS or IIS?

2003-02-12 Thread Vladimir Galkov
I have to use IIS5 on one of my servers after approximately one and a half year I don't become a fan of it... apache much better (but compile it by yourself!). Lacks: 1. Large memory usage. 2. Logs of very popular resoureses become mad: IIS5 writes only what it want to write but all what I set

Re: [PHP-WIN] reading lines from a file

2003-02-11 Thread Vladimir Galkov
somth like this may be: $f_array = file (FILE_NAME); for ($i=0; $i ÓÏÏÂÝÉÌ/ÓÏÏÂÝÉÌÁ × ÎÏ×ÏÓÔÑÈ ÓÌÅÄÕÀÝÅÅ: [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Yes, eventually. I want to come up with a good method because this file is > going to be supplied to me on a fairly regular basis. > > George >

[PHP-WIN] Re: Problems with mail()

2003-02-10 Thread Vladimir Galkov
I feel the qweston become offtopick soon ;-))) 1. Look into permissions of the user you set to run web service 2. Use simple code to look at real values your php enviroment varibles have. 3. Check [mail function] ; For Win32 only. SMTP = < smtp.somewhere.go > ; For Win32 only. sendmail_from

[PHP-WIN] Re: PHP and Apache2 experimental?

2003-02-08 Thread Vladimir Galkov
"Matt Hillebrand" <[EMAIL PROTECTED]> ÓÏÏÂÝÉÌ/ÓÏÏÂÝÉÌÁ × ÎÏ×ÏÓÔÑÈ ÓÌÅÄÕÀÝÅÅ: 003301c2cf0c$5e029560$0100a8c0@beast">news:003301c2cf0c$5e029560$0100a8c0@beast... > Hello. I'm just wondering when the use of PHP with Apache 2 for Windows > will no longer be considered "experimental." I'm tired of using

[PHP-WIN] Re: Mail newbie Question

2003-01-29 Thread Vladimir Galkov
check php.ini [mail function] ; For Win32 only. SMTP = you ISP's mail server (or your's). after that restart webserver and use mail() function. You can check what SMTP server use your php from phpinfo() function. "Duncan" <[EMAIL PROTECTED]> ???/ ? ?: 002c01c2c70d$62

Re: [PHP-WIN] Is this possible

2003-01-29 Thread Vladimir Galkov
> You could allways call a javascript when you submit the form. the javascript or somth like that: if () { $address = 'http://www.adress_one.ru'; } else { $address = 'http://www.adress_one.ru'; } -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php

[PHP-WIN] Re: Unsetting PHP_AUTH_*

2003-01-29 Thread Vladimir Galkov
I've the variables $PHP_AUTH_USER and $PHP_AUTH_PW set and I want to unset them because I check if they're set or not in order to show the authentication dialog box. The unset command appears not to be working with them (even if I try doing unset($GLOBALS['PHP_AUTH_USER'])...) Any suggestion? Tha