Hi all,

I successfully installed Django-tinymce on my local machine using
instructions given at http://code.google.com/p/django-tinymce/

But when I uploaded the project dir to server, I am getting the error
as "no module named tinymce"

I had installed tinymce using python setup.py install option.
In the doc, there is following line:
Place the tinymce module in your Python path. You can put it into your
Django project directory or run python setup.py install from a shell.

So it seems that I can put it in my project dir and server should
recognize it. Do I have to explicitly install it on server too.

Details of the proj are:

Dir structure:
project
- ..
- tinymce
- static
  - js
    - tiny_mce

In settings.py
INSTALLED_APPS = (
   ...
    'tinymce',
)

PROJECT_DIR = os.path.dirname(__file__)
MEDIA_ROOT = os.path.join(PROJECT_DIR, 'static')
MEDIA_URL = '/static/'

Thanks in advance,
Sonal.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to