On Tuesday, 4 February 2014 22:01:59 UTC+1, josh wood wrote: > > Is it possible to use two different languages in the same application, > e.g. python and php. How would I go about doing this if it is possible? > Will it incur costs? >
I have done it using modules. It works fine on the App Engine production server, but I have had problems running them concurrently locally. You will need at least 1 more instance if they are accessed concurrently. You can use the dispatcher yaml file to get them both work under the same hostname. However, you may run into problems if you upload files to the one that isn't set as default. So if you plan on file uploads make sure you do it to the default server (or use the appspot.com URL). Ola. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/groups/opt_out.
