Re: [PHP-WIN] PHP on win2000 : cgi error

2001-05-19 Thread M. Weller
I receive the same message, but only if I try to sent attachments larger then 3kB. This seams to be a bug under w2k. ""Hyoneg Kim"" <[EMAIL PROTECTED]> schrieb im Newsbeitrag 9e6mtt$jk1$[EMAIL PROTECTED]">news:9e6mtt$jk1$[EMAIL PROTECTED]... > I have w2000 and installed IIS 5.0 > I installed PHP

Re: [PHP-WIN] PHP and Multiple databases

2001-05-19 Thread Manuel Lemos
Hello Scott, On 17-May-01 12:42:26, you wrote: >I am fairly new to PHP and have used it on a few sites but I have not been >dealing with databases much (in PHP). I am wanting to know if a single >instance of PHP can be configured to connect to multiple databases or does >is a new instance req

Re: [PHP-WIN] the /php/pear/DB abstraction

2001-05-19 Thread Manuel Lemos
Hello John, On 16-May-01 12:13:49, you wrote: >Hello Monty, >As an author of a database class library (http://php.weblogs.com/adodb) I >can understand the need for good error messages. >I decided in adodb to avoid using virtualised error messages because of this >issue. It's more important to

Re: [PHP-WIN] Why i can't write to remote file ?

2001-05-19 Thread Darren
> Hi Darren, > > i have tried omitting http, so the line 11 becomes : > > $fp = fopen("c:/webshare/root/examples/datafile.txt","w"); > > Is does not still work, and when i run it i have the warning message: > > -- > Total cost of

Re: [PHP-WIN] PHP on win2000 : cgi error

2001-05-19 Thread Steve Perrin'
Hyoneg, You say you have extension_dir in PHP.INI set to c:/php, unless you have moved things (PHP subdirectories) it should read c:/php/extensions. ""Hyoneg Kim"" <[EMAIL PROTECTED]> wrote in message 9e6mtt$jk1$[EMAIL PROTECTED]">news:9e6mtt$jk1$[EMAIL PROTECTED]... > I have w2000 and install

[PHP-WIN] PHP on win2000 : cgi error

2001-05-19 Thread Hyoneg Kim
I have w2000 and installed IIS 5.0 I installed PHP 4.0.5 after that I put extension_dir = c:/php when I tryed the test.php under php directory it gives me CGI Error The specified CGI application misbehaved by not returning a complete set of HTTP headers. The headers it did return are: -- PHP

[PHP-WIN] PHP & IIS system() a program in the forground

2001-05-19 Thread Root88
I am running PHP under Windows 2000. I want to play a .wav file on my machine when a certain page gets loaded. I am using the system() function. I can get my machine to run the program, but it runs in the background. I can't hear the .wav when it does that. Is there a way to run the program in th

php-windows Digest 19 May 2001 19:15:20 -0000 Issue 607

2001-05-19 Thread php-windows-digest-help
php-windows Digest 19 May 2001 19:15:20 - Issue 607 Topics (messages 7746 through 7758): Re: Any good editor for PHP in Windows? 7746 by: elias 7750 by: John Lim 7756 by: PHPBeginner.com how to exucute PHP file automatically on Window NT4.0 scheduler 7747 by

[PHP-WIN] PHP & Domino?? (Lotus Notes)

2001-05-19 Thread Mike Kelley
Anyone do anything in this arena yet? I searched the archives for 2001 but have yet to go farther back. I know I can use the COM ability to get info from Domino but I'm looking for any success stories with Lotus Domino. -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail:

RE: [PHP-WIN] PHP/Javascript

2001-05-19 Thread Mike Flynn
Good point. I personally do that every time -- I never rely on client-side script-produced values, I just use them for aesthetics -- so the user can see the changes right before their eyes before submitting. But if you say have 3 fields, A B and C where C is A*B, I will have PHP recalculate C

RE: [PHP-WIN] Any good editor for PHP in Windows?

2001-05-19 Thread PHPBeginner.com
EditPlus is the best. Sincerely, Maxim Maletsky Founder, Chief Developer PHPBeginner.com (Where PHP Begins) [EMAIL PROTECTED] www.phpbeginner.com -Original Message- From: elias [mailto:[EMAIL PROTECTED]] Sent: Sunday, May 20, 2001 2:52 AM To: [EMAIL PROTECTED] Subject: Re: [PH

Re: [PHP-WIN] PHP/Javascript

2001-05-19 Thread Mike Flynn
You can do it either way. You can either have the user change values, then hit the "recalculate" or "update" button which calls the PHP script to update all values.. or you can use JavaScript to update some simple calculations immediately after the user makes any changes, but you still need to

RE: [PHP-WIN] how to exucute PHP file automatically on Window NT4.0 scheduler

2001-05-19 Thread Svensson, B.A.T.
>I am working with PHP, Mysql on WINDOWS NT4.0.(IIS 4.0) >My problem is regarding Window Scheduler. I want to send mail >every day at perticular time to the email address list stored >in Mysql database automatically. Can't you solve it with AT.exe? (Works similar as cron under unix). -- PHP Wi

[PHP-WIN] PHP/Javascript

2001-05-19 Thread Bob Sears
This is what my screen looks like: I want to order ... description imagedropdown box @ 7.95 each = [text box] containing 0-20 numerics I had been contemplating using Java

Re: [PHP-WIN] Canceling a Query

2001-05-19 Thread John Lim
You mentioned that the results don't return many rows. So if you are using a lot of aggregate functions (max, min, etc), it's possible to precalculate them every night and join on the precalculated values. Much faster. I also believe there are data warehousing solutions that automatically precalc

Re: [PHP-WIN] MS Access + Linux + PHP

2001-05-19 Thread John Lim
The ADODB database library implements a similar solution to Tim's, but using HTTP as the transport layer, and a hybrid of CSV and the PHP serialize( ) function for the data. It's very complete as you can perform select/delete/insert/update and get the error messages from the windows server transp

Re: [PHP-WIN] Any good editor for PHP in Windows?

2001-05-19 Thread John Lim
Create a shortcut and run from the command-line: php.exe -q -q means suppress HTTP headers ""elias"" <[EMAIL PROTECTED]> wrote in message 9e57sk$9k$[EMAIL PROTECTED]">news:9e57sk$9k$[EMAIL PROTECTED]... > www.editplus.com > www.sapien.com (PrimalScript) > > -elias > > ""news.php.net"" <[EMAIL

Re: [PHP-WIN] how to exucute PHP file automatically on Window NT4.0 scheduler

2001-05-19 Thread Steve Perrin'
Hi Lalit, You should have no problem in running your script. Just create a batch file, change drive then directory and add PHP YOURSCRIPT.PHP. eg: DOIT.BAT @ECHO OFF D: CD\PHP4 PHP YOURSCRIPT.PHP EXIT Then use the AT command to invoke the batch file at the times required. ""Lalit"" <[EMAIL P

RE: [PHP-WIN] how to exucute PHP file automatically on Window NT4.0 scheduler

2001-05-19 Thread Mr. Adam ALLEN.
I have the Task Scheduler on my computer - (maybe it's the same thing but different names, I have IE 4.01 installed, it might be different in a newer version of IE - I seem to recall it's a part of IE but it's not there on another server I have by my side). Anyhow. If you run the program

[PHP-WIN] how to exucute PHP file automatically on Window NT4.0 scheduler

2001-05-19 Thread Lalit
I am working with PHP, Mysql on WINDOWS NT4.0.(IIS 4.0) My problem is regarding Window Scheduler. I want to send mail every day at perticular time to the email address list stored in Mysql database automatically. The subject and mail body is also stored in database. Window scheduler invokes only e

Re: [PHP-WIN] Any good editor for PHP in Windows?

2001-05-19 Thread elias
www.editplus.com www.sapien.com (PrimalScript) -elias ""news.php.net"" <[EMAIL PROTECTED]> wrote in message 9e4jua$526$[EMAIL PROTECTED]">news:9e4jua$526$[EMAIL PROTECTED]... > Hello, > I wondering is they any good editor for PHP in windows, like Visual > Interdev for ASP > > -- > Thank you >