php-general Digest 28 Jun 2011 15:13:01 -0000 Issue 7380

2011-06-28 Thread php-general-digest-help
php-general Digest 28 Jun 2011 15:13:01 - Issue 7380 Topics (messages 313771 through 313780): header function odd behavior 313771 by: H Rao 313772 by: Nilesh Govindarajan 313776 by: Ford, Mike caching problem 313773 by: Fatih P. 313774 by: Nilesh

RE: [PHP] header function odd behavior

2011-06-28 Thread Ford, Mike
-Original Message- From: H Rao [mailto:hydsd...@gmail.com] Sent: 28 June 2011 04:40 I am trying to understand odd(different) behavior of the header function under two different environments. Here is the code which I am trying to execute from two different servers ? header

Re: [PHP] caching problem

2011-06-28 Thread Stuart Dallas
On Tuesday, 28 June 2011 at 06:57, Fatih P. wrote: On Tue, Jun 28, 2011 at 7:40 AM, Nilesh Govindarajan cont...@nileshgr.com (mailto:cont...@nileshgr.com)wrote: On 06/28/2011 10:56 AM, Fatih P. wrote: Hi guys, the code files are being cached. and modifications in methods are

RE: [PHP] caching problem

2011-06-28 Thread admin
If the issue is a caching proxy or browser caching I suggest you look into controlling the page caching header. You can expire the header. // calc an offset of 24 hours $offset = 3600 * 24; // calc the string in GMT not localtime and add the offset $expire = Expires: . gmdate(D, d M Y

Re: [PHP] caching problem

2011-06-28 Thread Stuart Dallas
On Tue, Jun 28, 2011 at 1:51 PM, Fatih P. fatihpirist...@gmail.com wrote: On Tue, Jun 28, 2011 at 1:52 PM, Stuart Dallas stu...@3ft9.com wrote: On Tuesday, 28 June 2011 at 06:57, Fatih P. wrote: On Tue, Jun 28, 2011 at 7:40 AM, Nilesh Govindarajan cont...@nileshgr.com

RE: [PHP] caching problem

2011-06-28 Thread admin
Faith, I actually did read from the beginning of the message. That does not make sense. PHP files are cached intentionally, the system does not Cache PHP on its own. Sounds to me like you have an issue re-declaring an object or calling the right script/path/class/method something. I have

Re: [PHP] caching problem

2011-06-28 Thread Fatih P.
On Tue, Jun 28, 2011 at 5:12 PM, ad...@buskirkgraphics.com wrote: Faith, I actually did read from the beginning of the message. That does not make sense. PHP files are cached intentionally, the system does not Cache PHP on its own. Sounds to me like you have an issue re-declaring an

Re: [PHP] caching problem

2011-06-28 Thread Stuart Dallas
On Tue, Jun 28, 2011 at 4:23 PM, Fatih P. fatihpirist...@gmail.com wrote: On Tue, Jun 28, 2011 at 5:12 PM, ad...@buskirkgraphics.com wrote: Faith, I actually did read from the beginning of the message. That does not make sense. PHP files are cached intentionally, the system does not

Re: [PHP] caching problem

2011-06-28 Thread Fatih P.
On Tue, Jun 28, 2011 at 5:30 PM, Stuart Dallas stu...@3ft9.com wrote: On Tue, Jun 28, 2011 at 4:23 PM, Fatih P. fatihpirist...@gmail.comwrote: On Tue, Jun 28, 2011 at 5:12 PM, ad...@buskirkgraphics.com wrote: Faith, I actually did read from the beginning of the message. That does

Re: [PHP] caching problem

2011-06-28 Thread Stuart Dallas
On Tue, Jun 28, 2011 at 5:12 PM, Fatih P. fatihpirist...@gmail.com wrote: On Tue, Jun 28, 2011 at 5:30 PM, Stuart Dallas stu...@3ft9.com wrote: Fatih, please explain what you mean by the code files are being cached. and modifications in methods are skipped and not executed. How are you

RE: [PHP] caching problem

2011-06-28 Thread admin
Fatih, I am sorry spell check auto corrected your name, I was not changing your name on purpose. It was not my intension to piss you off. I understand your frustration, trust me. I am running 5.3.6 on Windows Server 2008 R2 IIS, I am running massive class based methods in my own

Re: [PHP] caching problem

2011-06-28 Thread Steve Staples
On Tue, 2011-06-28 at 17:34 +0100, Stuart Dallas wrote: On Tue, Jun 28, 2011 at 5:12 PM, Fatih P. fatihpirist...@gmail.com wrote: On Tue, Jun 28, 2011 at 5:30 PM, Stuart Dallas stu...@3ft9.com wrote: Fatih, please explain what you mean by the code files are being cached. and

Re: [PHP] caching problem

2011-06-28 Thread Fatih P.
On Tue, Jun 28, 2011 at 6:39 PM, ad...@buskirkgraphics.com wrote: Fatih, I am sorry spell check auto corrected your name, I was not changing your name on purpose. It was not my intension to piss you off. I understand your frustration, trust me. I am running 5.3.6 on Windows Server

Re: [PHP] caching problem

2011-06-28 Thread Micky Hulse
OP: Can we see the methods in question? Have you tried running the code on a different server/host? Have you added any scaffolding to your methods in order to test your caching theory? This would be the first thing I would try (i.e. create random number (or whatever), concat with variable vals

Re: [PHP] caching problem

2011-06-28 Thread Stuart Dallas
On Tue, Jun 28, 2011 at 5:53 PM, Fatih P. fatihpirist...@gmail.com wrote: On Tue, Jun 28, 2011 at 6:34 PM, Stuart Dallas stu...@3ft9.com wrote: On Tue, Jun 28, 2011 at 5:12 PM, Fatih P. fatihpirist...@gmail.comwrote: On Tue, Jun 28, 2011 at 5:30 PM, Stuart Dallas stu...@3ft9.com wrote:

Re: [PHP] asynchronous launch of a script

2011-06-28 Thread David Harkness
On Sun, Jun 26, 2011 at 7:42 PM, Tamara Temple tamouse.li...@gmail.comwrote: How do I launch a php script from another running php script asynchronously? You can perform the long-running job in the same process that handles the request by sending appropriate headers. We use this to run

Re: [PHP] asynchronous launch of a script

2011-06-28 Thread Stuart Dallas
On Tue, Jun 28, 2011 at 8:16 PM, David Harkness davi...@highgearmedia.comwrote: On Sun, Jun 26, 2011 at 7:42 PM, Tamara Temple tamouse.li...@gmail.com wrote: How do I launch a php script from another running php script asynchronously? You can perform the long-running job in the same

[PHP] best ways to recruit volunteers for a PHP framework

2011-06-28 Thread jean-baptiste verrey
Hi everybody, I have developed an ORM framework in PHP for the last 2 years and it's becoming a more professional and nice solution so before doing a new complete revamp I am going to look for volunteer developers to do a real good version. But I am wondering what would be the best and clearest

RE: [PHP] best ways to recruit volunteers for a PHP framework

2011-06-28 Thread Jay Blanchard
[snip] I have developed an ORM framework in PHP for the last 2 years and it's becoming a more professional and nice solution so before doing a new complete revamp I am going to look for volunteer developers to do a real good version. [/snip] https://github.com/ -- PHP General Mailing List

Re: [PHP] best ways to recruit volunteers for a PHP framework

2011-06-28 Thread jean-baptiste verrey
thanks, I should have said I have the project already in sourceforge so I have an SVN ready, and a outdated website with an outdated user manual and even an outdated dissertation about the reason for the development of the project. On 28 June 2011 21:29, Jay Blanchard jblanch...@pocket.com wrote:

Re: [PHP] best ways to recruit volunteers for a PHP framework

2011-06-28 Thread Stuart Dallas
On Tue, Jun 28, 2011 at 9:24 PM, jean-baptiste verrey jeanbaptiste.ver...@gmail.com wrote: Hi everybody, Hi Dr Nick! I have developed an ORM framework in PHP for the last 2 years and it's becoming a more professional and nice solution so before doing a new complete revamp I am going to

Re: [PHP] best ways to recruit volunteers for a PHP framework

2011-06-28 Thread Micky Hulse
+1 for GitHub or BitBucket. I have not visited SourceForge for years... I just like using Git myself. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] best ways to recruit volunteers for a PHP framework

2011-06-28 Thread Christopher Lee
I would definitely be interested in working on/developing the user manual for the project. You have my interest. Best, Christopher From: jean-baptiste verrey [jeanbaptiste.ver...@gmail.com] Sent: Tuesday, June 28, 2011 4:24 PM To:

[PHP] PHP 5.4.0alpha1 released

2011-06-28 Thread David Soria Parra
Hello! Stas has packed PHP 5.4.0alpha1 which you can find here: http://downloads.php.net/stas/ Please test it carefully, and report any bugs in the bug system, but only if you have a short reproducable test case. Alpha 2 will be released in about 2 weeks. You can read more information

Re: [PHP] PHP 5.4.0alpha1 released

2011-06-28 Thread Tim Streater
On 28 Jun 2011 at 22:39, David Soria Parra d...@php.net wrote: You can read more information about this release here: http://www.php.net/archive/2011.php#id2011-06-28-1 Not quite yet, perhaps? -- Cheers -- Tim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] PHP 5.4.0alpha1 released

2011-06-28 Thread David Soria Parra
On Tue, 2011-06-28 at 22:51 +0100, Tim Streater wrote: On 28 Jun 2011 at 22:39, David Soria Parra d...@php.net wrote: You can read more information about this release here: http://www.php.net/archive/2011.php#id2011-06-28-1 Not quite yet, perhaps? will take a few minutes before it's up

Re: [PHP] asynchronous launch of a script

2011-06-28 Thread David Harkness
On Tue, Jun 28, 2011 at 1:02 PM, Stuart Dallas stu...@3ft9.com wrote: While this will work, I would caution against doing this, especially when using Apache as the web server. . . . Forking an HTTP request handler can lead to some very unwelcome side-effects. I'd urge you not to do this. It

[PHP] Connection usign SSL with a JAVA Server

2011-06-28 Thread Mariano Cano
Hi, i made a SSL Client using JAVA, with a key generated by Keytool. The command was the next: *keytool -genkey -keystore mySrvKeystore -keyalg RSA* Password: 123456 Now, im tryint to send a simple text using this kind of connection in PHP. The server already works with a Java Server / Java