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.
--
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: http://www.php.net/unsub.php
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 t
2009/3/31 Merlin Morgenstern :
> 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 overcome it?
>
Use an
-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 so
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
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 t
>>> On 3/27/2009 at 8:10 PM, in message <49cd6b07.6010...@mac.com>, "Michael A.
>>> Peters" 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 fam
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 c
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,
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
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 spell
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
If that page generates an header you could have UTF-8 BOM problems, a prepended
file in the Apache configuration which is bro
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
> 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 o
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
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
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, assigning/accepti
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
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
On Tue, Mar 31, 2009 at 1:47 PM, bruce 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 development/testing/producti
On Tue, Mar 31, 2009 at 2:31 PM, George Larson
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
> any personal recommen
On Tue, Mar 31, 2009 at 5:15 PM, PJ 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 of L
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 wa
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 a
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 wo
haliphax wrote:
> On Tue, Mar 31, 2009 at 5:15 PM, PJ 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 c
'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 persona
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;
* I config'd this ssh user to not need a password, copied its key.
I place this file off of web root and point my browser to web root and
type the file n
2009/3/31 :
> 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;
>
> exec('/usr/bin/ssh u...@host "nohup perl /perlscript&"');
> ?>
>
> * I config'd this ssh user to not need a password, copied its
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, Stuart
Zoho's project tool looks pretty good. Www.zoho.com
Bastien
Sent from my iPod
On Mar 31, 2009, at 18:20, Colin Guthrie 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 we're
thinking about
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 leavi
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 whe
34 matches
Mail list logo