On Mon, Jul 6, 2009 at 9:22 PM, Lagg<[email protected]> wrote: > > I just installed Satchmo per the installation directions. > > The store looks as advertised, but the admin area is completely > without style/colors/images. It looks like just basic html thrown on > the page. (nothing at all like the default django admin) > > Is this the default behavior , or am I missing something? > > Thanks in advance >
This is an issue with your Django configuration. First, make sure that MEDIA_ROOT in settings.py is set to your static media folder. Then, if you're using a UNIX-like OS: ln -s /PATH/TO/DJANGO/contrib/admin/media /PATH/TO/MEDIA_ROOT/admin If you're in Windows, you'll have to dig around some more or wait for someone else to give you an answer. Also, it's generally considered a good idea to have a separate lightweight webserver handling your static media. I'm using nginx and apache2, but I've heard of people using all sorts of combinations. Sam --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
