Hello,
I'm trying to install the lfs shop on webfaction in a subdirectory of
my domain.
So I want it to be installed at
my-domain.com/lfs.
I followed the instruction given at
http://community.webfaction.com/questions/6397/django-lfs-lightning-fast-shop-deployment-issue
I also followed the instructions here
http://docs.webfaction.com/software/django/config.html#mounting-a-django-application-on-a-subpath
and changed some variables in the settings.py file to
FORCE_SCRIPT_NAME="/lfs"
LOGIN_URL = "/lfs/login/"
LOGIN_REDIRECT_URL = "/lfs/manage/"
STATIC_URL = '/lfs/static/'
MEDIA_URL = '/lfs/media/'
and restarted apache afterwards.
However this doesn't work completely.
When I browse to the main page of my installation at my-domain/lfs
I can see that some urls are generated correctly, e.g
/lfs/cart
/lfs/imprint
/lfs/pages
/lfs/login
But some urls on the main page are still not correct and don't work,
like
/manage
/contact
Also the home button doesn't work correctly. It links to my-domain
instead of my-domain/lfs.
What am I missing?
Can you help me?
Andreas