{5} Assigned, Active Tickets by Owner (Full Description) (11 matches)

List tickets assigned, group by ticket owner. This report demonstrates the use of full-row display.

Ticket Summary Component Milestone Type Created
Description
#13831 Logging into Admin throws ColdFusion error General defect 05/26/10

On both ColdFusion? 7 and 9, I have encountered errors when logging into the admin. The details are outlined in my original forum post.

http://www.getmura.com/forum/messages.cfm?threadid=A5AC7781-CAB0-40C4-AF11EFBEF8DAA464

Please let me know if you need additional details.

I have left the priority at "blocker" due to that clients encounter this and don't know what to do. It's a blocker to them, but "minor" to me because I know how to get around it.

It leaves for a bad experience when logging in doesn't work right, so I think it is important to fix (even if it is "minor" to me).

Thanks, ~Angela


#13842 Portal Markup is not semantic HTML General defect 06/06/10

Rather than using DL and DT for dsp_portal.cfm it should use h1-6 tags and p/div tags

Semantically you have 2 DT tags (link and release date) with multipe DD tags


#13911 Initial Install Causes Error General defect 06/30/10

With a fresh Mura install (v5.2.2442), with the Merced theme, an error of "java.lang.Integer cannot be cast to java.lang.String". After a bit of tracking I found the offending line to be in the home_static.cfm template file:

<div id="container" class="#$.createCSSid($.content('menuTitle'))#">

When the MuraScope? object is called, it apparently invokes onMissingMethod. In this case a method with arguments. This seems to be the killer, because when I remove this line, all is well.

CF8.01 Mura 5.2.2442 JDK 1.6.0_11


#13964 Data Collection Form Fails on Submit General defect 07/15/10

Following the Mura documentation to create a data collection form, everything works until the form is submitted. On submission, it generates a dump. The message in the first section of the dump indicates: key [Last Name] doesn't exist in struct


#13979 onAfterCategoryDelete and similar delete callbacks are not called General defect 07/27/10

If you define onAfterCategorySave in the local eventHandler.cfc, it works fine. onAfterCategoryDelete however, doesn't work.

I've traced the issue to categoryManager.cfc line 332. When it crates the pluginEvent, it passes in arguments, but there is no arguments.data as in line 291. What ends up happening is that in event.cfc, on line 52, it checks if there is a value of siteid, but there isn't, so it doesn't run loadSiteRelatedObjects and doesn't attach a local eventHandler to the event.


#14003 mura doesn't respect indexfileinurls setting when siteidinurls is true General defect 08/18/10

Patch attached.


#14004 mura doesn't respect indexfileinurls setting when siteidinurls is true General defect 08/18/10

Here is the patch:

### Eclipse Workspace Patch 1.0 #P russmura Index: www/requirements/mura/content/contentRenderer.cfc =================================================================== --- www/requirements/mura/content/contentRenderer.cfc (revision 235) +++ www/requirements/mura/content/contentRenderer.cfc (working copy) @@ -638,7 +638,11 @@

<cfelse>

<cfif arguments.filename neq >

<cfif application.configBean.getStub() eq >

  • <cfreturn "/" & arguments.siteID & "/index.cfm" & "/" & arguments.filename & "/"/>

+ <cfif application.configBean.getIndexFileInURLS()> + <cfreturn "/" & arguments.siteID & "/index.cfm" & "/" & arguments.filename & "/"/> + <cfelse> + <cfreturn "/" & arguments.siteID & "/index.cfm" & "/" & arguments.filename & "/"/> + </cfif>

<cfelse>

<cfreturn application.configBean.getStub() & "/" & arguments.siteID & "/" & arguments.filename & "/" />

</cfif>


#14140 Mura Update Broke Site - Some Details General defect 09/15/10

Hello,

Looking at the recent security report, we decided to follow the directions and move from 5.2.2399 to the latest build. We followed all the directions as usual.

Once we did a reload, our site broke. One of the developers looked at the generated output and put together this analysis below.

We are unable to upgrade (had to revert the code base) until this is resolved or clarified.

I've taken a closer look at the code differences, and it appears there is/was a pretty major issue with the part of the Mura system that builds the menu HTML as the page is loaded.

It's possible that if the Mura software was updated, the part of the Mura backend that assembles the menu for display on the site was altered in such a way that it would break the functionality. Especially if your developers customized the core Mura code in such a way that any update would wipe it out.

In the version of the site that worked properly, parent menu items with a drop down menu of corresponding child items were specified like this:

<li *class=" submenu"* id="navWhyEcivis"><a href="/why-ecivis-grants-management-software/" *class="ie-hide"*>Why eCivis?</a>

In the version that broke, however, the class attribute that creates the proper behavior was missing:

<li id="navWhyEcivis"><a href="/why-ecivis-grants-management-software/">Why eCivis?</a>

The class attribute corresponds to information in the style sheet that instructs the browser how to display the information. Clearly this is the culprit.

(Also missing from the broken version was some additional code that compensated for problems in IE6, including, I think, that /class/ on the a tag.)

Further the coding of the child menu items that appear in the drop down panels were given additional class attributes in the version that broke.

Here's how they appear in the properly working version:

<ul> <li *class=" "* id="navASolutionForArraGrantsReporting"><a href="/why-ecivis-grants-management-software/a-solution-for-arra-grants-and-reporting/">A Solution for ARRA Grants &amp; Reporting</a> </li> <li *class=" "* id="navASolutionForCbos"><a href="/why-ecivis-grants-management-software/a-solution-for-cbos/">A Solution for CBOs</a> </li> </ul>

Compare this to the broken version:

<ul> <li *class="first"* id="navASolutionForArraGrantsReporting"><a href="/why-ecivis-grants-management-software/a-solution-for-arra-grants-and-reporting/">A Solution for ARRA Grants &amp; Reporting</a></li> <li *class="last"* id="navASolutionForCbos"><a href="/why-ecivis-grants-management-software/a-solution-for-cbos/">A Solution for CBOs</a></li> </ul>

This latter part may not have been substantial with regard to the problem we experienced today, but does indicate a change from the way Mura builds the menus in your site.

Is there someone at your original development shop, or at Mura, who can clear up this discrepancy?


#14162 Email Broadcaster stripping last 2 char General defect 09/18/10

In html email, when it ends in a tag, when sending, sometimes the last tag in the email gets broken e.g. </p> becomes </

It would mess up the footer because of that.

Core Version 5.2.2202 Site Version 5.2.2202


#14230 Missing include in /admin/Application.cfc General defect 09/26/10

On line 228 of the admin Application.cfc there's a cfinclude referencing ../config/appcfc/internals/onSessionEnd_include.cfm which doesn't exist.

This produces hundreds of missing template logs


#13848 Can view the contents of any file on the server General defect 06/07/10

Using a specially crafted URL a user can view the contents of any file on the server, not just those in the webroot.

Naturally, I do not want to submit the URL here as that would be bad. Please contact me via email via savacms at damaged dash cyco dot com and I'll provide you with the information.

Thanks, Kevin


Note: See TracReports for help on using and creating reports.