Re: [fw-general] Zend_Threading is ready for review

2008-04-26 Thread Michael B Allen
On 4/26/08, Marcus Bointon <[EMAIL PROTECTED]> wrote: > On 26 Apr 2008, at 19:17, till wrote: > > > > This is how: > > http://de.php.net/pcntl > > > > Looks pretty interesting. :) > > > > > It is - I've been using it for years in some daemons, and it works great > (especially with shmop stuff too)

Re: [fw-general] Zend_Threading is ready for review

2008-04-26 Thread Matthew Ratzloff
Ben has renamed the proposal Zend_Console_Process in response to community feedback. http://framework.zend.com/wiki/display/ZFPROP/Zend_Console_Process+-+Ben+Scholzen -Matt On Sat, April 26, 2008 2:30 pm, Marcus Bointon wrote: > It is - I've been using it for years in some daemons, and it works

Re: [fw-general] Error500 with Apache

2008-04-26 Thread Gunter Sammet
Could it be that Horde changes the include path for some reason. If it's set in php.ini or even .htaccess it shouldn't happen but just another thought. On Sat, Apr 26, 2008 at 5:09 AM, cjant83 <[EMAIL PROTECTED]> wrote: > > Hey, > Ive written an application using ZF1.5 on my Windows machine with

Re: [fw-general] Error500 with Apache

2008-04-26 Thread Gunter Sammet
Are you working with sessions? If yes, it might be because of session conflicts. Try to set a different session directory for each domain. HTH Gunter On Sat, Apr 26, 2008 at 5:44 PM, cjant83 <[EMAIL PROTECTED]> wrote: > > I've spent another 8 hours or so on this now. I've gone through all the >

Re: [fw-general] Error500 with Apache

2008-04-26 Thread cjant83
I've spent another 8 hours or so on this now. I've gone through all the code, I made a couple of adjustments but nothing major, and I'm still in the same boat. However!! I think I may have found the fault I've been trying to re-create the error on my site by following links, and refreshin

Re: [fw-general] Zend_Threading is ready for review

2008-04-26 Thread Marcus Bointon
On 26 Apr 2008, at 19:17, till wrote: This is how: http://de.php.net/pcntl Looks pretty interesting. :) It is - I've been using it for years in some daemons, and it works great (especially with shmop stuff too), but there's no threading in there, just processes. If that's what's behind i

Re: [fw-general] using session id in url

2008-04-26 Thread Anders Gunnarsson
Well, I've tried that (actually using the zend framework) if($_REQUEST["PHPSESSID"]){ Zend_Session::setId($_REQUEST["PHPSESSID"]); } but this doesn't seem to be working. If I take the session id from one browser (firefox) and then try to set it in another browser (IE) like: http://localhost

Re: [fw-general] Zend_Threading is ready for review

2008-04-26 Thread till
On Sat, Apr 26, 2008 at 8:09 PM, Michael B Allen <[EMAIL PROTECTED]> wrote: > On Sat, Apr 26, 2008 at 12:46 PM, Ben Scholzen 'DASPRiD' > <[EMAIL PROTECTED]> wrote: > > -BEGIN PGP SIGNED MESSAGE- > > Hash: SHA1 > > > > After having a look around, I was quite disapointed to see only ou

Re: [fw-general] Zend_Threading is ready for review

2008-04-26 Thread Michael B Allen
On Sat, Apr 26, 2008 at 12:46 PM, Ben Scholzen 'DASPRiD' <[EMAIL PROTECTED]> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > After having a look around, I was quite disapointed to see only outdated > threading classes for PHP. Now I've created my a threading class for > Zend Frame

Re: [fw-general] using session id in url

2008-04-26 Thread Christer Edvartsen
You could use the session_id function to set the session id. Check out the php manual: http://www.php.net/session_id Anders Gunnarsson wrote: Hi I'd like to send the session id as a url request (on a single page), instead of using the cookie. (Firefox looses the cookie when uploading files wi

[fw-general] using session id in url

2008-04-26 Thread Anders Gunnarsson
Hi I'd like to send the session id as a url request (on a single page), instead of using the cookie. (Firefox looses the cookie when uploading files with flash) Something like: if($_GET["PHPSESSID"]){ // set session to $_GET["PHPSESSID"] } session_start() is this possible? regards Anders

Re: [fw-general] Error500 with Apache

2008-04-26 Thread till
On Sat, Apr 26, 2008 at 1:09 PM, cjant83 <[EMAIL PROTECTED]> wrote: > > Hey, > Ive written an application using ZF1.5 on my Windows machine with WAMP > server installed. It works brilliantly, but when I uploaded it to my web > server (Linux,PHP5.2,MySQL5) I get into problems. The site works mos

[fw-general] Zend_Threading is ready for review

2008-04-26 Thread Ben Scholzen 'DASPRiD'
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 After having a look around, I was quite disapointed to see only outdated threading classes for PHP. Now I've created my a threading class for Zend Framework, which should also solve some problems which exist in other compontents (like Zend_Whois query

[fw-general] 1.5.2

2008-04-26 Thread Wil Sinclair
Yeap, it about that time again. We've gotten a lot of bug fixes checked in over the past few weeks, and this is a heads up that code freeze will be happening late next week or early the week after. *Now is a great time to start merging your changes for 1.5.2 to the 1.5 branch.* Please keep in mind

[fw-general] Error500 with Apache

2008-04-26 Thread cjant83
Hey, Ive written an application using ZF1.5 on my Windows machine with WAMP server installed. It works brilliantly, but when I uploaded it to my web server (Linux,PHP5.2,MySQL5) I get into problems. The site works most of the time, but randomly it throws up an Error 500. I've turned display_errors

Re: [fw-general] web services

2008-04-26 Thread till
On Fri, Apr 25, 2008 at 11:18 PM, James Dempster <[EMAIL PROTECTED]> wrote: > The service which you have provided is a SOAP or HTTP GET service. Strictly speaking, aren't GET requests part of REST? Which is why I think this should work? Till