[PHP-WIN] Re: COM on remote machine

2004-04-23 Thread M.Staiger
> Meanwhile I found an indication that the IP-Address of the remote machine > has to be stated when instanciating the com object .. but HOW? Which format? > Is there an example existing? .. my monologue is to be continued ... Here's an example of how to use real dcom : $E = new COM("Excel.Applica

[PHP-WIN] Re: COM on remote machine

2004-04-22 Thread M.Staiger
"M.Staiger" <[EMAIL PROTECTED]> schrieb im Newsbeitrag news:[EMAIL PROTECTED] > Hello NG, > > Imagine that you have one machine running iis with php and want to call a > COM-Server (e.g. Word) on a remote machine.Would this be possible? How would > it look like, if

[PHP-WIN] COM on remote machine

2004-04-22 Thread M.Staiger
Hello NG, Imagine that you have one machine running iis with php and want to call a COM-Server (e.g. Word) on a remote machine.Would this be possible? How would it look like, if this is the call for the local machine : $word = new COM("word.application"); Thanks, Marc -- PHP Windows Mailing Lis

[PHP-WIN] Re: accessing files from mapped drive from another server

2004-04-12 Thread M.Staiger
be possible to grant the IUSR_ access to the directory on the other machine? Marc > "M.Staiger" <[EMAIL PROTECTED]> schrieb im Newsbeitrag > news:[EMAIL PROTECTED] > > Hello NG, > > > > I need to access files via PHP from another local server. For > > secu

[PHP-WIN] accessing files from mapped drive from another server

2004-04-09 Thread M.Staiger
Hello NG, I need to access files via PHP from another local server. For security-reasons I need to access them throught their physical path (e.g. C:\path\file.txt) and not through a virtual path (e.g. http://domain/path/file.txt). Therefore I mounted a drive ("F:") to access those files (e.g. F:\p

[PHP-WIN] Re: Web page timeout with PHP 4.3.3 on IIS & Win2K

2003-08-26 Thread M.Staiger
"Scott Stricker" <[EMAIL PROTECTED]> schrieb im Newsbeitrag news:[EMAIL PROTECTED] > FYI, I've since removed 4.3.3 and re-installed 4.3.2 and it worked > immediately. Only difference I noticed in install was 4.3.2 only showed WWW > Service in list to add .php to, whereas 4.3.3 showed WWW Service

[PHP-WIN] Re: Upload aborted with timeout

2003-08-26 Thread M.Staiger
forgot this one : win2k server, iis 5.0, php 4.3.2 ISAPI "M.Staiger" <[EMAIL PROTECTED]> schrieb im Newsbeitrag news:[EMAIL PROTECTED] > Hello NG, > > for some reason we have problems with midsize to big file-uploads (around > 5MB and bigger) that are performed by t

[PHP-WIN] Upload aborted with timeout

2003-08-26 Thread M.Staiger
Hello NG, for some reason we have problems with midsize to big file-uploads (around 5MB and bigger) that are performed by the website-visitors. It most likely ends in a time out (60 sec), even though the internet-connection is sufficiant (server AND client). We already tried everything (known to u

[PHP-WIN] Sessions via shared memory

2003-06-16 Thread M.Staiger
Hello NG, sessions are usually stored in files on disk or directly in a database. However when not only reading these sessions but also writing to them extensively, it might be unseful to store these sessions directly in memory. Rumors say, this is possible via "shared memory functions" which soun