I have never deployed a Django site before. I am currently looking to set it up in my deluxe GoDaddy account. Does anyone have any documentation on how to go about installing python and django on GoDaddy?
Yes, GoDaddy supports websites and applications built using Django. However, the company recommends choosing a VPS hosting plan or a dedicated server plan for these apps. Once you choose a hosting plan, you can use the cPanel control panel to install Python and Django. (Click on “Setup Python App”.)
Django is a fully featured Python web framework that can be used to build complex web applications.
For future reference, as I assume you have moved on...
It is possible to use Django on GoDaddy hosting, using VirtualEnv as they recommend. Python 2.7 is natively installed and works fine, though it isn't the default version to be run.
This works for me on a deluxe account, though I would still recommend that anyone who definitely wants to use Django seek alternate hosting. GoDaddy is not very friendly, and I am not certain that everything will continue to work.
EDIT
I realized there may also be some confusion in how to get Django running normally inside Apache, without the regular mod_* options. This was my approach:
Create the following script 'django_cgi.py' inside ~/code (Note the python path!):
#!~/your_new_env/bin/python import sys, os # Add a custom Python path for your project sys.path.insert(0, "/must/be/full/path/to/code/yoursite") # Set the DJANGO_SETTINGS_MODULE environment variable. # This should match the name for the project you added to the path above os.environ['DJANGO_SETTINGS_MODULE'] = 'yoursite.settings' from django.core.servers.fastcgi import runfastcgi runfastcgi(method="threaded", daemonize="false")
Inside ~/html, create or edit the .htaccess file with some variant of the following:
RewriteEngine On RewriteCond %{REQUEST_URI} !=/mysite.cgi RewriteRule ^(.*)$ /mysite.cgi [QSA,L,PT]
Finally, create ~/html/mysite.cgi as follows:
#!/bin/sh ~/your_new_env/bin/python ~/code/django_cgi.py 2>&1
This is over simplified but functional, and should result in every request for any page or file being passed off to Django.
The reason for this runaround is that GoDaddy provides only native CGI support for old versions of Python we can't use, so we must use our virtual environment. While we cannot use that directly in the CGI scripts, we can fortunately run a shell script and invoke it manually. The mod_rewrite rule just ensures all traffic goes through Django.
References
Django with FastCGI
Start of Django Tutorials
VirtualEnv
According to Godaddy, they can be able to use Python 2.7.2, and you may program if you have a deluxe edition of their web hosting. The way I understand it, python will work the moment you type the directory location of your python installation on the first row:
#!/usr/local/bin/python2.7
But, when I tried to test it, it does not work. I enabled SSH on my account. I tried to connect with Putty, and it works if I run it. But, the problem is, the site just does not show up.
I tried to check what the version of Python is. I found out it is Python 2.4.3. So, I tried to locate their directory. I found that it may be:
#!/usr/local/bin/python2.4
Or
#!/usr/local/bin/python2.4/site.py - (not sure)
I tried every directory and changed every syntax possible. Nothing works.
Here is the article for supporting Python: http://support.godaddy.com/help/article/7254/can-i-use-python-272-with-my-hosting-account?locale=en
So, either of the answers may be correct, according to my observation:
But before jumping into conclusions, I have requested the change of my Godaddy Python Server to 2.7. I'll update this post once I found out.
Update: Godaddy claims that you may be able to run Python on Virtual Private Server or Dedicated Server, which I think is possible since you are running your own computer. Technically, you can install anything on your own computer. So, if Python runs, Django may run, but I doubt if they know how to support it.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With