On Mon, May 12, 2008 at 1:43 PM, 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?
I'm running PHPMyAdmin on a different port. If there's no URL overlap (e.g., you can mount one site on a "subdirectory" URL), you can make the Pylons handler skip that URL so that the other handler can pick it up. How you do this depends on which Apache module you're using for Pylons. For instance: ProxyPass / http://localhost:8080/ ProxyPass /piwik ! 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. -- Mike Orr <[EMAIL PROTECTED]> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en -~----------~----~----~----~------~----~------~--~---
