RE: [PHP-WIN] Uploading Files

2001-05-24 Thread Asendorf, John
I had that same problem. It fixed itself when I changed directories and recreated the directories. I'm not certain if it had to do with the permissions on those folders or what, but that made all the difference. Have you double checked your php.ini file for the upload directory? John -

[PHP-WIN] COM type mismatch

2001-05-24 Thread G Hughes
Does anyone know the reason for the type mismatch error which often seems to happen when using COM objects? The only piece of info I've seen suggested that a COM object can't be passed as a variable to a second COM object. Is this true, and if it is how might this be worked around. Thanks for an

[PHP-WIN] Re: [PHP-DB] Uploading Files

2001-05-24 Thread Terry Romine
I've had problems enough with uploading files that I find the following checkpoints VERY important: 1) directory privileges (you indicate you have those set 777 2) the tag needs: a) enctype = "multipart/form-data" b) method = "post" HTH Terry On Thursday, May 24, 2001, at 12:1

[PHP-WIN] Need Help

2001-05-24 Thread Steve Dowell
I have a project that needs to take data from a form and pass that data to another webserver then receive a response from that other webserver in the form of an XML document and then write that document to a file. Can anyone point me to information on how to accomplish this? Thanks in advance fo

RE: [PHP-WIN] Does OCILogon need ISAPI to stay persistent?

2001-05-24 Thread Paco Ortiz
Hi, >Which version of PHP are you using Paco? I've got 4.0.4 on my webserver... it worked fine for me from 4.0.3pl1, but I read many people had problems with 4.0.4... I'm afraid my experience will not be very useful for others here... Greetings, Paco 5/23/01 7:47:46 PM, "Asendorf, John" <[

[PHP-WIN] Uploading Files

2001-05-24 Thread Randall Barber
I have a NAGGING file upload problem. Details: Win2k, IIS5, PHP v4.0.4 As I understand this system, PHP uploads all files to a temporary place on disk. From there you can move them anywhere you want to. Well here's the scenario: Users are allowed to upload PRN files. Once uploaded I have a

RE: [PHP-WIN] Remote UserName

2001-05-24 Thread Erik Ableson
Title: RE: [PHP-WIN] Remote UserName Hmm - the problem that I'm having is that I want this interaction to be invisible to the end user.  I don't want them to be presented with a login dialog since I _should_ (somehow) be able to identify them by the id they presented to the proxy with which I

RE: [PHP-WIN] NT Domain UserNames

2001-05-24 Thread Romeo, Domenic A
Only if you use Internet Explorer and enable NT-Challenge Response for Authentication in IIS. They will not get a prompt at all when accessing secure pages, unless the account that they are logged in with does not have the correct privileges. This will not work with Netscape. Dom -Original

Re: [PHP-WIN] NT Domain UserNames

2001-05-24 Thread Phil Driscoll
On Thursday 24 May 2001 16:20, Vishal Shah wrote: > My question is: Is there a way to integrate the Network username/password > into the website without telling them to re-enter it everytime they try to > access the site for the first time ? The revolting way to do this, which may be ok on your

Re: [PHP-WIN] NT Domain UserNames

2001-05-24 Thread OoCobra97
Hello Vishal, Just to get this straight a bit, when you say entering the nt domain, your really saying for when they log on to the system right? Let us know (or me, if everyone else gets this, hehe) ~Jeff In a message dated 5/24/2001 11:19:33 AM Eastern Daylight Time, [EMAIL PROTECTED] writes

[PHP-WIN] Need Help

2001-05-24 Thread Steve Dowell
I have a project where I need to use information gathered from a form and pass it to another web server and wait for a response from the other server in the form of an XML document then write the response to a file. Can anyone point me to information on how to accomplish this. Thanks in advance

[PHP-WIN] NT Domain UserNames

2001-05-24 Thread Vishal Shah
I have a critical problem: I have an intranet built using PHP and SQL server residing behind an NT domain, and only the people who have access to that NT doamin can view this site. Using IIS Authentication types, I have been able to make the site password protected and the any user with the usern

Re: [PHP-WIN] Remote UserName

2001-05-24 Thread OoCobra97
Hello Erik, You can access the username and password by possibly a getenv or http_env_vars...and using PHP_AUTH_USER and PHP_AUTH_PW if you go to a page that has the phpinfo() command in it after youve authenticated, it will show you these variables...there located under php variables. Hope

[PHP-WIN] Remote UserName

2001-05-24 Thread Erik Ableson
Hmm - an odd one here.  I am working in an environment where all browsers are forced to authenticate to a Netscape proxy server and all traffic internal and external is routed through the proxy. Since all users are authenticated as soon as their browser opens, I'd like to be able to access t

Re: [PHP-WIN] Com not work in PHP 4.0.5

2001-05-24 Thread Alain Samoun
Yes, COM is completely broken in PHP4.05 :( Try 4.06 version at: http://www.zend.com/snapshots/ Alain On Thu, May 24, 2001 at 03:56:42PM +0400, Igor wrote: > When I try to call COM funcs in php 4.0.5, I recieve system error (memory > read/write error) > [COM is built-in in PHP for Win and I don`

Re: [PHP-WIN] %s %s addition... what's it do and is it my problem?

2001-05-24 Thread Phil Driscoll
On Thursday 24 May 2001 13:30, Asendorf, John wrote: > For those of us running IIS, the instructions say to follow the php.exe > setup in the CGI mappings as %s %s... Obsolete instructions which will magically have disappeared with the 4.0.6 release. I guess that IIS knows how to fire up php and

[PHP-WIN] Making Maintainable Software

2001-05-24 Thread Dickerson, Monty
Thank God those old days of catering to the PC are GONE.. ?.. and now we can cater to the developer, or more accurately the poor sucker 12-18 months later who has to maintain our code !!! I left perl cgi hacking because perl is a "write once" language; I could hardly even maintain my own code 1

[PHP-WIN] PhpDEV

2001-05-24 Thread Brett Shaw
for those of you who are interested im developing a web site for php developers to share resources and information. you wont need to be a member or commit yourself to anything its totally free. you can view the site at the following URL: - http://www.oosha.com/phpdev/index.php3 Its empty at the

Re: [PHP-WIN] %s %s addition... what's it do and is it my problem?

2001-05-24 Thread Egil Helland
AFAIK, this means that your CGI application (php.exe) receives both a script (the first %s) and parameters (the second %s). On Thu, 24 May 2001 08:52:58 EDT, [EMAIL PROTECTED] wrote: >I'm not sure what the %s means, but with your 404 error problem and >iis 5 at >least...you can stop those cgi err

Re: [PHP-WIN] %s %s addition... what's it do and is it my problem?

2001-05-24 Thread OoCobra97
I'm not sure what the %s means, but with your 404 error problem and iis 5 at least...you can stop those cgi errors you get, when you create the script mapping in IIS (right where your seeing the %s %s) you should see 2 checkboxes on the bottom of that page, one is "script engine" the other is

[PHP-WIN] %s %s addition... what's it do and is it my problem?

2001-05-24 Thread Asendorf, John
For those of us running IIS, the instructions say to follow the php.exe setup in the CGI mappings as %s %s... does anyone know what this does? I'm wondering if it is causing incorrect URLs to not allow an instance of php.exe to shut down. i.e., when someone type in an incorrect URL that ends in

[PHP-WIN] Com not work in PHP 4.0.5

2001-05-24 Thread Igor
When I try to call COM funcs in php 4.0.5, I recieve system error (memory read/write error) [COM is built-in in PHP for Win and I don`t know where is the problem.] Curiously and remarkably that COM works well in PHP 4.0.4 Had somebody experienced the same problems? -- PHP Windows Mailing List

php-windows Digest 24 May 2001 09:17:25 -0000 Issue 615

2001-05-24 Thread php-windows-digest-help
php-windows Digest 24 May 2001 09:17:25 - Issue 615 Topics (messages 7899 through 7905): Re: RE:escape loop on timeout 7899 by: Brendan Re: Managing Sessions 7900 by: Ignatius Teo Re: THE SOLUTION 7901 by: Nold, Mark Error using PHP installer 7902 by: Help

Re: [PHP-WIN] anti-advocacy: Larry Seltzer, pcmag May'01 pub.

2001-05-24 Thread Stanislav Malyshev
J>> sTrPoS J>> StRpOs J>> STrpOS J>> stRPos J>> sTRpOS J>> ... J>> sTRPOS J>> STRPOs Once I had to deal with an assembler for some embedded processor that allowed symbol names up to 6 characters. That was exactly the way to make different readable identifiers, so t

[PHP-WIN] Dr F!@#son error....argh

2001-05-24 Thread Brendan
Hi PHP keeps crashing and I cant isolate why because i just get that damned Dr Watson error... the error is Acess Violation(0xc005), Address: 0x7800d6a1 it causes php to crash and the script to stop executing... i get a cgi no header error in the browser.. anyone have any ideas? would be MUC

[PHP-WIN] Windows ME bug? - php_gd.dll

2001-05-24 Thread Bernie Kruger
Has anyone managed to get PHP 4.0.5 (CGI or ISAPI) working on Windows ME, PWS 4 (Supplied with Win 98)? I get everything to work, except php_gd.dll. My PWS 4 crashes when I uncomment it in the php.ini. I have tried everything and I think it could have something to do with kernel32.dll (I can be