Re: Running Pylons with PHP

2008-05-16 Thread Max Ischenko
On 5/12/08, Syp [EMAIL PROTECTED] wrote: Hello -- Does anyone know if it's possible to run Pylons and PHP together on the same port? I'm trying to use a web analytics tool (Piwik) which requires PHP. Any suggestions? We do just this on developers.org.ua site. Frontpage is on pylons

Re: Running Pylons with PHP

2008-05-13 Thread Luis Bruno
Noah Gift escreveu: Wow, [http://pythonpaste.org/wphp/] is cool, I forget Ian did that. You can also proxy to different servers and mounting them on different URLs. signature.asc Description: OpenPGP digital signature

Re: Running Pylons with PHP

2008-05-13 Thread Damian
Hi, This is a really interesting module - does anyone know what sort of overheads it has? I can see this as being quite useful for migrating legacy php code to a pylons app allowing you to reuse some existing php code in an updated pylons app, either for transitioning it or using a mix of the

Re: Running Pylons with PHP

2008-05-13 Thread Ian Bicking
Damian wrote: This is a really interesting module - does anyone know what sort of overheads it has? I can see this as being quite useful for migrating legacy php code to a pylons app allowing you to reuse some existing php code in an updated pylons app, either for transitioning it or using

Re: Running Pylons with PHP

2008-05-13 Thread Syp
Thanks for everyone's suggestions! I'll start with the sub-domain approach. On May 13, 1:11 pm, Ian Bicking [EMAIL PROTECTED] wrote: Damian wrote: This is a really interesting module - does anyone know what sort of overheads it has? I can see this as being quite useful for migrating

Running Pylons with PHP

2008-05-12 Thread Syp
Hello -- Does anyone know if it's possible to run Pylons and PHP together on the same port? I'm trying to use a web analytics tool (Piwik) which requires PHP. Any suggestions? Thanks in advance! Syp --~--~-~--~~~---~--~~ You received this message because you

Re: Running Pylons with PHP

2008-05-12 Thread Jorge Vargas
On Mon, May 12, 2008 at 4:43 PM, Syp [EMAIL PROTECTED] wrote: Hello -- Does anyone know if it's possible to run Pylons and PHP together on the same port? huh? unless you configure your apache to serve both py and php and mess around with everyrequest to see who is handling what no. I'll

Re: Running Pylons with PHP

2008-05-12 Thread Damjan
 But named virtual hosts won't work if you're using HTTPS. Well, there's a patch for Apache to support that, and nginx also does support the TLS extension for single ip based HTTPS. Firefox 2.0 and IE 7.0 I htink also support this. (the feature is named TLS SNI.. https://sni.velox.ch/ )

Re: Running Pylons with PHP

2008-05-12 Thread Mike Orr
On Mon, May 12, 2008 at 3:31 PM, Damjan [EMAIL PROTECTED] wrote: But named virtual hosts won't work if you're using HTTPS. Well, there's a patch for Apache to support that, and nginx also does support the TLS extension for single ip based HTTPS. Firefox 2.0 and IE 7.0 I htink also

Re: Running Pylons with PHP

2008-05-12 Thread Noah Gift
On Mon, May 12, 2008 at 9:40 PM, Humberto Diogenes [EMAIL PROTECTED] wrote: On 12/05/2008, at 18:59, Jorge Vargas wrote: On Mon, May 12, 2008 at 4:43 PM, Syp [EMAIL PROTECTED] wrote: Hello -- Does anyone know if it's possible to run Pylons and PHP together on the same port?

Re: Running Pylons with PHP

2008-05-12 Thread Mike Orr
On Mon, May 12, 2008 at 6:44 PM, Noah Gift [EMAIL PROTECTED] wrote: I would recommend the subdomain approach, too. But if you really want the first option, you can play with WPHP: http://pythonpaste.org/wphp/ Wow, that is cool, I forget Ian did that. He truly is a mad python

Re: Running Pylons with PHP

2008-05-12 Thread Jorge Vargas
On Mon, May 12, 2008 at 6:06 PM, Mike Orr [EMAIL PROTECTED] wrote: On Mon, May 12, 2008 at 1:43 PM, Syp [EMAIL PROTECTED] wrote: Otherwise you can use a different named virtual host (Jorge's subdomain idea) or a different IP. But named virtual hosts won't work if you're using HTTPS.