RE: [PHP-WIN] PHP HTTP Authentication, Win2k IIS

2003-02-20 Thread Rich Gray
Are you doing the hack needed to use HTTP authentication with IIS? HTTP Authentication is only supported by Apache with PHP as a module, but there is a hack/workaround for IIS/ISAPI. Cheers Rich -Original Message- From: Rico Derks [mailto:[EMAIL PROTECTED]] Sent: 20 February 2003 07:49

[PHP-WIN] GD

2003-02-20 Thread Olafsson
I'm using php 4.3.1 on a Windows XP and I use IIS 5.1 as a server.I tried to use GD lib but is seems like the built in support of bundle GB is missing. Maybe I'm missing something but for me someone forgot to include boundled libgd in Windows version. I that true? So can anyone tell my how I

RE: [PHP-WIN] Force a user to download a text file from a link

2003-02-20 Thread FARRINGTON, RYAN
you could also try this: header(Content-Type: application/octet-stream); header(Content-Type: application/force-download); header(Content-Disposition: attachment; filename=$name); header(Content-Transfer-Encoding: text); or this header( Content-type: application/octet-stream ); header(

[PHP-WIN] Re: GD

2003-02-20 Thread Olafsson
Ive figured it out :) Olafsson [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I'm using php 4.3.1 on a Windows XP and I use IIS 5.1 as a server.I tried to use GD lib but is seems like the built in support of bundle GB is missing. Maybe I'm missing something

RE: [PHP-WIN] GD

2003-02-20 Thread Rich Gray
I'm using php 4.3.1 on a Windows XP and I use IIS 5.1 as a server.I tried to use GD lib but is seems like the built in support of bundle GB is missing. Maybe I'm missing something but for me someone forgot to include boundled libgd in Windows version. I that true? So can anyone tell my how

[PHP-WIN] Re: CGI installation problem

2003-02-20 Thread Brian 'Bex' Huff
ok... here's the thing... The security issue seems to be that the flag 'cgi.force_redirect' doesn't work in 4.3.0. This is only a security problem with Apache, NOT IIS: http://www.php.net/release_4_3_1.php Id recommend going to the downloads page and using an older version of PHP, and

php-windows Digest 20 Feb 2003 15:47:39 -0000 Issue 1597

2003-02-20 Thread php-windows-digest-help
php-windows Digest 20 Feb 2003 15:47:39 - Issue 1597 Topics (messages 18626 through 18635): PHP HTTP Authentication, Win2k IIS 18626 by: John Toews 18629 by: Rico Derks 18630 by: Rich Gray Re: geek fishing stuff 18627 by: Andrew Ferguson Uploading images

Re: [PHP-WIN] GD

2003-02-20 Thread Olafsson
yes I used GD2 Rich Gray [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I'm using php 4.3.1 on a Windows XP and I use IIS 5.1 as a server.I tried to use GD lib but is seems like the built in support of bundle GB is missing. Maybe I'm missing something

[PHP-WIN] WMI in PHP

2003-02-20 Thread Mike
I am looking for any help for using any WMI in php. Looking through the Platform SDK yesterday there were several examples of implementing it with different scripting languages. As far as loading it in PHP what do I need to do? (If you cant tell i'm new to the windows server side of things).

[PHP-WIN] Writing in txt file...

2003-02-20 Thread Afan Pasalic
Hi, I'm working on adding a new row in text file. I use file() to transfer file to array and then after recognizing the row with MARK_HERE hadd new row above the MARK row. It works fine. I use this code: $AddContent = Content of the new line...; $lines = file('old_content.txt'); for($i=0;

RE: [PHP-WIN] PHP HTTP Authentication, Win2k IIS

2003-02-20 Thread John Toews
Thanks Rich, and Rico... I turned register_globals on to no effect. The only odd thing I am doing for IIS is that I installed PHP under the ISAPI filters tab as well as the configuration button. Normally I only install under the configuration button. But it doesn't seem to help. Thanks! ---

[PHP-WIN] file processing question

2003-02-20 Thread paradiddles
greetings, I am learning the basics of file processing, starting w/ how to write data to a file. So far, I've created the .txt file and wrote the code. This is all being done on my local windows 2k PC for practice. My question is, where should I save the .txt file? So far, my forms and .php

Re: [PHP-WIN] file processing question

2003-02-20 Thread Luis Ferro
All the file functions can work all over the server, and can even work in diferent servers (if you got direct permissions, they work as in the local server, if not, you must send username/password to get permission). As a rule, it is advisable to read/write all the files in the local server,

[PHP-WIN] Upgrade from 4.2.3 to 4.3.1

2003-02-20 Thread Nick H.
When updating from 4.2.3 to 4.3.1, was there any changes as to where php pulls the modules from? In the .ini, I have it set to ./ as the directory for modules, (.ini is in c:\winnt) but it seems as though it wants to pull the modules from the c:\php folder. Is there something I am missing here

[PHP-WIN] File upload - permission denied

2003-02-20 Thread Frans Bakker
Hello everybody, I use PHP (with MySQL) on a Windows2000 machine. For an application that I am writing I need a simple straight forward file upload system through a form, like this: echo form action=\Example_Action.php\ enctype=\multipart/form-data\ method=\post\ input type=\hidden\

[PHP-WIN] Authenticate user

2003-02-20 Thread Rui
I'm trying to make a page that requires an authentification by the user. A lot of problems appear when I run a script copied from the O'Reilly : Web Database Applications. One of them is the function :clean: that doesn't exist, according with the php compiler: session_start();

Re: [PHP-WIN] PWS or IIS?

2003-02-20 Thread Leo G. Divingracia III
m1nt ch3w wrote: Howdy all, Just got Win XP Pro, and was wondering which server to go for. IIS or PWS? Which one is more stable and stuff like that. Thanks in advance, /m1nt hee hee... neither. check out apache. ;) -- Leo G. Divinagracia III [EMAIL PROTECTED] z -- PHP Windows

php-windows Digest 21 Feb 2003 04:15:46 -0000 Issue 1598

2003-02-20 Thread php-windows-digest-help
php-windows Digest 21 Feb 2003 04:15:46 - Issue 1598 Topics (messages 18636 through 18645): Re: GD 18636 by: Olafsson WMI in PHP 18637 by: Mike Writing in txt file... 18638 by: Afan Pasalic Re: PHP HTTP Authentication, Win2k IIS 18639 by: John Toews file

Re: [PHP-WIN] Authenticate user

2003-02-20 Thread toby z
hi rui 1st of all y do u want to clean up user data collected :S 2nd if u only want to authentify a user (logged into ur system/site) try this : // session check ! ! ! ! session_start(); if(!session_is_registered(name-of-session-u-registered-for-user )) { header(Location:

RE: [PHP-WIN] PHP HTTP Authentication, Win2k IIS

2003-02-20 Thread Juraj Hasko
Hi, I don't know if this is what you need but I'm using authentication on IIS 5.1 PHP 4.3.0 with this configuration: PHP: register_globals off IIS config: Anonymous access off Integrated windows authentication on Cheers, Juraj -Original Message- From: John Toews