php-windows Digest 23 Jan 2004 06:05:52 -0000 Issue 2093

2004-01-22 Thread php-windows-digest-help
php-windows Digest 23 Jan 2004 06:05:52 - Issue 2093 Topics (messages 22641 through 22649): Re: Open Port limits on XP 22641 by: Anthony 22642 by: Stuart Re: Show the Progress of a file being uploaded 22643 by: Anthony Re: php.ini & smtp (php 4.3.4) 22644 by

[PHP-WIN] fastcgi again on 4.3.X

2004-01-22 Thread Rich Stupek
Well still looking for the answer to how to run PHP 4.3.X as a standalone in a server farm. Anyone out there have the answer? -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-WIN] Running multiple versions of php on IIS

2004-01-22 Thread Shrock, Court
> -Original Message- > We have a new piece of software to roll out in the next week. > The software is built on PHP 4.3.4, but the webservers that > we intend to use are also running other websites which are > only tested on PHP 4.0.4 or 4.1.2 or something. Obviously > ideally, we wou

[PHP-WIN] OT -- Please point me in the direction of a good Apache2 SSL win32 how to.

2004-01-22 Thread Anthony
I've found may versions of the document found here http://raibledesigns.com/tomcat/ssl-howto.html and so far that seems to be mostly what I'm looking for, with one exception. I can't seem to find anything on modsss.org about Apache2. The link to modssl.org that is shown http://www.modssl.org/cont

[PHP-WIN] Re: Upload to a diferent site

2004-01-22 Thread Anthony
Yup, from the PHP docs: "Note: As of PHP 4.3.0, both source and dest may be URLs if the "fopen wrappers" have been enabled. See fopen() for more details. If dest is an URL, the copy operation may fail if the wrapper does not support overwriting of existing files. " You'll need to ensure you can ac

[PHP-WIN] Upload to a diferent site

2004-01-22 Thread Manuel Couto
does any one know if is possible to upload an image to a diferent site from the one where the PHP script is running? something like this: Im running this script from "site1" $users_file="image1.jpg"; $copy_path="www.site2.com/images"; if(!copy($users_file, $copy_path)) { echo "A imagem não f

[PHP-WIN] Re: php.ini & smtp (php 4.3.4)

2004-01-22 Thread Anthony
If you run PHP as a module, you need to restart you web server service for any changes to PHP.ini to take effect. - Anthony "Igor Pustylnick" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I'm trying to change values in php.ini corresponding to SMTP and > sendmail_to. whatever I c

[PHP-WIN] Re: Show the Progress of a file being uploaded

2004-01-22 Thread Anthony
Like others have said, not with just PHP. What I do is have an animated GIF show some dots light up and say uploading, and I make sure the browsers status bar is visable. The actual % completed is the job of the browser's status bar to show. Obviosly some browsers do this better than others. Yo

Re: [PHP-WIN] Re: Open Port limits on XP

2004-01-22 Thread Stuart
Anthony wrote: Dunno about 64, but XP has a limit of 10 connections over a network to any port. This was MS's way to stop people from using it as a server. I guess you could listen on as many ports as you want, but only be able to respond to requests on 10 at a time. (pretty sure it's 10, could b

[PHP-WIN] Re: Open Port limits on XP

2004-01-22 Thread Anthony
Dunno about 64, but XP has a limit of 10 connections over a network to any port. This was MS's way to stop people from using it as a server. I guess you could listen on as many ports as you want, but only be able to respond to requests on 10 at a time. (pretty sure it's 10, could be wrong though)

php-windows Digest 22 Jan 2004 10:34:45 -0000 Issue 2092

2004-01-22 Thread php-windows-digest-help
php-windows Digest 22 Jan 2004 10:34:45 - Issue 2092 Topics (messages 22636 through 22640): Running multiple versions of php on IIS 22636 by: Rainsford, David 22637 by: Frank M. Kromann Re: Limitations with webservers. WAS: Show the Progress of a file 22638 by: Svens

RE: [PHP-WIN] Not about PHP, HTML question

2004-01-22 Thread Dean Hayes
Just try and replace width note the extra rightmargin and bottommargin thi will ensure all sides of the page have there margins set an not half of them it should work this time Dean "The Insane Guy" Hayes Mystical Web Designs http://www.mystical-sector.com <-- I design and i redesign but st

[PHP-WIN] Re: Limitations with webservers. WAS: Show the Progress of a file

2004-01-22 Thread Manuel Lemos
Hello, On 01/22/2004 04:59 AM, B.A.T. Svensson wrote: I am a bit confused now. We are talking about a progress bar at the client side, that is to feed the enduser with progress information, or? According to what Rich Stupek explainded to me in a private e-mail the client upload the file in a sync

[PHP-WIN] Re: Limitations with webservers. WAS: Show the Progress of a file

2004-01-22 Thread Svensson, B.A.T. (HKG)
I am a bit confused now. We are talking about a progress bar at the client side, that is to feed the enduser with progress information, or? According to what Rich Stupek explainded to me in a private e-mail the client upload the file in a syncrone simplex mode, hence the client can't here any mes