FIXED! Found the problem from this post: http://groups.google.com/group/django-users/browse_thread/thread/7ff96003bed5ca5c/6950d58ae914d1d4?lnk=gst&q=apache+javascript#6950d58ae914d1d4
Summary: In my apache config, I was using <LocationMatch "/(admin|css|js)">, which matches more than anticipated because it wasn't anchored to the beginning of the string. Changed it to <LocationMatch "^/(admin|css| js)"> and it all works fine now. --Andy On Oct 30, 12:41 am, andylytical <alof...@gmail.com> wrote: > Anyone have any ideas why this is broken or thoughts on where to > troubleshoot further? > > I tend to assume something this basic has to user error, but I can't > find any reason why the calendar and time javascript selection buttons > are missing from my admin pages for the datetime fields. I've > verified that: > - /media/ is linked properly to django/contrib/admin/media > - calendar.js file exists on the system with world-readable > permissions > - calendar.js (and all other js files) are successfully loaded by the > browser > > The only error I get when loading the page is > "File does not exist: <fullpathto>/htdocs/admin/ " > which is generated by: > <script src="../../../jsi18n/" type="text/javascript"> > for which it appears a ticket is open. I've set USE_I18N = False, but > that didn't help. > > Running on > Django SVN revision 11683 (was running official release 1.1.1, but > tried SVN to see if it fixed the problem). > Ubuntu 8.04.3 LTS > Python 2.6 > Apache 2.2 with mod_python > Testing on Firefox 3.5 on Windows 7, FF3.5 on WinXP, Chrome on WinXP > > Any ideas would be greatly appreciated. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---