Re: [PHP-WIN] PHP as ISAPI on IIS 5.0/win2k server

2001-11-21 Thread Phil Driscoll
On Tuesday 20 November 2001 6:16 pm, Laurent Protti wrote: > i've got a little problem, I try installing PHP 4.06 on my web server as an > ISAPI filter. I've modified the webserver configuration to add the filter > (php4isapi.dll which I copied in \winnt\system), modified the home > directory conf

[PHP-WIN] PHP & ASP mix. Any problem?

2001-11-21 Thread Pablo Marugán
I have the next question for you people. I'm preparing a WEB application that will make use of PHP & Microsoft SQL Server 2000 running over a W2K Server with IIS 5.0 and ASP active. So, here are the questions: a.. Should there be any problem on running asp & php on the same server (the question

Re: [PHP-WIN] PHP & ASP mix. Any problem?

2001-11-21 Thread David Elliott
Dear Pablo On 21 November 2001 at 11:06:08 +0100 (which was 10:06 where I live) Pablo Marugán thoughtfully wrote the following PM> I'm preparing a WEB application that will make use of PHP & Microsoft SQL PM> Server 2000 running over a W2K Server with IIS 5.0 and ASP active. So, here PM> are th

Re: [PHP-WIN] PHP & ASP mix. Any problem?

2001-11-21 Thread George Pitcher
Pablo, I am not running ASP (or MSSQL) but I do run Lasso (a cgi type application like ASP) and Filemaker as the db alongside PHP 4.0.6 on IIS4 (NT4). As long as the page called has the appropriate extension (.php or .lasso) there's no conflict. Obviously you will not be able to mix your code in

[PHP-WIN] Unable to create scratch file...

2001-11-21 Thread Niclas Krantz
Hello! When I recive mails from a POP-server and want to read the message body, i get a error: "Unable to create scratch file: Permission denied (errflg=2)" I have set all the permissions needed I think! What's the problem? I run WinXP Pro, PHP 4.006 /Niclas -- PHP Windows Mailing List (htt

[PHP-WIN] PHP & Win XP problem ?

2001-11-21 Thread Cesare Quadalti
My problem is very strange! I use win XP with Apache, Php 4.0.6 and Mysql as services (I have updated Apache at 1.3.22 and now It works as service..). My site works fine in local and intranet also, but from remote (Internet) many pages are often corrupted and sometimes are present pieces of co

[PHP-WIN] filemtime

2001-11-21 Thread Nicolas Blouin
When I am uploading a Word file from the client machine to the server, before overwriting the file on the server, I am checking for the last time each of the two files were modified. If the file being uploaded is older than the one on the server, I don't want the upload to happen. The problem

[PHP-WIN] ODBC to Access with Autonumber Field

2001-11-21 Thread Greg Sohl
Hi, Does anyone have an example of Inserting a record to a table in an Access database where one of the fields is an Autonumber field, and most importantly, retrieving the value of the newly inserted Autonumber field? I'm looking for the equivilant of mysql_insert_id() for ODBC. Thanks. Greg Soh

[PHP-WIN] Problem with php 4.0.6 extensions

2001-11-21 Thread Harald Schmidt
Hello, System: Win 98 PWS 4.0 PHP4.0.6 i have a problem with my php 4.0.6. Whenever i try to load a extensions extend i get the error < metabase Error = 1722> from pws. It doesn´t matter which extensions. What can i do ? thanks Jochen Bauer

RE: [PHP-WIN] ODBC to Access with Autonumber Field

2001-11-21 Thread Pablo Marugán
You should try inserting the record with the next syntax: INSERT INTO table (fieldname1,fieldname2) VALUES (fieldname1value,fieldname2value) This way you can ignore the Autonumber field... For the second question, an option could be having a timestamp field on the table you want and then, makin

[PHP-WIN] phpMyAdmin Advenced Auth problem

2001-11-21 Thread Arnaud Lesauvage
I just installed phpMyAdmin following the install instructions provided with the doc. The standard user connects to the mysql db just fine, (ie the login/password window pops up), but the login/password that I provide after that is always refused. I tried to login with the root but it doesn't help

[PHP-WIN] iis apache together?

2001-11-21 Thread Mike Webby
Hope your all well is it possible to run apache on our windows advanced server alongside iis as we have 50 some sites on iis already and do not want to have to move them all to apache just one or two php sites? maybe on another port or something as shtml files fail to execute and the crypt in php

php-windows Digest 21 Nov 2001 19:26:48 -0000 Issue 866

2001-11-21 Thread php-windows-digest-help
php-windows Digest 21 Nov 2001 19:26:48 - Issue 866 Topics (messages 10557 through 10570): Re: PHP as ISAPI on IIS 5.0/win2k server 10557 by: Phil Driscoll PHP & ASP mix. Any problem? 10558 by: Pablo Marugán 10559 by: David Elliott 10560 by: David Elliott

RE: [PHP-WIN] iis apache together?

2001-11-21 Thread Asendorf, John
I'm doing it. I had to do it because I couldn't keep Oracle stable while using IIS with PHP. I've put Apache on a separate port. I'm running NT4 and IIS4 and Apache... it has wroked very nicely. I should say that I'm running Apache from the console. I haven't attempted to run Apache as a serv

RE: [PHP-WIN] iis apache together?

2001-11-21 Thread Asendorf, John
Actually, I couldn't keep IIS stable while running PHP with Oracle is what I meant. - John Asendorf - [EMAIL PROTECTED] Web Applications Developer http://www.lcounty.com - NEW FEATURES ADDED DAILY! Licking County, Ohio, USA 740-349-3631 Nullum magnum ingenium sine mixtura deme

[PHP-WIN] RE: iis apache together?

2001-11-21 Thread Tim Foster
Shouldn't be a problem. I'm running PHP with PWS on a WinNTWorkstation box. I set aside a special directory (not in /wwwroot/inetpub, but you should still be able to do it), created a virtual directory and pointed it to the PHP directory, set the appropriate file extentions and script processor

[PHP-WIN] exec, system on win2k

2001-11-21 Thread Doug Brewer
I know this topic probably comes up from time to time, but I wanted to get up to date feedback. on php 4.06/win2k, exec(), system(), and passthru() work only sporadically, in spite of the change notes for 4.06 that state the "exec family" problem was fixed. For instance, try some simple shell co

[PHP-WIN] File upload timeout.

2001-11-21 Thread Brian J. Hoffman
I'm trying to do a simple file upload using the sample code from php.net, but after trying everything under the sun, it still doesn't work. I've tried most of the suggestions on php.net and have searched the archives of this mailing list, still to no avail. When I click on "Send File", it appears

RE: [PHP-WIN] File upload timeout.

2001-11-21 Thread Ryan Marrs
And you've checked to make sure that the user the web server is running as has access to write to the temp directory, and the directory you're attempting to upload to correct? Ryan -Original Message- From: Brian J. Hoffman [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 21, 2001 3:

Re: [PHP-WIN] iis apache together?

2001-11-21 Thread Mentor Mala
The only way I can think of that you can actually do that would be to run either one of the webservers on a different port as it will give you port conflicts. - Original Message - From: "Mike Webby" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, November 21, 2001 2:25 PM Su

[PHP-WIN] Problems with $PHP_AUTH_USER and $PHP_AUTH_PW

2001-11-21 Thread Raoul Snyman
Hi, I'm having a couple of problems with $PHP_AUTH_USER and $PHP_AUTH_PW and my log out page. When I log out, I unset $PHP_AUTH_USER and $PHP_AUTH_PW, except that when I log in again, it logs straight back into the system, without asking for the user name and password. Is there any way to fix t

Re: [PHP-WIN] PHP as ISAPI on IIS 5.0/win2k server

2001-11-21 Thread Laurent Protti
Thank you, it worked this way, I just copied both DLLs in the system32 directory and the ISAPI filter loaded right away ! Many thanks again "Phil Driscoll" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > On Tuesday 20 November 2001 6:16 pm, Laurent Protti wrot

[PHP-WIN] PHP & personal web server

2001-11-21 Thread Rob Bennion
Hi, I am totally new to PHP but can someone tell me if it is possible to install php on a machine and run it with microsoft personal web server (like I currently do with my asp pages) Any help in assisting me move from ASP to PHP would be gratefully appreciated. Thanks in advance Rob -- PHP

[PHP-WIN] Re: iis apache together?

2001-11-21 Thread Mike Webby
We installed apache and it runs we used bindaddress to just one of our IP's and it has not interfered with the iis so far so good. We cannot get .shtml files inside one of our shtml files just does not work ? any ideas as it used to work on the unix host we used to have Thank you for your replie

Re: [PHP-WIN] Re: Win 2k, IIS 5 and PHP

2001-11-21 Thread Laurent Protti
Another person reading this forum told me the solution, I had to copy both php4isapi.dll and php4ts.dll in the winnt\system32 directory, the php.ini properly configured in the \winnt directory, add the ISAPI filter and it worked fine... Laurent "Martin Steel" <[EMAIL PROTECTED]> wrote in message

Re: [PHP-WIN] PHP & personal web server

2001-11-21 Thread Mentor Mala
I believe you should be able to.. PWS should work just like IIS 4.0 or higher. I mean I never tried it myself.. I run all of my PHP, PERL from either apache or IIS 5.0.. My suggestion would be to use APACHE for windows. It is free, and it works pretty good A few links below should help you ge

[PHP-WIN] Re: PHP4 & Win2k 'Application Error'

2001-11-21 Thread Julio Nobrega Trabalhando
I had this problem with the CGI installation version. Modify your httpd.conf and adapt it to run PHP as an Apache module and all should work fine. -- Julio Nobrega No matter where you go, &this. "Jason Reid" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I