2009/3/5 velappan velappan <[email protected]>: > > It would also be great if you guide me to configure my web address > (For Ex: http://localhost:8080) in apache.
You can setup apache to run files that end in .py as cgi scripts but there is a big overhead in starting the python interpreter every time a page is requested. This can be overcome by using mod_python or fastcgi, Django for instance has support for both of these methods and might be simpler than writing your own mod_python handler. If you're deploying to shared hosting this might also affect what you pick. Michael --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Python Ireland" 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.ie/group/pythonireland?hl=en -~----------~----~----~----~------~----~------~--~---
