Oh, Fixed me, 404 (File not found!) I was in situation like you, before. Some instruction or recipe assume you have basic understanding of django.
There are a lot of django recipe assume that you put js or css under the same place of admin media. In this case, you don't need to configure media url by your self. But for running dev server only. For example, put js under /django/contrib/admin/media/js/some.js. Then /media/js/some.js will availale for you. For now, I'm working with java script and first thing I have to do is making it available first and do things I want. Anyway, when you run your web using apache, you will need to use alias to provide admin media. For my solution, I use something like this, *ADMIN_MEDIA_PREFIX = ' http://eestud.kku.ac.th/~u4316562/media/openfrog/media/'* For this setting, I don't need to setup my admin media and save bandwidth for my share host account. For another media, I use, * DIR = os.path.dirname(__file__)* *MEDIA_ROOT = os.path.join(DIR, 'static') MEDIA_URL = 'http://feedfrog.net/static/' httpd.conf Alias /static /home/meledictas/webapps/django/meledictas/static* I use this for all of my django site. Have a nice day. Chatchai. 2008/7/7 LRP <[EMAIL PROTECTED]>: > > Many thanks for the help, Chatchai. > > > Can you start web server and > typehttp://localhost/usr/share/tinymce/www/tiny_mce.js > > and see if it return something rather than 400. > > I get 404. > > Here's url config: > > urlpatterns = patterns('', > # Example: > # (r'^cms/', include('cms.foo.urls')), > > # Uncomment this for admin: > (r'^admin/', include('django.contrib.admin.urls')), > (r'', include('django.contrib.flatpages.urls')), > ) > > In addition to Bennett and djangoprogject docs, the approach you > suggest is yet a third solution to the problem of applying tiny_mce to > django admin... I'll give it a try tomorrow when my mind is a more > rested. > > But meanwhile, I'm curious... > > I've followed the instructions in both Bennett' and the djangoproject > docs scrupulously; double-checking my work in both cases. And in both > cases I've failed. It's likely, I'm sure, that my failure is due to a > misreading, misunderstanding, or mistyping on my part. I'm wondering, > however, has anyone else achieved success based on either Bennett's or > djangoproject doc's instructions? > > If so, then I'll have to carefully review what I've done. > > If not, then there's a chance that either or both of the sources are > either wrong, or are missing something, and should be corrected. > > I do recall that I got it working quite easily once in Karrigell. > > Thanks again, > > Lloyd > > > > > > > --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---