hi

i am running the satchmo demo shop in apache, it's working but just
the product images aren't showing,
i am running the layout as per the tutorial at:
http://gosatchmo.com/starting-a-new-store-real-world-project-layout

i have:

storename/
        static/
             css/
             images/
             js/

in settings.py i have:

my shop at the root directory
    'SHOP_BASE' : ' ',

    MEDIA_ROOT = os.path.join(DIRNAME, 'static/')
    MEDIA_URL = '/static/'


in apache httpd.conf, i have:

<VirtualHost 1.2.3.4:80>
  <Location "/">
    SetHandler python-program
    PythonHandler django.core.handlers.modpython
    SetEnv DJANGO_SETTINGS_MODULE storename.settings
    SetEnv PYTHON_EGG_CACHE "/var/cache/www/pythoneggs"
    #PythonOption django.root /
    PythonDebug On
    PythonPath "['/home/admin'] + sys.path"
  </Location>

  <Location "/static">
    SetHandler none
  </Location>

</VirtualHost>

What should i do to get the demo shop product images to show up when
running satchmo on apache?

thanks



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Satchmo 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/satchmo-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to