php-general Digest 1 Apr 2009 11:41:14 -0000 Issue 6043

2009-04-01 Thread php-general-digest-help
php-general Digest 1 Apr 2009 11:41:14 - Issue 6043 Topics (messages 290910 through 290913): Re: PHP task manager 290910 by: Phpster Re: 5.2.9 changes - phpwiki 290911 by: Michael A. Peters Re: thread question 290912 by: Toke Herkild 290913 by: Virgilio

Re: [PHP] thread question

2009-04-01 Thread Toke Herkild
Virgilio Quilario skrev: Hi all, Another question: If a script starts to perform an operation and the user browses away will that terminate the thread perfoming the operation eg. the operation is aborted ? Mvh Toke the script is aborted as soon as server gets no response from the browser

Re: [PHP] thread question

2009-04-01 Thread Virgilio Quilario
Hi all, Another question: If a script starts to perform an operation and the user browses away will that terminate the thread perfoming the operation eg. the operation is aborted ? Mvh Toke the script is aborted as soon as server gets no response from the browser when it sent output

Re: [PHP] thread question

2009-04-01 Thread Ashley Sheridan
On Wed, 2009-04-01 at 19:41 +0800, Virgilio Quilario wrote: Hi all, Another question: If a script starts to perform an operation and the user browses away will that terminate the thread perfoming the operation eg. the operation is aborted ? Mvh Toke the script is aborted as

Re: [PHP] thread question

2009-04-01 Thread Toke Herkild
Ashley Sheridan skrev: On Wed, 2009-04-01 at 19:41 +0800, Virgilio Quilario wrote: Hi all, Another question: If a script starts to perform an operation and the user browses away will that terminate the thread perfoming the operation eg. the operation is aborted ? Mvh Toke the script is

Re: [PHP] Workflow app for software

2009-04-01 Thread haliphax
On Tue, Mar 31, 2009 at 4:37 PM, bruce bedoug...@earthlink.net wrote: hey todd... just toook a look at the polarion svn-web app i thought that was closed source... i see that it's open!!! -Original Message- From: haliphax [mailto:halip...@gmail.com] Sent: Tuesday, March 31,

[PHP] stream_socket_client with tls: problem in Solaris 8

2009-04-01 Thread Laura Longo
Hi all, I've a problem with stream_socket_client function and tls under Solaris 8 (sparc). The client code follows up: ?php $context = stream_context_create(array('tls'=array('capture_peer_cert'=TRUE))); $fp = stream_socket_client(tls://192.168.14.200:8000, $errno, $errstr, 30,

[PHP] Error on .htaccess

2009-04-01 Thread Igor Escobar
In all the servers i had tested my system i dont have any problem, but in this server the apache are displaying to me the error 500 Internal Server Error. Someone can say tome what is wront with my .htaccess? RewriteEngine On IfModule mod_rewrite.c RewriteCond %{REQUEST_FILENAME} !-f RewriteCond

Re: [PHP] Error on .htaccess

2009-04-01 Thread Daniel Brown
On Wed, Apr 1, 2009 at 10:39, Igor Escobar titiolin...@gmail.com wrote: In all the servers i had tested my system i dont have any problem, but in this server the apache are displaying to me the error 500 Internal Server Error. Someone can say tome what is wront with my .htaccess? This is

Re: [PHP] Error on .htaccess

2009-04-01 Thread Virgilio Quilario
In all the servers i had tested my system i dont have any problem, but in this server the apache are displaying to me the error 500 Internal Server Error. Someone can say tome what is wront with my .htaccess? RewriteEngine On IfModule mod_rewrite.c RewriteCond %{REQUEST_FILENAME} !-f

Re: [PHP] Workflow app for software

2009-04-01 Thread haliphax
On Wed, Apr 1, 2009 at 8:33 AM, bruce bedoug...@earthlink.net wrote: not another top/side/bottom post thread again!!! -Original Message- From: haliphax [mailto:halip...@gmail.com] Sent: Wednesday, April 01, 2009 5:38 AM To: php-general@lists.php.net Subject: Re: [PHP] Workflow app

Re: [PHP] Workflow app for software

2009-04-01 Thread Robert Cummings
On Wed, 2009-04-01 at 11:25 -0500, haliphax wrote: On Wed, Apr 1, 2009 at 8:33 AM, bruce bedoug...@earthlink.net wrote: not another top/side/bottom post thread again!!! -Original Message- From: haliphax [mailto:halip...@gmail.com] Sent: Wednesday, April 01, 2009 5:38 AM

[PHP] and and weird results

2009-04-01 Thread PJ
I hope somebody can make sense of this. First, I don't understand what the difference is supposed to be between and - is there a difference for php and/or mysql? Second, I am trying to select all occurrences in a table.column where the first letter of the name is I, J, or K but not I or J or K;

Re: [PHP] and and weird results

2009-04-01 Thread Kyle Smith
PJ wrote: I hope somebody can make sense of this. First, I don't understand what the difference is supposed to be between and - is there a difference for php and/or mysql? Second, I am trying to select all occurrences in a table.column where the first letter of the name is I, J, or K but not I

Re: [PHP] and and weird results

2009-04-01 Thread Kyle Smith
Kyle Smith wrote: PJ wrote: I hope somebody can make sense of this. First, I don't understand what the difference is supposed to be between and - is there a difference for php and/or mysql? Second, I am trying to select all occurrences in a table.column where the first letter of the name is

RE: [PHP] Workflow app for software

2009-04-01 Thread bruce
and haliphax... i specifically sent the reply to only you.. you then felt the need to reply to the list as a whole hmm.. ok.. this thread is officially dead!! unless of course it gets back to the initial question... peace!! -Original Message- From: Robert Cummings

Re: [PHP] and and weird results

2009-04-01 Thread PJ
Kyle Smith wrote: Kyle Smith wrote: PJ wrote: I hope somebody can make sense of this. First, I don't understand what the difference is supposed to be between and - is there a difference for php and/or mysql? Second, I am trying to select all occurrences in a table.column where the first

Re: [PHP] and and weird results NOT solved but FIXED ....

2009-04-01 Thread PJ
PJ wrote: Kyle Smith wrote: Kyle Smith wrote: PJ wrote: I hope somebody can make sense of this. First, I don't understand what the difference is supposed to be between and - is there a difference for php and/or mysql? Second, I am trying to select all occurrences in a

Re: [PHP] and and weird results

2009-04-01 Thread Lex Braun
PJ, On Wed, Apr 1, 2009 at 1:40 PM, PJ af.gour...@videotron.ca wrote: SELECT * FROM book WHERE id IN (SELECT bookID FROM book_author WHERE authID IN (SELECT author.id FROM author WHERE LEFT(last_name, 1 ) = '$Auth' LEFT(last_name, 1 ) = '$Auth1' LEFT(last_name, 1 ) =

Re: [PHP] Workflow app for software

2009-04-01 Thread haliphax
On Wed, Apr 1, 2009 at 11:53 AM, bruce bedoug...@earthlink.net wrote: and haliphax... i specifically sent the reply to only you.. you then felt the need to reply to the list as a whole hmm.. ok.. this thread is officially dead!! unless of course it gets back to the initial question...

Re: [PHP] Workflow app for software

2009-04-01 Thread Robert Cummings
On Wed, 2009-04-01 at 13:30 -0500, haliphax wrote: On Wed, Apr 1, 2009 at 11:53 AM, bruce bedoug...@earthlink.net wrote: and haliphax... i specifically sent the reply to only you.. you then felt the need to reply to the list as a whole hmm.. ok.. this thread is officially dead!!

Re: [PHP] Workflow app for software

2009-04-01 Thread haliphax
On Wed, Apr 1, 2009 at 1:38 PM, Robert Cummings rob...@interjinn.com wrote: On Wed, 2009-04-01 at 13:30 -0500, haliphax wrote: On Wed, Apr 1, 2009 at 11:53 AM, bruce bedoug...@earthlink.net wrote: and haliphax... i specifically sent the reply to only you.. you then felt the need to reply

RE: [PHP] Workflow app for software

2009-04-01 Thread bruce
so haliphax... since you seem to be the primary person with this issue.. at least for now... i'll ahead and nominate you to the guy in charge of making sure posters follow the written rule to not top/down/side/left/right post... have fun!!! -Original Message- From: haliphax

Re: [PHP] Workflow app for software

2009-04-01 Thread Robert Cummings
On Wed, 2009-04-01 at 13:42 -0500, haliphax wrote: On Wed, Apr 1, 2009 at 1:38 PM, Robert Cummings rob...@interjinn.com wrote: On Wed, 2009-04-01 at 13:30 -0500, haliphax wrote: On Wed, Apr 1, 2009 at 11:53 AM, bruce bedoug...@earthlink.net wrote: and haliphax... i specifically sent

Re: [PHP] Workflow app for software

2009-04-01 Thread listmail
On Wed, 1 Apr 2009 11:46:20 -0700 bruce bedoug...@earthlink.net wrote: so haliphax... since you seem to be the primary person with this issue.. at least for now... i'll ahead and nominate you to the guy in charge of making sure posters follow the written rule to not top/down/side/left/right

[PHP] extention question

2009-04-01 Thread MikeP
Hello, How do I know if an extension (specifically php-domxml) has to be compiled or can just be loaded. I am using RedHat Linux . Thanks Mike -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Workflow app for software

2009-04-01 Thread Robert Cummings
I for one don't find you very | On Wed, 2009-04-01 at 11:46 -0700, funny Bruce. It's common knowledge | bruce wrote: so haliphax... that it's very difficult to follow | side posts. If not already, then | since you seem to be the primary they should certainly be | person with

Re: [PHP] extention question

2009-04-01 Thread Per Jessen
MikeP wrote: Hello, How do I know if an extension (specifically php-domxml) has to be compiled or can just be loaded. To see if it has already been compiled, check /usr/lib/phpx/extensions /Per -- Per Jessen, Zürich (6.8°C) -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] extention question

2009-04-01 Thread Michael A. Peters
MikeP wrote: Hello, How do I know if an extension (specifically php-domxml) has to be compiled or can just be loaded. I am using RedHat Linux . Thanks Mike I assume by Red Hat you mean RHEL ?? I believe domxml is part of the php-xml package yum install php-xml then /etc/init.d/httpd

Re: [PHP] Workflow app for software

2009-04-01 Thread George Larson
Please quit side-posting. Thanks. On Wed, Apr 1, 2009 at 2:58 PM, Robert Cummings rob...@interjinn.comwrote: I for one don't find you very | On Wed, 2009-04-01 at 11:46 -0700, funny Bruce. It's common knowledge | bruce wrote: so haliphax... that it's very difficult to follow | side

Re: [PHP] extention question

2009-04-01 Thread Michael A. Peters
Per Jessen wrote: MikeP wrote: Hello, How do I know if an extension (specifically php-domxml) has to be compiled or can just be loaded. To see if it has already been compiled, check /usr/lib/phpx/extensions /Per I don't believe that is the right path on rhel - it certainly isn't on

RE: [PHP] Workflow app for software

2009-04-01 Thread HallMarc Websites
Application and Templating Framework for PHP -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php __ Information from ESET Smart Security, version of virus signature database 3981 (20090401) __ The message was checked by ESET Smart

RE: [PHP] Workflow app for software

2009-04-01 Thread bruce
now that.. was funny actually laughed out loud! -Original Message- From: George Larson [mailto:george.g.lar...@gmail.com] Sent: Wednesday, April 01, 2009 12:08 PM To: Robert Cummings Cc: bruce; haliphax; php-general@lists.php.net Subject: Re: [PHP] Workflow app for software

Re: [PHP] and and weird results

2009-04-01 Thread PJ
Lex Braun wrote: PJ, On Wed, Apr 1, 2009 at 1:40 PM, PJ af.gour...@videotron.ca mailto:af.gour...@videotron.ca wrote: SELECT * FROM book WHERE id IN (SELECT bookID FROM book_author WHERE authID IN (SELECT author.id http://author.id FROM author

Re: [PHP] and and weird results

2009-04-01 Thread Chris
Thanks for that. I understand. Somehow, I had tried OR at one point but I got one of those orange boxes probably for some other error and in the confusion of my neurons I overlooked it. However, I am puzzled that using (not ) did give a lot of results, almost the whole db which is thankfully