1

I want to use comet programming with zend framework, but zend framework uses only one single file for processing a request while in comet I need to process 2 requests at the same time. As in zend only a single file is used to handle the request if any other request is used then it will be put in queue state.

If 2 different files are taken by changing the request .htaccess file then session_id is not constant or varies.

How do I overcome the problem?

tereško
  • 56,151
  • 24
  • 92
  • 147
Krunal Shah
  • 567
  • 1
  • 10
  • 24

1 Answers1

0

I'd recommend you have a look at:

There isn't a good solution for PHP. IMHO the best option would be to use your PHP server with Zend framework for your web app. And use a different server for your realtime web infrastructure. This means you can either use a self hosted or hosted realtime solution.

Community
  • 1
  • 1
leggetter
  • 14,640
  • 1
  • 50
  • 58
  • thankx leggetter. I think I have to go with sub-domain for the solution. – Krunal Shah Nov 18 '11 at 05:51
  • Ok, a self hosted solution is the way to go. I'd go with a dedicated realtime server and communicate between it and your web application using queues and/or web service calls. – leggetter Nov 18 '11 at 10:43