Re: [PHP-WIN] Is stdout slow?

2002-11-29 Thread Miha Nedok
It has to do with the browser. IE an others don't like *large* data specially in tables it will hang, just look take a look with the Task Manager and you'll see IE just going crazy. -Mike On Thu, 28 Nov 2002, Nicole wrote: > Date: Thu, 28 Nov 2002 23:37:10 -0500 > From: Nicole <[EMAIL PROTECTE

[PHP-WIN] COM programming and InDesign 2.0

2002-11-29 Thread Frode Mangseth
I'm working on a script to control Adobe InDesign 2.0 through COM. And I'm using som Visual Basic examples to teach myself. What I'm stuck on is this VB-code: For Each Story In myStories Set myParagraphs = Story.Paragraphs Next Story How can I write this in PHP? BTW: I'd really appreciat

Re: [PHP-WIN] Is stdout slow?

2002-11-29 Thread Luis Ferro
Web browsers have to "calculate" the image-output of the page. IE is specially bad at this as it will generate an in-memory BMP with the full data. That will mean that a page with some millions of characters will generate a memory footprint that surpasses all the memory of the computer and star

RE: [PHP-WIN] Is stdout slow?

2002-11-29 Thread Svensson, B.A.T. (HKG)
> That will mean that a page with some millions of characters will > generate a memory footprint that surpasses all the memory of the > computer and starts to goble disk memory... The technical term when a computer is more occupied with swapping memory pages than actually execute the context of

RE: [PHP-WIN] Redirect browser to another URL?

2002-11-29 Thread Jack Kelly Dobson
Something like that... The way my site is set up all the content is "wrapped" by the index.php script. So no matter what page your looking at your browser is still pointed to the same index.php. At times I have pages that have includes that are five and six pages deep. The form and validation tha

[PHP-WIN] archive_tar error "Invalid checksum"

2002-11-29 Thread Timo Hähne
Hello, fist of all I want to excuse me for my bad english. But I can't solve my problem so I have to try it in english. I am working with PHP 4.2.3 and the Apache-Webserver under Windows 2000. I am using the newest version of the archive_tar-Class for the building of tar-Archives. With the follow

[PHP-WIN] test

2002-11-29 Thread Enrico
test -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

php-windows Digest 29 Nov 2002 17:25:19 -0000 Issue 1463

2002-11-29 Thread php-windows-digest-help
php-windows Digest 29 Nov 2002 17:25:19 - Issue 1463 Topics (messages 17211 through 17217): Re: Is stdout slow? 17211 by: Miha Nedok 17213 by: Luis Ferro 17214 by: Svensson, B.A.T. (HKG) COM programming and InDesign 2.0 17212 by: Frode Mangseth Re: Redirect

[PHP-WIN] Install PHP4.2.3 with Apache 2.0.43 on Window 2000

2002-11-29 Thread Jack R.
I follow the exact procedure describe here, and I still can't get it to work. The following procedure has the same setting as I do, but apache fails to start after I try to load the module by adding the following line to my apache config file. LoadModule php4_module c:/php/sapi/php4apache2.dll Add

RE: [PHP-WIN] Install PHP4.2.3 with Apache 2.0.43 on Window 2000

2002-11-29 Thread Davy Obdam
Hi Jack, I had the same problem, but PHP 4.2.3 and Apache 2.0.43 dont work together. PHP 4.2.3 works fine with Apache 2.0.40 though. I have had that up and running for a while and it worked perfect. I now have Apache 2.0.43 and PHP 4.3.0 RC 2 running on my windows XP machine and it works fine. Hop

Re: [PHP-WIN] Install PHP4.2.3 with Apache 2.0.43 on Window 2000

2002-11-29 Thread Jack R.
Thanks. How can you get PHP4.3.0 RC2 work with apache 2.0.43? - Original Message - From: "Davy Obdam" <[EMAIL PROTECTED]> To: "'Jack R.'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Friday, November 29, 2002 4:34 PM Subject: RE: [PHP-WIN] Install PHP4.2.3 with Apache 2.0.43 on Window

Re: [PHP-WIN] Redirect browser to another URL?

2002-11-29 Thread Max Graham
Ahhh ... I see your point I could also do that by making a link refresh, or the meta refresh tag ... that one I have - Original Message - From: "Rich Gray" <[EMAIL PROTECTED]> To: "Max Graham" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, November 28, 2002 9:09 AM Subject: RE:

Re: [PHP-WIN] Install PHP4.2.3 with Apache 2.0.43 on Window 2000

2002-11-29 Thread Luis Ferro
When i configured my system, i had the same problem and gone to the snaps directory in the php.net ftp server (don't remember the exact place, but a search in archives will make it surface) to grab the latest build. It worked in the first trial. Hope to have been of help, Luis Ferro Jack R. w

Re: [PHP-WIN] COM programming and InDesign 2.0

2002-11-29 Thread Luis Ferro
foreach ($myStories as $Story) { $myParagraphs = $Story->Paragraphs; } Cheers... Luis Ferro Frode Mangseth wrote: I'm working on a script to control Adobe InDesign 2.0 through COM. And I'm using som Visual Basic examples to teach myself. What I'm stuck on is this VB-code: For Each Story I