[PHP-WIN] php_tidy.dll ?

2003-10-03 Thread Ignatius Reilly
Hello, I am trying to use the Tidy extension found on Frank Kromann's site http://kromann.info/pecl.php (php_tidy.dll, libtidy.dll), but it does not work (Can not load the specified module) Has anyone got it to work under PHP 4.3.3? Thanks Ignatius _ -- PHP Windows

php-windows Digest 3 Oct 2003 06:36:29 -0000 Issue 1938

2003-10-03 Thread php-windows-digest-help
php-windows Digest 3 Oct 2003 06:36:29 - Issue 1938 Topics (messages 21650 through 21656): Re: PHP and XML 21650 by: Harpreet custom library 21651 by: Mike Corredera PHP script handling chunk transfer 21652 by: Lin Shen Re: PHP and Windows .NET Server 2003

Re: [PHP-WIN] php_tidy.dll ?

2003-10-03 Thread toby z
pardon ma ignorance whats tidy.ll for toby . :$ --- Ignatius Reilly [EMAIL PROTECTED] wrote: Hello, I am trying to use the Tidy extension found on Frank Kromann's site http://kromann.info/pecl.php (php_tidy.dll, libtidy.dll), but it does not work (Can not load the specified

Re: [PHP-WIN] php_tidy.dll ?

2003-10-03 Thread Ignatius Reilly
its usd to trsfrm a html str into xhtml so tht u can traverse it w xpath ig _ - Original Message - From: toby z [EMAIL PROTECTED] To: Ignatius Reilly [EMAIL PROTECTED]; Win32 list PHP [EMAIL PROTECTED] Sent: Friday, October 03, 2003 9:12 AM Subject: Re: [PHP-WIN]

RE: [PHP-WIN] Send Email with an attachment - SOLVED

2003-10-03 Thread Disko_kex
I found an example on the web. ?php $fileatt = ; // Path to the file $fileatt_type = application/octet-stream; // File Type $fileatt_name = ; // Filename that will be used for the file as the attachment $email_from = ; // Who the email is from $email_subject = ; // The

[PHP-WIN] weird random parse errors on PHP 4.1.x / Win2k

2003-10-03 Thread Francesco . Marsan
Hi Geoff, I've seen your message on the PHP/Windows list, and I'm writing because I get the **exact** same problem on my box: HP Proliant dual Xeon 2,8Mhz - 1GB RAM PHP 4.2.2 Apache 1.3.22 On myne it happens even if just one user is accessing the pages. On another server -- it is a little bit

RE: [PHP-WIN] weird random parse errors on PHP 4.1.x / Win2k

2003-10-03 Thread Charles P. Killmer
I don't know if this is related but every once in a while I get timeout issues. A script that usually runs just fine will timeout on line 2 or 3. A few times it has been on a line like this. If (isset($REMOTE_ADDR)) { //stuff } The if statement is the line that times out. Just a weird

[PHP-WIN] Re: weird random parse errors on PHP 4.1.x / Win2k

2003-10-03 Thread Geoffrey C. Speicher
On Fri, Oct 03, 2003 at 04:56:23PM +0200, [EMAIL PROTECTED] wrote: Hi Geoff, I've seen your message on the PHP/Windows list, and I'm writing because I get the **exact** same problem on my box: HP Proliant dual Xeon 2,8Mhz - 1GB RAM PHP 4.2.2 Apache 1.3.22 On myne it happens even if just

[PHP-WIN] Mysql Purge script

2003-10-03 Thread Php2tor
Does anyone have a script that will purge a MySQL DB that has entries over 30 days old? -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] is there a way to access UNO?

2003-10-03 Thread Leonardo Javier Belén
Hi all! Id like to access Sun's StarOffice/OpenOffice.org from PHP, but I found it almost impossible. Has anyone succeded on doing this? Leo. AFIP-AR. -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-WIN] Mysql Purge script

2003-10-03 Thread Svensson, B.A.T. (HKG)
DELETE FROM table(s) WHERE some-date-attribute-converted-to-days than-30-days -Original Message- From: Php2tor To: [EMAIL PROTECTED] Sent: 3-10-2003 18:15 Subject: [PHP-WIN] Mysql Purge script Does anyone have a script that will purge a MySQL DB that has entries over 30 days old? --

RE: [PHP-WIN] Mysql Purge script

2003-10-03 Thread Ryan Vesely
This assumes one of the columns on your DB is RecordCreated: $today = getdate(); $year = $today['year']; $month = $today['mon']; $day = $today['mday']; $hours = $today['hours']; $minutes = $today['minutes']; $seconds = $today['seconds']; $RecordCreated = $year.-.$month.-.$day.

RE: [PHP-WIN] Mysql Purge script

2003-10-03 Thread Svensson, B.A.T. (HKG)
As well as it assumes that a delete trigger takes care of any dependent existences with other rows in other tables. Secondly, what is the purpose of all assignments below? -Original Message- From: Ryan Vesely To: 'Php2tor '; '[EMAIL PROTECTED] ' Sent: 3-10-2003 18:35 Subject: RE:

RE: [PHP-WIN] Mysql Purge script

2003-10-03 Thread Ryan Vesely
just one way to create record created. not really relevant to the delete statement, other than for reference. Ryan Vesely Sales Engineer Pinnacor 685 Market Street, Suite 500 San Francisco, CA 94105 tel

[PHP-WIN] Shortcut

2003-10-03 Thread Charles P. Killmer
Does anyone have any code that will create a windows .lnk file? Charles Killmer

php-windows Digest 3 Oct 2003 19:21:46 -0000 Issue 1939

2003-10-03 Thread php-windows-digest-help
php-windows Digest 3 Oct 2003 19:21:46 - Issue 1939 Topics (messages 21657 through 21671): Re: php_tidy.dll ? 21657 by: toby z 21658 by: Ignatius Reilly Re: Send Email with an attachment - SOLVED 21659 by: Disko_kex Re: [PHP] Getting PHP to work under IIS 6.0

[PHP-WIN] MySQL security hole - how to fix??

2003-10-03 Thread Roderick Martin
According to this article, there is a major security leak in all versions of MySQL... http://www.eweek.com/article2/0,4149,1306270,00.asp The article provides a link to a patch, but I find two things confusing... 1. All the patches on that page are ancient. Why wouldn't these patches have

[PHP-WIN] Re: [PHP] Getting PHP to work under IIS 6.0

2003-10-03 Thread Joseph Tate
Jay Blanchard wrote: [snip] Has anyone been able to get PHP working fully under IIS 6.0? If so, try the following script: ?PHP print_r(shell_exec('dir')); ? I get Warning: shell_exec() [function.shell-exec]: Unable to execute whenever I try this or any other shell_exec or back tick (`) shell

[PHP-WIN] RE: [PHP] Getting PHP to work under IIS 6.0

2003-10-03 Thread Jay Blanchard
[snip] Has anyone been able to get PHP working fully under IIS 6.0? If so, try the following script: ?PHP print_r(shell_exec('dir')); ? I get Warning: shell_exec() [function.shell-exec]: Unable to execute whenever I try this or any other shell_exec or back tick (`) shell function. I've tried