php-general Digest 31 Mar 2009 10:51:48 -0000 Issue 6041

2009-03-31 Thread php-general-digest-help
php-general Digest 31 Mar 2009 10:51:48 - Issue 6041 Topics (messages 290869 through 290883): Re: PHP + MySQL - Load last inserts 290869 by: haliphax 290870 by: Chris formulate nested select 290871 by: PJ 290872 by: Chris 290875 by: Jim Lucas

[PHP] GSoC - XDebug Profiling Web Frontend

2009-03-31 Thread Alpár Török
Hi, I am interested in this, the problem highlighted also annoyed me. I haven't participated in GSoC, nor any community projects ( i did want, but didn't had the occasion). I wouldn't mind maintaining this after GSoc either. Since GSoC is kind of new for me any guidance would be appreciated.

[PHP] thread question

2009-03-31 Thread Toke Herkild
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 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] Re: thread question

2009-03-31 Thread Carlos Medina
Toke Herkild schrieb: 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 Hi Toke, i think that the Operations in the Server will not aborted because

Re: [PHP] Working in UTF-8 - BOM trouble

2009-03-31 Thread Jan G.B.
2009/3/31 Merlin Morgenstern merli...@fastmail.fm: that php has trouble with files that are saved in UTF-8 with BOM. It is causing strange bahavior like adding extra headers. On the other hand most editors only save UTF-8 with BOM. Has somebody experienced the same problem? How did you

[PHP] Re: [PHP-INSTALL] Mac OS X + Apache2 + Dynamic Libraries

2009-03-31 Thread BuildSmart
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 As you have now found out, doing the auto-build from PECL doesn't work. Start by building the dependancies (libraries that are linked in the build) then the modules. (you can copy the next 7 following lines verbatim since this works for most

Re: [PHP] formulate nested select

2009-03-31 Thread PJ
Jim Lucas wrote: Chris wrote: PJ wrote: I cannot find anything on google or the manuals/tutorials that gives some kin of clear explanation of how to so nested selects with where or whatever. I have three tables: books, authors and book-authors. I need to retrieve only those books whose

RE: [PHP] Working in UTF-8 - BOM trouble

2009-03-31 Thread Andrea Giammarchi
Directly from W3: http://www.w3.org/International/questions/qa-utf8-bom.en.php Notepad++ saves without BOM, it's fast, cool, and free ;) To: php-general@lists.php.net Date: Tue, 31 Mar 2009 06:32:41 +0200 From: merli...@fastmail.fm Subject: [PHP] Working in UTF-8 - BOM trouble Hi there,

Re: [PHP] Multiple cookies on the same computer

2009-03-31 Thread Ken Watkins
On 3/27/2009 at 8:10 PM, in message 49cd6b07.6010...@mac.com, Michael A. Peters mpet...@mac.com wrote: Ken Watkins wrote: I have set up a blog site where my family creates posts and they get emailed to members of the family. To keep up with their identities, I created a script for each

Re: [PHP] formulate nested select

2009-03-31 Thread PJ
I must be doing something wrong. Can't figure it out even though I've been searching the manuals tutorials, it still does not work. Here is the exact code that I have tried; the first version is commented out and obviously does not work either (the spelling, the table names and column names are

RE: [PHP] Security Support

2009-03-31 Thread Bob McConnell
From: Grant Peel From: Michael A. Peters Grant Peel wrote: Good Morning / Afternoon, We run several of our own servers: - Dell Power Edge 1U, Pentium, - FreeBSD (6.x soon to be 7.x) - along with all the standard Web Application installation (PHP Apache Exim, Pop3, Proftp, MySQL etc

Re: [PHP] Problem with header();

2009-03-31 Thread Igor Escobar
I don't had the oportunity to test it yet, but today i will. Today i will make two tests: - Save the files without BOM. - If i dont have success i will disable the output buffering. Thanks to everybody for all support. Regards, Igor Escobar systems analyst interface designer www . igorescobar

Re: [PHP] formulate nested select

2009-03-31 Thread Ian
On 31 Mar 2009 at 9:08, PJ wrote: I must be doing something wrong. Can't figure it out even though I've been searching the manuals tutorials, it still does not work. Here is the exact code that I have tried; the first version is commented out and obviously does not work either (the spelling,

RE: [PHP] Problem with header();

2009-03-31 Thread Andrea Giammarchi
The output buffer on or off does not matter. If there is nothing sent, there is nothing sent. If you have just a space, a new line, in one of included files and before ?php ... that will be considered an header sent (the default one, usually) every echo before the header will be considered an

Re: [PHP] formulate nested select

2009-03-31 Thread PJ
Ian wrote: On 31 Mar 2009 at 9:08, PJ wrote: I must be doing something wrong. Can't figure it out even though I've been searching the manuals tutorials, it still does not work. Here is the exact code that I have tried; the first version is commented out and obviously does not work

Re: [PHP] thread question

2009-03-31 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 to

Re: [PHP] formulate nested select

2009-03-31 Thread PJ
Gentlemen all others, The problem was partly fixed with ' ' around $Auth... but... somehow, I see that the results do not work with the rest of the script. The results give a an array within an array - so this mucks up all the rest which is set up to deal with only the book table. The count() is

RE: [PHP] formulate nested select

2009-03-31 Thread kyle.smith
What about using IN, something like: SELECT * FROM book WHERE id IN (SELECT bookID FROM book_authors WHERE authID IN (SELECT author.id FROM authors WHERE last_name LIKE $Auth%)); You could use LEFT instead of LIKE, too. -Original Message- From: PJ [mailto:af.gour...@videotron.ca]

[PHP] Workflow app for software

2009-03-31 Thread bruce
Ladies/Gents... Hi. Trying to get some input to a web based app for dealing with managing software apps/scripts. Basically, i'm envisioning a system where people register/signup, and then check in/out apps for development/testing/production... I need a way of dealing with users,

[PHP] PHP task manager

2009-03-31 Thread George Larson
We've got a homebrew ToDo list (task project) manager / mailer that we're thinking about replacing with something a little more robust. Any suggestions? I saw TaskFreak! on Google but I am curious if there are any personal recommendations out there. Thanks! G

Re: [PHP] formulate nested select

2009-03-31 Thread PJ
kyle.smith wrote: What about using IN, something like: SELECT * FROM book WHERE id IN (SELECT bookID FROM book_authors WHERE authID IN (SELECT author.id FROM authors WHERE last_name LIKE $Auth%)); You could use LEFT instead of LIKE, too. Well, I learned something here... but that also

Re: [PHP] Workflow app for software

2009-03-31 Thread haliphax
On Tue, Mar 31, 2009 at 1:47 PM, bruce bedoug...@earthlink.net wrote: Ladies/Gents... Hi. Trying to get some input to a web based app for dealing with managing software apps/scripts. Basically, i'm envisioning a system where people register/signup, and then check in/out apps for

Re: [PHP] PHP task manager

2009-03-31 Thread haliphax
On Tue, Mar 31, 2009 at 2:31 PM, George Larson george.g.lar...@gmail.com wrote: We've got a homebrew ToDo list (task project) manager / mailer that we're thinking about replacing with something a little more robust. Any suggestions?  I saw TaskFreak! on Google but I am curious if there are

Re: [PHP] formulate nested select

2009-03-31 Thread haliphax
On Tue, Mar 31, 2009 at 5:15 PM, PJ af.gour...@videotron.ca wrote: kyle.smith wrote: What about using IN, something like: SELECT * FROM book WHERE id IN (SELECT bookID FROM book_authors WHERE authID IN (SELECT author.id FROM authors WHERE last_name LIKE $Auth%)); You could use LEFT instead

Re: [PHP] 5.2.9 changes - phpwiki

2009-03-31 Thread Charles Sprickman
On Mon, 30 Mar 2009, Michael A. Peters wrote: Charles Sprickman wrote: Hello all, Recently I upgraded a box running phpwiki from php 5.2.8 to 5.2.9. After the upgrade, phpwiki (1.3.14) started spitting out the following two errors, both of which are basically leaving the wiki dead in the

RE: [PHP] Workflow app for software

2009-03-31 Thread bruce
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, 2009 2:18 PM To: bruce; php-general@lists.php.net Subject: Re: [PHP] Workflow

Re: [PHP] formulate nested select

2009-03-31 Thread Chris
PJ wrote: Ian wrote: On 31 Mar 2009 at 9:08, PJ wrote: I must be doing something wrong. Can't figure it out even though I've been searching the manuals tutorials, it still does not work. Here is the exact code that I have tried; the first version is commented out and obviously does not

Re: [PHP] formulate nested select

2009-03-31 Thread PJ
haliphax wrote: On Tue, Mar 31, 2009 at 5:15 PM, PJ af.gour...@videotron.ca wrote: kyle.smith wrote: What about using IN, something like: SELECT * FROM book WHERE id IN (SELECT bookID FROM book_authors WHERE authID IN (SELECT author.id FROM authors WHERE last_name LIKE $Auth%)); You could

[PHP] Re: PHP task manager

2009-03-31 Thread Colin Guthrie
'Twas brillig, and George Larson at 31/03/09 20:31 did gyre and gimble: We've got a homebrew ToDo list (task project) manager / mailer that we're thinking about replacing with something a little more robust. Any suggestions? I saw TaskFreak! on Google but I am curious if there are any

[PHP] php exe from cli, but no web

2009-03-31 Thread aurfalien
Hi, I won't be redundant by saying I'm new to PHP, so I won't :) The following code works by doing; php file.php contents of file.php; ?php exec('/usr/bin/ssh u...@host nohup perl /perlscript'); ? * I config'd this ssh user to not need a password, copied its key. I place this file off of

Re: [PHP] php exe from cli, but no web

2009-03-31 Thread Stuart
2009/3/31 aurfal...@gmail.com: Hi, I won't be redundant by saying I'm new to PHP, so I won't :) The following code works by doing; php file.php contents of file.php; ?php exec('/usr/bin/ssh u...@host nohup perl /perlscript'); ? * I config'd this ssh user to not need a password,

Re: [PHP] php exe from cli, but no web

2009-03-31 Thread aurfalien
wow, that was ez! thanks a lot. i also enabled php logging and checked my apache logs and it was as you said. very cool. my httpd process runs as apache, but I also did a whoami php script to very this. thanks again stu, you helped out hugely! - aurf On Mar 31, 2009, at 3:38 PM,

Re: [PHP] Re: PHP task manager

2009-03-31 Thread Phpster
Zoho's project tool looks pretty good. Www.zoho.com Bastien Sent from my iPod On Mar 31, 2009, at 18:20, Colin Guthrie gm...@colin.guthr.ie wrote: 'Twas brillig, and George Larson at 31/03/09 20:31 did gyre and gimble: We've got a homebrew ToDo list (task project) manager / mailer that

Re: [PHP] 5.2.9 changes - phpwiki

2009-03-31 Thread Michael A. Peters
Charles Sprickman wrote: On Mon, 30 Mar 2009, Michael A. Peters wrote: Charles Sprickman wrote: Hello all, Recently I upgraded a box running phpwiki from php 5.2.8 to 5.2.9. After the upgrade, phpwiki (1.3.14) started spitting out the following two errors, both of which are basically