> Any
> idea what could be causing that?
>
last time i had exact same problem. existing button but filebrowser
not appearing. it was thist one:
<script type="text/javascript" src="tinymce/filebrowser/"></script>
if you check the url you'd get an clear error about reverse url fault.
actually i had to fix tinymce python source:
fb_url = "%s://%s%s" % (request.is_secure() and 'https' or 'http',
#request.get_host(), urlresolvers.reverse('filebrowser-index'))
request.get_host(), urlresolvers.reverse('fb_browse'))
since filebrouser url.py has no "filebrowser" now, it's 'fb_browse'.
well that's what i had to do last time.
--
You received this message because you are subscribed to the Google Groups
"Django 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/django-users?hl=en.