Oops… Trac detected an internal error: IntegrityError: (1062, "Duplicate entry 'd494f109c01a52a-0-query_href' for key 1") There was an internal error in Trac. It is recommended that you inform your local Trac administrator and give him all the information he needs to reproduce the issue. To that end, you could ==== How to Reproduce ==== While doing a GET operation on `/report/10`, Trac issued an internal error. ''(please provide additional details here)'' Request parameters: {{{ {'P': u'datepicker', 'id': u'10'} }}} ==== System Information ==== || '''Trac''' || `0.11.1` || || '''Python''' || `2.4.3 (#1, May 24 2008, 13:47:28) ` [[br]] `[GCC 4.1.2 20070626 (Red Hat 4.1.2-14)]` || || '''setuptools''' || `0.6c5` || || '''MySQL''' || `server: "5.0.45", client: "5.0.45", thread-safe: 0` || || '''MySQLdb''' || `1.2.2` || || '''Genshi''' || `0.5.1` || || '''mod_python''' || `3.2.8` || || '''Subversion''' || `1.4.2 (r22196)` || ==== Python Traceback ==== {{{ Traceback (most recent call last): File "/usr/lib/python2.4/site- packages/Trac-0.11.1-py2.4.egg/trac/web/main.py", line 423, in _dispatch_request dispatcher.dispatch(req) File "/usr/lib/python2.4/ site-packages/Trac-0.11.1-py2.4.egg/trac/web/main.py", line 222, in dispatch req.session.save() File "/usr/lib/python2.4/site-packages/ Trac-0.11.1-py2.4.egg/trac/web/session.py", line 102, in save "VALUES (%s,%s,%s,%s)", attrs) File "/usr/lib/python2.4/site-packages/ Trac-0.11.1-py2.4.egg/trac/db/util.py", line 57, in executemany return self.cursor.executemany(sql_escape_percent(sql), args) File "build/ bdist.linux-i686/egg/MySQLdb/cursors.py", line 218, in executemany File "build/bdist.linux-i686/egg/MySQLdb/cursors.py", line 312, in _query File "build/bdist.linux-i686/egg/MySQLdb/cursors.py", line 276, in _do_query IntegrityError: (1062, "Duplicate entry 'd494f109c01a52a-0-query_href' for key 1") }}} a ticket at this site. The action that triggered the error was: GET: /report/10 TracGuide — The Trac User and Administration Guide
I am recieving an unsecure its on page error from an HTTPS page that looks fine with all hyperlinks. I narrowed it down to the jquery clone method, as it is cloning a hyperlink, but the href is https on their. Not sure why this would cause this but it is. Any fix for this?
I am returning JSON from the Form Plugin using a file upload and it returns a file with the value in it for download and does not his the success callback. Any reason for this? It only does this when a file is in the file upload.
I am loading a .aspx page into a div that has three user controls on it that contains javascript and a javascript include. This is being stripped out when injected into the page. Any reason why?
I am trying to do a fade out and in on mouseover and mouse out. Below I have a div that contains these functions and fades out or in an image on toggle. The problem is after mouse over, it repeats over and over without stopping. I also notice the opacity on mouseout is always 1 and never 0. Is there any reason why the mouseover keeps repeating itself? <div id="ctl00_cphMainWell_dlPageSize2_ctl00_ProductView_pOuter" class="zoom" onmouseover="setHoverState('ctl00_cphMainWell_dlPageSize2_ctl00_ProductView_pOuter');" onmouseout="setHoverState('ctl00_cphMainWell_dlPageSize2_ctl00_ProductView_pOuter');" style="background-image:url(common/images/bg/bucket.jpg);background- repeat:repeat-x;"> <img id="ctl00_cphMainWell_dlPageSize2_ctl00_ProductView_iProductZoom" class="zoomImage" src="http://localhost:5640/HatClub/common/images/ products/18-64-ImageZoom.png" style="vertical-align:top;border-width: 0px;visibility:visible;" /> <div id="ctl00_cphMainWell_dlPageSize2_ctl00_ProductView_pInner" class="innerPanel" style="visibility:hidden;"> </div> function setHoverState(container) { var zoomImage = $('#' + container + ' > .zoomImage'); if(zoomImage.length > 0) { var opacity = $(zoomImage.get(0)).css('opacity'); $('#' + container + ' > .zoomImage').fadeToggle('fast'); } } jQuery.fn.fadeToggle = function(speed, easing, callback) { return this.animate({opacity: 'toggle'}, speed, easing, callback); };
I am having a problem with the .load and a asp.net postback. I load a div with a page called myquickcart.aspx on the page and it works great. But when I click a button on the parent page that causes the postback it goes directly to myquickcart.aspx intead of posting back. My server isnt being hit at all so I have no clue why its posting back to myquickcart.aspx and not the parent page? Any ideas?