I've tried to fix my config files and it gives me a 500 error, here is
what i see n the logs. I've been told by someone else that they think
it's still my mod_wsgi/Apache configuration and not the error that I'm
getting in the log about missing modules. Any suggestions? Here is the
server error log message and my newly configured files:

#################################################
# error.log
#################################################
mod_wsgi (pid=20698): Exception occurred processing WSGI script '/
srv/
www/duckling.org/store/wsgi-scripts/django.wsgi'.
Traceback (most recent call last):
File "/usr/local/lib/python2.6/dist-packages/django/core/handlers/
wsgi.py", line 230, in __call__
     self.load_middleware()
File "/usr/local/lib/python2.6/dist-packages/django/core/handlers/
base.py", line 42, in load_middleware
raise exceptions.ImproperlyConfigured('Error importing middleware %s:
"%s"' % (mw_module, e))
 ImproperlyConfigured: Error importing middleware
satchmo_store.shop.SSLMiddleware: "No module named
satchmo_store.shop.SSLMiddleware
I'm at a loss here as to how I find out if the problem lies with
mod_wsgi or apache configs or django or satchmo. So, I'm posting here
just in case someone might be able to help me out. Without some help
this project is as good as doomed as I don't have a lot of skills and
I'm learning along the way.

Here are my config files. I've went though many different versions,
this is my latest:
####################################
# apache vhost file called duckling.org
####################################
<VirtualHost 1.2.3.4:80>
    ServerAdmin h...@duckling.org
    ServerName duckling.org
    ServerAlias www.duckling.org
    DocumentRoot /srv/www/duckling.org/store/
   <Directory /srv/www/duckling.org/store/>
    Order Allow,Deny
    Allow from all
    </Directory>
    Alias /static /srv/www/duckling.org/store/static/
    <Directory /srv/www/duckling.org/store/static/>
    AllowOverride None
    Order deny,allow
    Allow from all
    </Directory>
    WSGIScriptAlias / /srv/www/duckling.org/store/wsgi-scripts/
django.wsgi
    <Directory /srv/www/duckling.org/store/wsgi-scripts/>
    Order deny,allow
    Allow from all
    </Directory>
</VirtualHost>
#########################
# django.wsgi file
#########################
import os
import sys
sys.path.append('/srv/www/duckling.org/store')
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()


# With this current configuration I get a error in my server logs
for:
 ImproperlyConfigured: Error importing middleware
satchmo_store.shop.SSLMiddleware: "No module named
satchmo_store.shop.SSLMiddleware"
Can anyone give me some clues as what I can do next? And if all else
fails, what are my alternatives as far as deploying this django app?
I've got time to "change plans" at this moment.

thanks again for the help!
j.

On Dec 11, 6:35 pm, jc <jimmy.case...@gmail.com> wrote:
> You definitely lost me in some places but you've also cleared some
> things up in the process. I also noticed that I had "<Directory /srv/
> www/wsgi-scripts>", which is lacking a directory for the
> WSGIScriptAlias. I've fixed that now. *Now*, I no longer get my
> listing of my files in my project when I go to my address *but* I now
> get 500 Internal Server Error. I'm not sure if I should trust the logs
> or maybe I've misconfigured something else (either in Apache or in my
> django.wsgi file)...I had this same issue yesterday 500 error...
>
> Also, when you said "Somewhere in your Apache config you have denied
> access to the entire filesystem", do  you mean *Apache* has done this
> so that it will keep others out of my project (not that I've actually
> done this somewhere, right?)
>
> After these changes, the project is still not running and I'm still
> not sure if it's my django app that's the issue or wsgi and my Apache
> configs. :/
>
> thanks for the reply back, I do appreciate it...
>
> j.
>
> On Dec 11, 5:29 pm, Mike Dewhirst <mi...@dewhirst.com.au> wrote:
>
>
>
>
>
>
>
> > On 12/12/2010 7:14am, jc wrote:
>
> > > Apache&  mod_wsgi are configured correctly (I've created a hello
> > > world .html apache file and a hello world mod_wsgi application with
> > > no
> > > problems). I know need my Django app to recognize my django.wsgi
> > > file.
> > > What makes me think that it's not recognizing my wsgi file is that I
> > > went into my django.wsgi file I created and completely deleted all of
> > > the code in the file and restarted Apache and it still gives me the
> > > same page (a listing of the files from Django app, not my actual
> > > Django application. Configuring Apache and mod_wsgi went really well
> > > but I'm at a loss of how to fix this. Here are some details instead of
> > > "it's
> > > not working":
>
> > You are correct. Apache is not looking at the wsgi script. Have a look
> > at the suggestions below ... before playing with django.wsgi.
>
> > > Here is my current django.wsgi file:
>
> > > import os
> > > import sys
> > > sys.path.append('/srv/www/duckling.org/store/')
> > > os.environ['PYTHON_EGG_CACHE'] = '/srv/www/duckling.org/
> > > store/.python-
> > > egg'
> > > os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
> > > import django.core.handlers.wsgi
> > > application = django.core.handlers.wsgi.WSGIHandler()
>
> > > I've tried a few different versions of the django.wsgi file
> > > (including
> > > a version like the one over athttp://www.djangoproject.com/).
> > > This version of my wsgi is from here:
> > >http://library.linode.com/frameworks/django-apache-mod-wsgi/ubuntu-10...
>
> > > Also, here is my vhost apache configuration file below. I think these
> > > are
> > > the main files that are suppose to do the job for me. Let me know if
> > > you see any errors in what I'm doing and what else I might do to fix
> > > this. The django app runs fine on the django's built-in development
> > > server so I'm thinking it *might have* something with my paths.
> > > No errors in my apache error.log file as well. It's acting as there's
> > > no problem at all, which is not the case...the project isn't loading,
> > > like I said just a listing of my files and directories of my Django
> > > project. Here is my apache config file:
>
> > > <VirtualHost 1.2.3.4:80>
> > >      ServerAdmin h...@duckling.org
> > >      ServerName duckling.org
> > >      ServerAliaswww.duckling.org
>
> > >      DocumentRoot /srv/www/duckling.org/store/
>
> > # DocumentRoot is where you keep non-django stuff eg., static files
> > # which is served by Apache without needing your Django code
> > DocumentRoot /srv/www/duckling.org/htdocs/
>
> > >      <Directory /srv/www/duckling.org/store/>
> > >      Order Allow,Deny
> > >      Allow from all
> > >      </Directory>
>
> > # now let the public access anything here
> >   <Directory /srv/www/duckling.org/htdocs/>
> >    AllowOverride None
> >    Order deny,allow
> >    Allow from all
> >   </Directory>
>
> > >      WSGIScriptAlias /django /srv/www/duckling.org/store/wsgi-scripts/
> > > django.wsgi
> > >      <Directory /srv/www/wsgi-scripts>
> > >      Order allow,deny
> > >      Allow from all
> > >      </Directory>
> > > </VirtualHost>
>
> > Somewhere in your Apache config you have denied access to the entire
> > filesystem to prevent outsiders from hacking in. Your Django code must
> > also be hidden from outsiders so it will live safely in
> > /srv/www/duckling.org/store because you haven't allowed anyone except
> > Apache to see it.
>
> > Now you need to provide an allowed conduit to your Django code. So make
> > an Apache script alias to map the website root (ie '/') to your Django
> > code. Because you are using mod_wsgi the entry point is your django.wsgi
> > script. So map / to the script:
> >   WSGIScriptAlias / /srv/www/duckling.org/store/wsgi-scripts/django.wsgi
>
> > # and give the public full access - but only to the entry point
> >   <Directory /srv/www/duckling.org/store/wsgi-scripts/>
> >    Order deny,allow
> >    Allow from all
> >   </Directory>
>
> > hth
> > Mike
>
> > > And here are versions of the stack that I'm using, I saw over at the
> > > mod_wsgi site that you all would like the versions of what I'm using
> > > on the server:
> > > Apache/2.2.14 (Ubuntu) PHP/5.3.2-1ubuntu4.5 with Suhosin-Patch
> > > mod_python/3.3.1 Python/2.6.5 mod_wsgi/2.8
>
> > I would remove mod_python if possible
>
> > > thanks,
> > > j.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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.

Reply via email to