9

I know Hostmonster allows Python. Has anyone successfully run Django on there? Any problems?

andrewrk
  • 30,272
  • 27
  • 92
  • 113
Steve
  • 1,869
  • 3
  • 15
  • 9
  • I'm on a shared plan and have access to python 2.6.6, 2.7.3 and 3.2.3. As expected you have little ability to install new packages, but you can use http://pypi.python.org/pypi/virtualenv to add whatever packages you need (and just point your `fgci` file to your installation). Also, You'll want to use the `--system-site-packages` option when setting up virtualenv – DanielB Jan 20 '13 at 09:40

5 Answers5

10

I know this is an old question, but here is the answer: yes, Hostmonster does support Django

There used to be this Hostmonster KB article for details, including instructions on how to set it up, but that link appears to be dead these days, and the only article about Hostmonster article about Django is about troubleshooting. You can find instructions on how to set up Django on Hostmonster elsewhere.

David Johnstone
  • 24,300
  • 14
  • 68
  • 71
3

http://www.hostmonsterforum.com/showpost.php?p=20003&postcount=7

I tried the archive the user posted there, and it worked like a charm.

andrewrk
  • 30,272
  • 27
  • 92
  • 113
0

Well, if it support Python, you might be able to run Django using a FastCGI setup, as described here: FastCGI Docs. If it supports mod_python (which I guess it's what you mean), then sure, you can install it using the steps listed here: ModPython docs

dfarrell07
  • 2,872
  • 2
  • 21
  • 26
dguaraglia
  • 5,774
  • 1
  • 26
  • 23
0

Hostmonster uses cPanel (possible with CentOS), just like other host providers. If you research into cPanel , you are more likely to get your answer.

Generally, the answer is "no" since out-of-the-box cPanel does not support python 2.5 or mod_wsgi. But it does support Apache2, so it's possible that hostmonster could use mod_wsgi to run sites built with Django.

djangofan
  • 28,471
  • 61
  • 196
  • 289
0

There is a Github repository for hostmonster and Django it helps me:

hostmonster-django.markdown

Murat Demir
  • 716
  • 7
  • 26