On Apr 25, 7:33 pm, zayatzz <alan.kesselm...@gmail.com> wrote:
> Hello
>
> Im trying to give enough information in first post so you could help
> me if you can or want to. For that reason this post might turn out bit
> long.
>
> I found tinymce pluggable for django -http://code.google.com/p/django-tinymce/
> - and ive been trying to implement it.
>
> following instructions i entered such things into my settings.py:
>
> TINYMCE_JS_URL = MEDIA_URL + '/tinyMCE/jscripts/tiny_mce/tiny_mce.js'
> TINYMCE_JS_ROOT = MEDIA_ROOT + '/tinyMCE/jscripts/tiny_mce/'
> TINYMCE_DEFAULT_CONFIG = {
>         'plugins': "table,spellchecker,paste,searchreplace",
>         'theme': "simple",
>         'cleanup_on_startup': True,
>         'custom_undo_redo_levels': 10,
>         }
> TINYMCE_SPELLCHECKER = False
>
> Conf for MEDIA_URL and MEDIA_ROOT are:
> = '/home/zay2/Django/djangomedia/'
>
> The script itself is in fact located in folder
>
> /home/zay2/Django/djangomedia/tinyMCE/jscripts/tiny_mce
>
> So hopefully everything is correct. I also made required additions to
> installed apps and my urlconf.
>
> Now i have this line in my template :
>
> <script type="text/javascript" src="{{ MEDIA_URL }}/tinyMCE/jscripts/
> tiny_mce/tiny_mce.js"></script>
>
> When i load the page the JS gets 404 - i can see it with firebug
> (www.getfirebug.com). Resposne to the script request is:
>
>       Using the URLconf defined in <code>mce.urls</code>,
>       Django tried these URL patterns, in this order:
>
> ^   ^$
> ^   ^lang/(?P&lt;lang_id&gt;\d+)$
> ^   ^tinymce/
> ^admin/(.*)
>
> The current URL, <code>tinyMCE/jscripts/tiny_mce/tiny_mce.js</code>,
> didn't match any of these
> (i cut out the markup)
>
> Can anyone tell me where is the problem? Is it my settings or is this
> django lightweight test-webserver unable to use those paths to
> javascript and i have to install apache instead?
>
> Alan

There are a few things wrong here. Firstly, setting your MEDIA_URL to
the same as your MEDIA_ROOT is almost certainly the wrong thing to do.
MEDIA_URL is, as the name says, a URL - ie the path that your web
server serves your media at. This is unlikely to have the word 'home'
in it anyway, or at least it shouldn't.

Secondly, you don't seem to actually have any media paths set up in
your urls.py. If you're using the built-in development server, you
need to tell it to serve assets, as explained in the documentation
here:
http://docs.djangoproject.com/en/dev/howto/static-files/

Thirdly, urls.py is case-sensitive - so 'tinymce' and 'tinyMCE' are
not the same. Choose one and stick to it.
--
DR.
--~--~---------~--~----~------------~-------~--~----~
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