Re: Does anyone use Django on bluehost? "Cant find fcgi module" error on line 9 .

2016-04-09 Thread Rob Groves
I am using Django on bluehost.  I suspect that the issue you are seeing is 
that Django1.9 has stopped supporting fcgi.  I found that out when I tried 
to upgrade from 1.8 a while back.  I think you can probably copy over the 
fcgi module from the Django 1.8 release, but I haven't tried that.  I just 
stayed at 1.8, since it is still under support.  I figured I'd deal with it 
later when I have to move to 1.9.

On Thursday, April 7, 2016 at 11:28:53 AM UTC-4, django...@gmail.com wrote:
>
> We are using django on bluehost. Installed python, flup, django, and using 
> a postgres server. Every time I try and run fcgi it gives an error that the 
> module does not exist. Verified with bluehost that it is on our server. Put 
> it in the htaccess file Help anyone
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/eb86f5a0-d5cb-4873-93d7-1b97f860143e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Does anyone use Django on bluehost? "Cant find fcgi module" error on line 9 .

2016-04-07 Thread djangogirl21
We are using django on bluehost. Installed python, flup, django, and using 
a postgres server. Every time I try and run fcgi it gives an error that the 
module does not exist. Verified with bluehost that it is on our server. Put 
it in the htaccess file Help anyone

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/92e44c25-a04d-4648-a315-301c321fb2d4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Django on Bluehost

2012-09-29 Thread JJ Zolper

I hate to be that guy but...

I was on Bluehost for a while but I just ended up deciding the benefits 
of switching to WebFaction far outweighed the benefits of staying on 
Bluehost as a Django user.


If you're interested in joining WebFaction or hearing more about it feel 
free to send me an e-mail at jzth...@gmail.com and I can tell you more 
about it.


If you feel that it suits what you want to do better I would be happy if 
you listed me as an affiliate! (Which I can explain if the time comes)


See ya later.

JJ

On 09/24/2012 12:21 AM, Zach wrote:

Hey everyone,
I have recently been setting up a Django 1.4.1 project with python 
2.7.2 and MySQL. I am using fcgi to deploy my project in this 
environment because mod_wsgi is not available through bluehost. After 
much frustration I have gotten my site up to display the "it works" 
page. Now for some strange reason I can not get it away from this 
page. I have set up the urls.py file for the main project along with 
adding my app into the Installed_Apps section of the settings.py file.

My .htaccess file is the following
*AddHandler fcgid-script .fcgi*
*Options +SymLinksIfOwnerMatch*
*RewriteEngine On*
*RewriteBase /*
*RewriteRule ^(media/.*)$ - [L]*
*RewriteRule ^(adminmedia/.*)$ - [L]*
*RewriteCond %{REQUEST_URI} !(mysite.fcgi)*
*RewriteRule ^(.*)$ mysite.fcgi/$1 [L]*

My mysite.fcgi is the following
*#!/home1/propesn4/python27/bin/python*
*import sys, os*
*sys.path.insert(0, "/home1/propesn4/python27")*
*os.environ['DJANGO_SETTINGS_MODULE'] = "project.settings"
*
*sys.path.append("/home1/propesn4/project/")*
*from django.core.servers.fastcgi import runfastcgi*
*runfastcgi(method="threaded", daemonize="false")*
*
*
When I make changes to my django project I preform a *touch 
mysite.fcgi* so that the fcgi agent knows there has been changes.
If anyone could lead me in the right direction I would really 
appreciate it!


--
You received this message because you are subscribed to the Google 
Groups "Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/Aqyku-yyimsJ.

To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.


--
You received this message because you are subscribed to the Google Groups "Django 
users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Django on Bluehost

2012-09-25 Thread Gladson SimplĂ­cio Brito
https://www.appfog.com/

2012/9/24 Babatunde Akinyanmi 

> If cloud, I like dotcloud
>
> On 9/24/12, Alec Taylor  wrote:
> > You will probably crap-out with Bitbucket. Go to a cloud provider
> instead.
> >
> > For example, Red Hat OpenShift offers their IaaS platform for free (ATM
> > anyway).
> >
> > On Mon, Sep 24, 2012 at 2:21 PM, Zach  wrote:
> >
> >> Hey everyone,
> >> I have recently been setting up a Django 1.4.1 project with python 2.7.2
> >> and MySQL. I am using fcgi to deploy my project in this environment
> >> because
> >> mod_wsgi is not available through bluehost. After much frustration I
> have
> >> gotten my site up to display the "it works" page. Now for some strange
> >> reason I can not get it away from this page. I have set up the urls.py
> >> file
> >> for the main project along with adding my app into the Installed_Apps
> >> section of the settings.py file.
> >> My .htaccess file is the following
> >> *AddHandler fcgid-script .fcgi*
> >> *Options +SymLinksIfOwnerMatch*
> >> *RewriteEngine On*
> >> *RewriteBase /*
> >> *RewriteRule ^(media/.*)$ - [L]*
> >> *RewriteRule ^(adminmedia/.*)$ - [L]*
> >> *RewriteCond %{REQUEST_URI} !(mysite.fcgi)*
> >> *RewriteRule ^(.*)$ mysite.fcgi/$1 [L]*
> >>
> >> My mysite.fcgi is the following
> >> *#!/home1/propesn4/python27/bin/python*
> >> *import sys, os*
> >> *sys.path.insert(0, "/home1/propesn4/python27")*
> >> *os.environ['DJANGO_SETTINGS_MODULE'] = "project.settings"
> >> *
> >> *sys.path.append("/home1/propesn4/project/")*
> >> *from django.core.servers.fastcgi import runfastcgi*
> >> *runfastcgi(method="threaded", daemonize="false")*
> >> *
> >> *
> >> When I make changes to my django project I preform a *touch mysite.fcgi*
> >> so
> >> that the fcgi agent knows there has been changes.
> >> If anyone could lead me in the right direction I would really appreciate
> >> it!
> >>
> >>  --
> >> You received this message because you are subscribed to the Google
> Groups
> >> "Django users" group.
> >> To view this discussion on the web visit
> >> https://groups.google.com/d/msg/django-users/-/Aqyku-yyimsJ.
> >> To post to this group, send email to django-users@googlegroups.com.
> >> To unsubscribe from this group, send email to
> >> django-users+unsubscr...@googlegroups.com.
> >> For more options, visit this group at
> >> http://groups.google.com/group/django-users?hl=en.
> >>
> >
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Django users" group.
> > To post to this group, send email to django-users@googlegroups.com.
> > To unsubscribe from this group, send email to
> > django-users+unsubscr...@googlegroups.com.
> > For more options, visit this group at
> > http://groups.google.com/group/django-users?hl=en.
> >
> >
>
> --
> Sent from my mobile device
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Django on Bluehost

2012-09-24 Thread Babatunde Akinyanmi
If cloud, I like dotcloud

On 9/24/12, Alec Taylor  wrote:
> You will probably crap-out with Bitbucket. Go to a cloud provider instead.
>
> For example, Red Hat OpenShift offers their IaaS platform for free (ATM
> anyway).
>
> On Mon, Sep 24, 2012 at 2:21 PM, Zach  wrote:
>
>> Hey everyone,
>> I have recently been setting up a Django 1.4.1 project with python 2.7.2
>> and MySQL. I am using fcgi to deploy my project in this environment
>> because
>> mod_wsgi is not available through bluehost. After much frustration I have
>> gotten my site up to display the "it works" page. Now for some strange
>> reason I can not get it away from this page. I have set up the urls.py
>> file
>> for the main project along with adding my app into the Installed_Apps
>> section of the settings.py file.
>> My .htaccess file is the following
>> *AddHandler fcgid-script .fcgi*
>> *Options +SymLinksIfOwnerMatch*
>> *RewriteEngine On*
>> *RewriteBase /*
>> *RewriteRule ^(media/.*)$ - [L]*
>> *RewriteRule ^(adminmedia/.*)$ - [L]*
>> *RewriteCond %{REQUEST_URI} !(mysite.fcgi)*
>> *RewriteRule ^(.*)$ mysite.fcgi/$1 [L]*
>>
>> My mysite.fcgi is the following
>> *#!/home1/propesn4/python27/bin/python*
>> *import sys, os*
>> *sys.path.insert(0, "/home1/propesn4/python27")*
>> *os.environ['DJANGO_SETTINGS_MODULE'] = "project.settings"
>> *
>> *sys.path.append("/home1/propesn4/project/")*
>> *from django.core.servers.fastcgi import runfastcgi*
>> *runfastcgi(method="threaded", daemonize="false")*
>> *
>> *
>> When I make changes to my django project I preform a *touch mysite.fcgi*
>> so
>> that the fcgi agent knows there has been changes.
>> If anyone could lead me in the right direction I would really appreciate
>> it!
>>
>>  --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msg/django-users/-/Aqyku-yyimsJ.
>> To post to this group, send email to django-users@googlegroups.com.
>> To unsubscribe from this group, send email to
>> django-users+unsubscr...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/django-users?hl=en.
>>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
>

-- 
Sent from my mobile device

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Django on Bluehost

2012-09-24 Thread Alec Taylor
You will probably crap-out with Bitbucket. Go to a cloud provider instead.

For example, Red Hat OpenShift offers their IaaS platform for free (ATM
anyway).

On Mon, Sep 24, 2012 at 2:21 PM, Zach  wrote:

> Hey everyone,
> I have recently been setting up a Django 1.4.1 project with python 2.7.2
> and MySQL. I am using fcgi to deploy my project in this environment because
> mod_wsgi is not available through bluehost. After much frustration I have
> gotten my site up to display the "it works" page. Now for some strange
> reason I can not get it away from this page. I have set up the urls.py file
> for the main project along with adding my app into the Installed_Apps
> section of the settings.py file.
> My .htaccess file is the following
> *AddHandler fcgid-script .fcgi*
> *Options +SymLinksIfOwnerMatch*
> *RewriteEngine On*
> *RewriteBase /*
> *RewriteRule ^(media/.*)$ - [L]*
> *RewriteRule ^(adminmedia/.*)$ - [L]*
> *RewriteCond %{REQUEST_URI} !(mysite.fcgi)*
> *RewriteRule ^(.*)$ mysite.fcgi/$1 [L]*
>
> My mysite.fcgi is the following
> *#!/home1/propesn4/python27/bin/python*
> *import sys, os*
> *sys.path.insert(0, "/home1/propesn4/python27")*
> *os.environ['DJANGO_SETTINGS_MODULE'] = "project.settings"
> *
> *sys.path.append("/home1/propesn4/project/")*
> *from django.core.servers.fastcgi import runfastcgi*
> *runfastcgi(method="threaded", daemonize="false")*
> *
> *
> When I make changes to my django project I preform a *touch mysite.fcgi* so
> that the fcgi agent knows there has been changes.
> If anyone could lead me in the right direction I would really appreciate
> it!
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/django-users/-/Aqyku-yyimsJ.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Django on Bluehost

2012-09-24 Thread carlos
I configure many project in bluehost the ways i use is put the code in dir
home for example
/home/user/projects/mysite
in /home/user/public_html/django.fcgi and .htaccesss and the content is:
django.wsgi

#!/home3/user/bin/python

import sys, os
sys.path.insert(0,"/home3/user/projects/mysite")

from flup.server.fcgi import WSGIServer

os.environ['DJANGO_SETTINGS_MODULE'] = 'mysite.settings'
from django.core.handlers.wsgi import WSGIHandler
WSGIServer(WSGIHandler()).run()

and .htaccess
Options +SymLinksIfOwnerMatch
RewriteEngine On
RewriteBase /
RewriteRule ^(media/.*)$ - [L]
RewriteCond %{REQUEST_URI} !(django.fcgi)
RewriteRule ^(.*)$ django.fcgi/$1 [L]


that is all.

cheer



On Sun, Sep 23, 2012 at 10:21 PM, Zach  wrote:

> Hey everyone,
> I have recently been setting up a Django 1.4.1 project with python 2.7.2
> and MySQL. I am using fcgi to deploy my project in this environment because
> mod_wsgi is not available through bluehost. After much frustration I have
> gotten my site up to display the "it works" page. Now for some strange
> reason I can not get it away from this page. I have set up the urls.py file
> for the main project along with adding my app into the Installed_Apps
> section of the settings.py file.
> My .htaccess file is the following
> *AddHandler fcgid-script .fcgi*
> *Options +SymLinksIfOwnerMatch*
> *RewriteEngine On*
> *RewriteBase /*
> *RewriteRule ^(media/.*)$ - [L]*
> *RewriteRule ^(adminmedia/.*)$ - [L]*
> *RewriteCond %{REQUEST_URI} !(mysite.fcgi)*
> *RewriteRule ^(.*)$ mysite.fcgi/$1 [L]*
>
> My mysite.fcgi is the following
> *#!/home1/propesn4/python27/bin/python*
> *import sys, os*
> *sys.path.insert(0, "/home1/propesn4/python27")*
> *os.environ['DJANGO_SETTINGS_MODULE'] = "project.settings"
> *
> *sys.path.append("/home1/propesn4/project/")*
> *from django.core.servers.fastcgi import runfastcgi*
> *runfastcgi(method="threaded", daemonize="false")*
> *
> *
> When I make changes to my django project I preform a *touch mysite.fcgi* so
> that the fcgi agent knows there has been changes.
> If anyone could lead me in the right direction I would really appreciate
> it!
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/django-users/-/Aqyku-yyimsJ.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Django on Bluehost

2012-09-24 Thread Zach
Hey everyone,
I have recently been setting up a Django 1.4.1 project with python 2.7.2 
and MySQL. I am using fcgi to deploy my project in this environment because 
mod_wsgi is not available through bluehost. After much frustration I have 
gotten my site up to display the "it works" page. Now for some strange 
reason I can not get it away from this page. I have set up the urls.py file 
for the main project along with adding my app into the Installed_Apps 
section of the settings.py file. 
My .htaccess file is the following
*AddHandler fcgid-script .fcgi*
*Options +SymLinksIfOwnerMatch*
*RewriteEngine On*
*RewriteBase /*
*RewriteRule ^(media/.*)$ - [L]*
*RewriteRule ^(adminmedia/.*)$ - [L]*
*RewriteCond %{REQUEST_URI} !(mysite.fcgi)*
*RewriteRule ^(.*)$ mysite.fcgi/$1 [L]*

My mysite.fcgi is the following
*#!/home1/propesn4/python27/bin/python*
*import sys, os*
*sys.path.insert(0, "/home1/propesn4/python27")*
*os.environ['DJANGO_SETTINGS_MODULE'] = "project.settings"
*
*sys.path.append("/home1/propesn4/project/")*
*from django.core.servers.fastcgi import runfastcgi*
*runfastcgi(method="threaded", daemonize="false")*
*
*
When I make changes to my django project I preform a *touch mysite.fcgi* so 
that the fcgi agent knows there has been changes.
If anyone could lead me in the right direction I would really appreciate it!

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/Aqyku-yyimsJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Django + fastCGI + bluehost

2006-05-13 Thread [EMAIL PROTECTED]


Rick wrote:
> Thanks,
>
> It turns out I had the mod_rewrite rules wrong.
> I've also gotten rid of my python error.
>
> How did you get svn working?

No svn although I'm thinking in installing the binaries locally.

Saludos,
IvO


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~--~~~~--~~--~--~---



Re: Django + fastCGI + bluehost

2006-05-07 Thread Rick

Thanks,

It turns out I had the mod_rewrite rules wrong.
I've also gotten rid of my python error.

How did you get svn working?

Rick


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~--~~~~--~~--~--~---



Re: Django + fastCGI + bluehost

2006-05-06 Thread [EMAIL PROTECTED]

Hi,

Just to reply to Rick, I kind of succeeded in configuring django.
At least I access the admin interface for the tutorial application
(polls).
In summary:
- I followed the 'django on dreamhost' instructions
- Compiled in psycopg (not avail by default), used bluehost's porstgres
headers.
- The 'string out of range' error is gone once I set up the mod_rewrite
rules.

That's all


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~--~~~~--~~--~--~---



Re: Django + fastCGI + bluehost

2006-05-05 Thread Rick

Hi,

James Crasta, over at django-developers talks about a patch he wrote to
django 0.95 for making  django work easily in a fastcgi environment.

See:
http://groups.google.com/group/django-developers/browse_thread/thread/eb7ddd45ec78883f/b3914435747e139c

He's intending to do a write up on it (hopefully soon).

Rick


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~--~~~~--~~--~--~---



Re: Django + fastCGI + bluehost

2006-05-05 Thread [EMAIL PROTECTED]

Hi,

I ave the exact same problem.
I have also setup mod_fastcgi on my home box and then fired up my site
locally. Got the same error.

Please help


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~--~~~~--~~--~--~---



Re: Django + fastCGI + bluehost

2006-05-04 Thread Rick

Hi James,

I'm hoping you have a bit of time to describe your success at
getting django to work on BlueHost, perhaps by describing the
differences between the DreamHost document and what you
had to do.

I've been trying to set up django on my new BlueHost account.
While I've gotten django to do the project and PostgreSQL table setup,
and I've gotten a simple hello.fcgi to work,
when I try the recomennded django.fcgi, I get a "string index out of
range"
deap in django. You can see the error I get by going to:
http://www.bestdealphonecards.com/django.fcgi

Just to describe my divergence from the DreamHost script:
1. "which svc" reports nothing, so I downloaded Django-0.91.tar.gz
   and install it locally
2. "django-admin.py init" wouldn't run without psycopg.
   So I built it from psycopg-1.1.20.tar.gz after creating a local
   build of postgresql from postgresql-7.4.8.tar.gz
   (the same version that BlueHost is running).

So now "django-admin.py init" works, but django.fcgi doesn't.

Can you shed any light on this?

Thanks,

Rick

James wrote:
> Carlos,
>
> I have django running on my bluehost account with fcgi.  The best notes
> on how to get things running I have found are here:
>
> http://wiki.dreamhost.com/index.php/Django
>
> Bluehost is setup pretty much the same as dreamhost.  I recommend
> Bluehost for the price and support.
>
> James
>
> Carlos Yoder wrote:
> > Hey there, FP and all that :-)
> >
> > Does anyone of you have experience with running Django on Bluehost?
> >
> > They don't support mod_python, but according to their support people,
> > they do FastCGI. I include their reply, to see if it helps:
> >
> > 
> > We do not have mod_python installed, but we do have Fast CGI on all of
> > our servers.  The following are a list of mods installed on our
> > servers which may differ slightly between versions:
> >
> > Apache/1.3.34 (Unix) mod_fastcgi/2.4.2 mod_auth_passthrough/1.8
> > mod_log_bytes/1.2 mod_bwlimited/1.4 FrontPage/5.0.2.2635
> > mod_ssl/2.8.25 OpenSSL/0.9.7a PHP-CGI/0.1b
> > -
> >
> > Is there anything else I should ask, or this setup could run Django
> > successfully? Thanks a lot!
> > 
> > --
> > Carlos Yoder
> > [EMAIL PROTECTED]


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~--~~~~--~~--~--~---



Re: Django + fastCGI + bluehost

2006-04-10 Thread Carlos Yoder

James wrote:

>> I have django running on my bluehost account with fcgi.  The best
notes on how to get
>> things running I have found are here:
>>
>> http://wiki.dreamhost.com/index.php/Django
>>
>> Bluehost is setup pretty much the same as dreamhost.  I recommend
>> Bluehost for the price and support.

Thanks for the tip! I'll be moving to Bluehost very soon, then.


Gabor wrote:

> hi, could i ask you some questions regarding bluehost:
>
> - python version
> - do they offer postgresql (form their webpage it seems so. just wanted
> to make sure)
> - do i have to buy at least an one-year subscription? can't i just pay
> for the first month at the beginning? (it seems that you  either buy a
> 12month subscription for 7.95$/month, or a 24month one for 6.95$/month)
>
> thanks,
> gabor

I guess you'll have to ask Bluehost about that!


--
Carlos Yoder
[EMAIL PROTECTED]

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~--~~~~--~~--~--~---



Re: Django + fastCGI + bluehost

2006-04-09 Thread gabor

James wrote:
> Carlos,
> 
> I have django running on my bluehost account with fcgi.  The best notes
> on how to get things running I have found are here:
> 
> http://wiki.dreamhost.com/index.php/Django
> 
> Bluehost is setup pretty much the same as dreamhost.  I recommend
> Bluehost for the price and support.

hi, could i ask you some questions regarding bluehost:

- python version
- do they offer postgresql (form their webpage it seems so. just wanted 
to make sure)
- do i have to buy at least an one-year subscription? can't i just pay 
for the first month at the beginning? (it seems that you  either buy a 
12month subscription for 7.95$/month, or a 24month one for 6.95$/month)

thanks,
gabor

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~--~~~~--~~--~--~---



Re: Django + fastCGI + bluehost

2006-04-07 Thread James

Carlos,

I have django running on my bluehost account with fcgi.  The best notes
on how to get things running I have found are here:

http://wiki.dreamhost.com/index.php/Django

Bluehost is setup pretty much the same as dreamhost.  I recommend
Bluehost for the price and support.

James

Carlos Yoder wrote:
> Hey there, FP and all that :-)
>
> Does anyone of you have experience with running Django on Bluehost?
>
> They don't support mod_python, but according to their support people,
> they do FastCGI. I include their reply, to see if it helps:
>
> 
> We do not have mod_python installed, but we do have Fast CGI on all of
> our servers.  The following are a list of mods installed on our
> servers which may differ slightly between versions:
>
> Apache/1.3.34 (Unix) mod_fastcgi/2.4.2 mod_auth_passthrough/1.8
> mod_log_bytes/1.2 mod_bwlimited/1.4 FrontPage/5.0.2.2635
> mod_ssl/2.8.25 OpenSSL/0.9.7a PHP-CGI/0.1b
> -
>
> Is there anything else I should ask, or this setup could run Django
> successfully? Thanks a lot!
> 
> --
> Carlos Yoder
> [EMAIL PROTECTED]


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~--~~~~--~~--~--~---



Django + fastCGI + bluehost

2006-04-07 Thread Carlos Yoder

Hey there, FP and all that :-)

Does anyone of you have experience with running Django on Bluehost?

They don't support mod_python, but according to their support people,
they do FastCGI. I include their reply, to see if it helps:


We do not have mod_python installed, but we do have Fast CGI on all of
our servers.  The following are a list of mods installed on our
servers which may differ slightly between versions:

Apache/1.3.34 (Unix) mod_fastcgi/2.4.2 mod_auth_passthrough/1.8
mod_log_bytes/1.2 mod_bwlimited/1.4 FrontPage/5.0.2.2635
mod_ssl/2.8.25 OpenSSL/0.9.7a PHP-CGI/0.1b
-

Is there anything else I should ask, or this setup could run Django
successfully? Thanks a lot!

--
Carlos Yoder
[EMAIL PROTECTED]

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~--~~~~--~~--~--~---