2010/5/14 Archidjango <[email protected]> > Hey all, > > I'm a little confused, but I guess that's normal being a real > newbie :-) . > > I tried to upload code written on my development server to a "real" > web server. > > I uploaded the code through ftp and made the url-forward, tested an > dummy "index.html" so there's no problem on that side. The connection > seems to be fine. > > However, the server (?) does not seem to recognize the python code. > The first line I get on a browser when navigating to the website's url > is the following: > > {% extends "xyz.html" %} {% load i18n %} {% block title %}{% trans > "Calculate" %}{% endblock %} {% block media %} {% endblock %} {% block > content %} > > On my development server the whole thing works fine, but I don't > exactly know what to do to make the online version work as well. > > Does anyone have an idea on how to solve this problem? >
Hi, you don't give much details about your intended server setup... just to be sure, did you read the django manual page on deployment ? Here is the link, as you will see, you have many different possibilities, mod_wsgi being the recommended one: docs.djangoproject.com/en/1.1/howto/deployment/#howto-deployment-index -- Alessandro Pasotti w3: www.itopen.it -- You received this message because you are subscribed to the Google Groups "Django users" 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/django-users?hl=en.

