Trying to add to Lifecycles

Trying to add the assigned and evaluation lifecycles.

I am adding the following to SiteConfig and when I do I get the following error

[Thu Aug 1 17:25:22 2013] [debug]: Autohandler called ExternalAuth. Response: (0, ExternalAuthPriority not defined, please check your configuration file.) (/usr/share/request-tracker/local/plugins/RT-Authen-ExternalAuth/html/Elements/DoAuth:16)

And external:auth no longer works

I have added the section after the External setting section and before the external setting with no difference

Set(%Lifecycles,
default => {
initial => [ ‘new’ ],
active => [ ‘open’, ‘stalled’, ‘assigned’, ‘evaluation’ ],
inactive => [ ‘resolved’, ‘rejected’, ‘deleted’ ],

    defaults => {
        on_create => 'new',
        on_merge  => 'resolved',
        on_merge  => 'resolved',
        approved  => 'open',
        denied    => 'rejected',
        reminder_on_open     => 'open',
        reminder_on_resolve  => 'resolved',
    },

    transitions => {
        ''       => [qw(new open resolved)],

        # from   => [ to list ],
        new      => [qw(open stalled resolved rejected deleted)],
        open     => [qw(new stalled resolved rejected deleted)],
        stalled  => [qw(new open rejected resolved deleted)],
        resolved => [qw(new open stalled rejected deleted)],
        rejected => [qw(new open stalled resolved deleted)],
        deleted  => [qw(new open stalled rejected resolved)],
    },
    rights => {
        '* -> deleted'  => 'DeleteTicket',
        '* -> *'        => 'ModifyTicket',
    },
    actions => [
        'new -> open'      => {
            label  => 'Open It', # loc
            update => 'Respond',
        },
        'new -> resolved'  => {
            label  => 'Resolve', # loc
            update => 'Comment',
        },
        'new -> rejected'  => {
            label  => 'Reject', # loc
            update => 'Respond',
        },
        'new -> deleted'   => {
            label  => 'Delete', # loc
        },

        'open -> stalled'  => {
            label  => 'Stall', # loc
            update => 'Comment',
        },
        'open -> resolved' => {
            label  => 'Resolve', # loc
            update => 'Comment',
        },
        'open -> rejected' => {
            label  => 'Reject', # loc
            update => 'Respond',
        },

        'stalled -> open'  => {
            label  => 'Open It', # loc
        },
        'resolved -> open' => {
            label  => 'Re-open', # loc
            update => 'Comment',
        },
        'rejected -> open' => {
            label  => 'Re-open', # loc
            update => 'Comment',
        },
        'deleted -> open'  => {
            label  => 'Undelete', # loc
        },
    ],
},

);

Bryon Baker
Network Operations Manager
Copesan - Specialists in Pest Solutions
800-267-3726 * 262-783-6261 ext. 2296
bbaker@copesan.commailto:cstephan@copesan.com
www.copesan.comhttp://www.copesan.com/
“Servicing North America with Local Care”

Update

I even took the example from

http://bestpractical.com/docs/rt/4.0.13/customizing/lifecycles.html

And I get the same response.

Thanks
Bryon Baker
Network Operations Manager
Copesan - Specialists in Pest Solutions
800-267-3726 * 262-783-6261 ext. 2296
bbaker@copesan.commailto:cstephan@copesan.com
www.copesan.comhttp://www.copesan.com/
"Servicing North America with Local Care"From: rt-users-bounces@lists.bestpractical.com [mailto:rt-users-bounces@lists.bestpractical.com] On Behalf Of Bryon Baker
Sent: Thursday, August 01, 2013 12:35 PM
To: RT Users (rt-users@lists.bestpractical.com)
Cc: Kenneth Crocker (crocker.consult@gmail.com)
Subject: [rt-users] Trying to add to Lifecycles.

Trying to add the assigned and evaluation lifecycles.

I am adding the following to SiteConfig and when I do I get the following error

[Thu Aug 1 17:25:22 2013] [debug]: Autohandler called ExternalAuth. Response: (0, ExternalAuthPriority not defined, please check your configuration file.) (/usr/share/request-tracker/local/plugins/RT-Authen-ExternalAuth/html/Elements/DoAuth:16)

And external:auth no longer works

I have added the section after the External setting section and before the external setting with no difference

Set(%Lifecycles,
default => {
initial => [ ‘new’ ],
active => [ ‘open’, ‘stalled’, ‘assigned’, ‘evaluation’ ],
inactive => [ ‘resolved’, ‘rejected’, ‘deleted’ ],

    defaults => {
        on_create => 'new',
        on_merge  => 'resolved',
        on_merge  => 'resolved',
        approved  => 'open',
        denied    => 'rejected',
        reminder_on_open     => 'open',
        reminder_on_resolve  => 'resolved',
    },

    transitions => {
        ''       => [qw(new open resolved)],

        # from   => [ to list ],
        new      => [qw(open stalled resolved rejected deleted)],
        open     => [qw(new stalled resolved rejected deleted)],
        stalled  => [qw(new open rejected resolved deleted)],
        resolved => [qw(new open stalled rejected deleted)],
        rejected => [qw(new open stalled resolved deleted)],
        deleted  => [qw(new open stalled rejected resolved)],
    },
    rights => {
        '* -> deleted'  => 'DeleteTicket',
        '* -> *'        => 'ModifyTicket',
    },
    actions => [
        'new -> open'      => {
            label  => 'Open It', # loc
            update => 'Respond',
        },
        'new -> resolved'  => {
            label  => 'Resolve', # loc
            update => 'Comment',
        },
        'new -> rejected'  => {
            label  => 'Reject', # loc
            update => 'Respond',
        },
        'new -> deleted'   => {
            label  => 'Delete', # loc
        },

        'open -> stalled'  => {
            label  => 'Stall', # loc
            update => 'Comment',
        },
        'open -> resolved' => {
            label  => 'Resolve', # loc
            update => 'Comment',
        },
        'open -> rejected' => {
            label  => 'Reject', # loc
            update => 'Respond',
        },

        'stalled -> open'  => {
            label  => 'Open It', # loc
        },
        'resolved -> open' => {
            label  => 'Re-open', # loc
            update => 'Comment',
        },
        'rejected -> open' => {
            label  => 'Re-open', # loc
            update => 'Comment',
        },
        'deleted -> open'  => {
            label  => 'Undelete', # loc
        },
    ],
},

);

Bryon Baker
Network Operations Manager
Copesan - Specialists in Pest Solutions
800-267-3726 * 262-783-6261 ext. 2296
bbaker@copesan.commailto:cstephan@copesan.com
www.copesan.comhttp://www.copesan.com/
“Servicing North America with Local Care”

Hello All

Has anyone installed the RT Extension on RT 4.13? It install just fine, registered the component in RT_Config.pm. However, even after all of this, there doesn’t seem to be anything in the RT GUI with the option for “Summary By User”.

Does anyone know how to use this or where to find the Summery By User option in the GUI??

THank you!

Rick

Has anyone installed the RT Extension on RT 4.13?

Do you mean the Summary By User extension on RT 4.0.13?

registered the component in RT_Config.pm.

Do you mean RT_SiteConfig.pm?

However, even after all of this,
there doesn’t seem to be anything in the RT GUI with the option for “Summary
By User”.

What operating system? How are you installing the extension? Relevant
section (and exact filename for good measure) of RT site configuration
file?

I think I figured it out added this to SiteConfig and it looks like it works.

Set(%Lifecycles,
default => {
initial => [ ‘new’ ],
active => [ ‘open’, ‘assigned’ , ‘evaluation’, ‘stalled’ ],
inactive => [ ‘resolved’, ‘rejected’, ‘deleted’ ],

    defaults => {
        on_create => 'new',
        on_merge  => 'resolved',
        approved  => 'open',
        denied    => 'rejected',
        reminder_on_open     => 'open',
        reminder_on_resolve  => 'resolved',
    },
 },

);

Assigned and evaluation are showing up in the quick search and ExternalAuth still works.

Thanks
Bryon Baker
Network Operations Manager
Copesan - Specialists in Pest Solutions
800-267-3726 * 262-783-6261 ext. 2296
bbaker@copesan.commailto:cstephan@copesan.com
www.copesan.comhttp://www.copesan.com/
"Servicing North America with Local Care"From: rt-users-bounces@lists.bestpractical.com [mailto:rt-users-bounces@lists.bestpractical.com] On Behalf Of Bryon Baker
Sent: Thursday, August 01, 2013 12:56 PM
To: RT Users (rt-users@lists.bestpractical.com)
Cc: Kenneth Crocker (crocker.consult@gmail.com)
Subject: Re: [rt-users] Trying to add to Lifecycles.

Update

I even took the example from

http://bestpractical.com/docs/rt/4.0.13/customizing/lifecycles.html

And I get the same response.

Thanks
Bryon Baker
Network Operations Manager
Copesan - Specialists in Pest Solutions
800-267-3726 * 262-783-6261 ext. 2296
bbaker@copesan.commailto:cstephan@copesan.com
www.copesan.comhttp://www.copesan.com/
“Servicing North America with Local Care”

From: rt-users-bounces@lists.bestpractical.commailto:rt-users-bounces@lists.bestpractical.com [mailto:rt-users-bounces@lists.bestpractical.com] On Behalf Of Bryon Baker
Sent: Thursday, August 01, 2013 12:35 PM
To: RT Users (rt-users@lists.bestpractical.commailto:rt-users@lists.bestpractical.com)
Cc: Kenneth Crocker (crocker.consult@gmail.commailto:crocker.consult@gmail.com)
Subject: [rt-users] Trying to add to Lifecycles.

Trying to add the assigned and evaluation lifecycles.

I am adding the following to SiteConfig and when I do I get the following error

[Thu Aug 1 17:25:22 2013] [debug]: Autohandler called ExternalAuth. Response: (0, ExternalAuthPriority not defined, please check your configuration file.) (/usr/share/request-tracker/local/plugins/RT-Authen-ExternalAuth/html/Elements/DoAuth:16)

And external:auth no longer works

I have added the section after the External setting section and before the external setting with no difference

Set(%Lifecycles,
default => {
initial => [ ‘new’ ],
active => [ ‘open’, ‘stalled’, ‘assigned’, ‘evaluation’ ],
inactive => [ ‘resolved’, ‘rejected’, ‘deleted’ ],

    defaults => {
        on_create => 'new',
        on_merge  => 'resolved',
        on_merge  => 'resolved',
        approved  => 'open',
        denied    => 'rejected',
        reminder_on_open     => 'open',
        reminder_on_resolve  => 'resolved',
    },

    transitions => {
        ''       => [qw(new open resolved)],

        # from   => [ to list ],
        new      => [qw(open stalled resolved rejected deleted)],
        open     => [qw(new stalled resolved rejected deleted)],
        stalled  => [qw(new open rejected resolved deleted)],
        resolved => [qw(new open stalled rejected deleted)],
        rejected => [qw(new open stalled resolved deleted)],
        deleted  => [qw(new open stalled rejected resolved)],
    },
    rights => {
        '* -> deleted'  => 'DeleteTicket',
        '* -> *'        => 'ModifyTicket',
    },
    actions => [
        'new -> open'      => {
            label  => 'Open It', # loc
            update => 'Respond',
        },
        'new -> resolved'  => {
            label  => 'Resolve', # loc
            update => 'Comment',
        },
        'new -> rejected'  => {
            label  => 'Reject', # loc
            update => 'Respond',
        },
        'new -> deleted'   => {
            label  => 'Delete', # loc
        },

        'open -> stalled'  => {
            label  => 'Stall', # loc
            update => 'Comment',
        },
        'open -> resolved' => {
            label  => 'Resolve', # loc
            update => 'Comment',
        },
        'open -> rejected' => {
            label  => 'Reject', # loc
            update => 'Respond',
        },

        'stalled -> open'  => {
            label  => 'Open It', # loc
        },
        'resolved -> open' => {
            label  => 'Re-open', # loc
            update => 'Comment',
        },
        'rejected -> open' => {
            label  => 'Re-open', # loc
            update => 'Comment',
        },
        'deleted -> open'  => {
            label  => 'Undelete', # loc
        },
    ],
},

);

Bryon Baker
Network Operations Manager
Copesan - Specialists in Pest Solutions
800-267-3726 * 262-783-6261 ext. 2296
bbaker@copesan.commailto:cstephan@copesan.com
www.copesan.comhttp://www.copesan.com/
“Servicing North America with Local Care”

Does anyone know how to use this or where to find the Summery By User option in the GUI??

Click ‘Edit’ in the upper right hand corner of your RT at a Glance
page, choose it from the list to add it to the page.

Or edit a dashboard and add it there.

-kevin

Thank you Kevin.

So now that I added it via Edit, I’m getting “internal error” and it doesn’t show up.

The rt.log is empty. However, the /var/log/messages has this error message:

Aug 2 09:01:32 rttrack RT: could not find component for path ‘SummaryByUser’#012#012Stack:#012 [/rtdata/share/html/Elements/MyRT:95]#012 [/rtdata/share/html/index.html:78]#012 [/rtdata/sbin/…/lib/RT/Interface/Web.pm:635]#012 [/rtdata/sbin/…/lib/RT/Interface/Web.pm:335]#012 [/rtdata/share/html/autohandler:53] (/rtdata/sbin/…/lib/RT/Interface/Web/Handler.pm:208)
Any ideas on how i would troubleshoot this? I’m on RT 4.013. Perhaps the extension is just not compatible?

Thank you!

-ROn Aug 01, 2013, at 04:29 PM, Kevin Falcone falcone@bestpractical.com wrote:

On Thu, Aug 01, 2013 at 06:28:41PM +0000, window camera wrote:

Does anyone know how to use this or where to find the Summery By User option in the GUI??

Click ‘Edit’ in the upper right hand corner of your RT at a Glance
page, choose it from the list to add it to the page.

Or edit a dashboard and add it there.

-kevin

So now that I added it via Edit, I’m getting “internal error” and it doesn’t show up.

You said you registered the component in HomepageComponents, did you
also enable it as a plugin?

The rt.log is empty. However, the /var/log/messages has this error message:

Aug 2 09:01:32 rttrack RT: could not find component for path ‘SummaryByUser’#012#012Stack:#012 [/rtdata/share/html/Elements/MyRT:95]#012 [/rtdata/share/html/index.html:78]#012 [/rtdata/sbin/…/lib/RT/Interface/Web.pm:635]#012 [/rtdata/sbin/…/lib/RT/Interface/Web.pm:335]#012 [/rtdata/share/html/autohandler:53] (/rtdata/sbin/…/lib/RT/Interface/Web/Handler.pm:208)
Any ideas on how i would troubleshoot this? I’m on RT 4.013. Perhaps the extension is just not compatible?

You also cut off part of this that would have shown the search paths
for where it was looking for the file.

-kevin

<<You said you registered the component in HomepageComponents, did you
also enable it as a plugin?>>

Yes, I did. Homepagecomponents setting is in RT_Config.pm:

Set(
$HomepageComponents,
[
qw(QuickCreate Quicksearch MyAdminQueues MySupportQueues MyReminders RefreshHomepage Dashboards SavedSearches SummaryByUser) # loc_qw
]
);

=back

And the plugin setting is in RT_SiteConfig.pm.

Is there anyway that you know of that I can increase the logging? Or perhaps there is another log file somewhere? Also, perhaps it’s just not compatible with RT 4.13. Do you know how to go about uninstalling it?

<>

Unfortunately, that’s how it shows up in the log file /var/log/messages. The RT engine cuts them off in the log file.

Thank you for looking into this!

-Rick

On Aug 02, 2013, at 10:56 AM, Kevin Falcone falcone@bestpractical.com wrote:

On Fri, Aug 02, 2013 at 01:45:03PM +0000, window camera wrote:

So now that I added it via Edit, I’m getting “internal error” and it doesn’t show up.

You said you registered the component in HomepageComponents, did you
also enable it as a plugin?

The rt.log is empty. However, the /var/log/messages has this error message:
Aug 2 09:01:32 rttrack RT: could not find component for path ‘SummaryByUser’#012#012Stack:#012 [/rtdata/share/html/Elements/MyRT:95]#012 [/rtdata/share/html/index.html:78]#012 [/rtdata/sbin/…/lib/RT/Interface/Web.pm:635]#012 [/rtdata/sbin/…/lib/RT/Interface/Web.pm:335]#012 [/rtdata/share/html/autohandler:53] (/rtdata/sbin/…/lib/RT/Interface/Web/Handler.pm:208)
Any ideas on how i would troubleshoot this? I’m on RT 4.013. Perhaps the extension is just not compatible?

You also cut off part of this that would have shown the search paths
for where it was looking for the file.

-kevin

<<You said you registered the component in HomepageComponents, did you
also enable it as a plugin?>>

Yes, I did. Homepagecomponents setting is in RT_Config.pm:

This is wrong. Always make your changes in RT_SiteConfig.pm, never in
RT_Config.pm or they’ll be lost when you upgrade.

Read lines 9 through 17 of RT_Config.pm:

############################# WARNING #############################

NEVER EDIT RT_Config.pm !

Instead, copy any sections you want to change to

RT_SiteConfig.pm and edit them there. Otherwise,

your changes will be lost when you upgrade RT.

############################# WARNING #############################

Set(
$HomepageComponents,
[
qw(QuickCreate Quicksearch MyAdminQueues MySupportQueues MyReminders RefreshHomepage Dashboards SavedSearches SummaryByUser) # loc_qw
]
);

That’s not actually correct.
This plugin provides two components. OwnerSummmary and RequestorSummary.
Go delete SummaryByUser from your RT at a Glance page, fix HomepageComponents to contain valid components and then add them to the page.

-kevin

<<This is wrong. Always make your changes in RT_SiteConfig.pm, never in
RT_Config.pm or they’ll be lost when you upgrade.>>

Yes, I know it’s wrong to do it there. Had no choice though. There was absolutely no information or documenation on how to setup “HomepageCompoents” in RT_SiteConfig.pm. I searched far and wide for it.

Do you happen to know how?

I’ll tell you how I did it though (in RT_SiteConfig.pm):

SET ( HomepageComponents, qw(‘SummaryByUser’));

and I also added the SummaryByUser in the @plugins.

Howerver, got the same exact error. No dice. Just error’ed out again. I’m just a little baffled why these extensions don’t come with a README that gives directions on how to set it up. Anyway I digress.

<<Go delete SummaryByUser from your RT at a Glance page, fix HomepageComponents to contain valid components and then add them to the page.>>

Yes, thanks. I did do that. Same error. See above configuration I did in RT_SiteConfig.pm.

Now when I add “OwnerSummary” as you said, I get error "Error while loading …can’t locate RT/Extensions/OwnerSummary.pm.

Any other things you think I should check? Or perhaps now we’re at the point where this extension is perhaps not compatible with RT 4.13?

Thank you

RickOn Aug 02, 2013, at 11:49 AM, Kevin Falcone falcone@bestpractical.com wrote:

On Fri, Aug 02, 2013 at 03:33:48PM +0000, window camera wrote:

<<You said you registered the component in HomepageComponents, did you
also enable it as a plugin?>>
Yes, I did. Homepagecomponents setting is in RT_Config.pm:

This is wrong. Always make your changes in RT_SiteConfig.pm, never in
RT_Config.pm or they’ll be lost when you upgrade.

Read lines 9 through 17 of RT_Config.pm:

############################# WARNING #############################

NEVER EDIT RT_Config.pm !

Instead, copy any sections you want to change to

RT_SiteConfig.pm and edit them there. Otherwise,

your changes will be lost when you upgrade RT.

############################# WARNING #############################

Set(
$HomepageComponents,
[
qw(QuickCreate Quicksearch MyAdminQueues MySupportQueues MyReminders RefreshHomepage Dashboards SavedSearches SummaryByUser) # loc_qw
]
);

That’s not actually correct.
This plugin provides two components. OwnerSummmary and RequestorSummary.
Go delete SummaryByUser from your RT at a Glance page, fix HomepageComponents to contain valid components and then add them to the page.

-kevin

<<This is wrong. Always make your changes in RT_SiteConfig.pm, never in
RT_Config.pm or they’ll be lost when you upgrade.>>

Yes, I know it’s wrong to do it there. Had no choice though.
There was absolutely no information or documenation on how to
setup “HomepageCompoents” in RT_SiteConfig.pm. I searched far and
wide for it.

Um. Copy it from RT_Config.pm to RT_SiteConfig.pm and modify it
there.o

The documentation I copied that you deleted said what to do.

############################# WARNING #############################

NEVER EDIT RT_Config.pm !

Instead, copy any sections you want to change to

RT_SiteConfig.pm and edit them there. Otherwise,

your changes will be lost when you upgrade RT.

############################# WARNING #############################

Do you happen to know how?

I’ll tell you how I did it though (in RT_SiteConfig.pm):

SET ( HomepageComponents, qw(‘SummaryByUser’));

Nope, SET is invalid, it’s Set (copy, don’t retype).
Exactly the line you had in RT_Config.pm goes in RT_SiteConfig.pm.

Then you add OwnerSummary to that HomepageComponents line.
(The names OwnerSummary and RequestorSummary are documented in the
DESCRIPTION section of the README shipped with the extension).

and I also added the SummaryByUser in the @plugins.

@Plugins, not @plugins. You still haven’t shown your plugins configuration.

Howerver, got the same exact error. No dice. Just error’ed out again.
I’m just a little baffled why these extensions don’t come with a
README that gives directions on how to set it up. Anyway I digress.

Most extensions do, this one is underdocumented.

<<Go delete SummaryByUser from your RT at a Glance page, fix HomepageComponents to contain valid components and then add them to the page.>>

Yes, thanks. I did do that. Same error. See above configuration I did in RT_SiteConfig.pm.

Now when I add “OwnerSummary” as you said, I get error "Error while loading …can’t locate RT/Extensions/OwnerSummary.pm.

No, don’t add that to plugins, you add that to HomepageComponents.

Any other things you think I should check? Or perhaps now we’re at the point where this extension is perhaps not compatible with RT 4.13?

This extension is compatible with 4.0.13.
I’m the developer who contributed a patch to make it compatible with RT4.

Since you don’t seem to be following my explanations, I’ll copy and
paste the correct configuration here, but then you’re on your own.

Set(
$HomepageComponents,
[
qw(QuickCreate Quicksearch MyAdminQueues MySupportQueues MyReminders RefreshHomepage Dashboards SavedSearches OwnerSummary) # loc_qw
]
);

Set( @Plugins, qw(RT::Extension::SummaryByUser));

If you use more than one plugin, this @Plugins line is incorrect and
will disable other plugins. You must specify them all in a single
@Plugins line.

-kevin

Kevin, Your help is much appreciated.

I’ve done exactly what you’ve stated. I’ve also successfully installed over 10 other extensions. For some reason, this extension just doesn’t want to work on my RT 4.13 version.

I still get the error :

Aug 2 13:48:18 rttrack RT: could not find component for path ‘SummaryByUser’#012#012Stack:#012 [/rtdata/share/html/Elements/MyRT:95]#012 [/rtdata/share/html/index.html:78]#012 [/rtdata/sbin/…/lib/RT/Interface/Web.pm:635]#012 [/rtdata/sbin/…/lib/RT/Interface/Web.pm:335]#012 [/rtdata/share/html/autohandler:53] (/rtdata/sbin/…/lib/RT/Interface/Web/Handler.pm:208)
At this point, i’d like to uninstall it and get rid of all the error messages (on the GUI and within the logs).

Are there removal instructions anywhere?

Thank you again!

-RickOn Aug 02, 2013, at 01:15 PM, Kevin Falcone falcone@bestpractical.com wrote:

On Fri, Aug 02, 2013 at 05:03:32PM +0000, window camera wrote:

<<This is wrong. Always make your changes in RT_SiteConfig.pm, never in
RT_Config.pm or they’ll be lost when you upgrade.>>
Yes, I know it’s wrong to do it there. Had no choice though.
There was absolutely no information or documenation on how to
setup “HomepageCompoents” in RT_SiteConfig.pm. I searched far and
wide for it.

Um. Copy it from RT_Config.pm to RT_SiteConfig.pm and modify it
there.o

The documentation I copied that you deleted said what to do.

############################# WARNING #############################

NEVER EDIT RT_Config.pm !

Instead, copy any sections you want to change to

RT_SiteConfig.pm and edit them there. Otherwise,

your changes will be lost when you upgrade RT.

############################# WARNING #############################

Do you happen to know how?
I’ll tell you how I did it though (in RT_SiteConfig.pm):
SET ( HomepageComponents, qw(‘SummaryByUser’));

Nope, SET is invalid, it’s Set (copy, don’t retype).
Exactly the line you had in RT_Config.pm goes in RT_SiteConfig.pm.

Then you add OwnerSummary to that HomepageComponents line.
(The names OwnerSummary and RequestorSummary are documented in the
DESCRIPTION section of the README shipped with the extension).

and I also added the SummaryByUser in the @plugins.

@Plugins, not @plugins. You still haven’t shown your plugins configuration.

Howerver, got the same exact error. No dice. Just error’ed out again.
I’m just a little baffled why these extensions don’t come with a
README that gives directions on how to set it up. Anyway I digress.

Most extensions do, this one is underdocumented.

<<Go delete SummaryByUser from your RT at a Glance page, fix HomepageComponents to contain valid components and then add them to the page.>>
Yes, thanks. I did do that. Same error. See above configuration I did in RT_SiteConfig.pm.

Now when I add “OwnerSummary” as you said, I get error "Error while loading …can’t locate RT/Extensions/OwnerSummary.pm.

No, don’t add that to plugins, you add that to HomepageComponents.

Any other things you think I should check? Or perhaps now we’re at the point where this extension is perhaps not compatible with RT 4.13?

This extension is compatible with 4.0.13.
I’m the developer who contributed a patch to make it compatible with RT4.

Since you don’t seem to be following my explanations, I’ll copy and
paste the correct configuration here, but then you’re on your own.

Set(
$HomepageComponents,
[
qw(QuickCreate Quicksearch MyAdminQueues MySupportQueues MyReminders RefreshHomepage Dashboards SavedSearches OwnerSummary) # loc_qw
]
);

Set( @Plugins, qw(RT::Extension::SummaryByUser));

If you use more than one plugin, this @Plugins line is incorrect and
will disable other plugins. You must specify them all in a single
@Plugins line.

-kevin

I still get the error :

Aug 2 13:48:18 rttrack RT: could not find component for path ‘SummaryByUser’#012#012Stack:#012 [/rtdata/share/html/Elements/MyRT:95]#012 [/rtdata/share/html/index.html:78]#012 [/rtdata/sbin/…/lib/RT/Interface/Web.pm:635]#012 [/rtdata/sbin/…/lib/RT/Interface/Web.pm:335]#012 [/rtdata/share/html/autohandler:53] (/rtdata/sbin/…/lib/RT/Interface/Web/Handler.pm:208)
At this point, i’d like to uninstall it and get rid of all the error messages (on the GUI and within the logs).

You’ve not followed my instructions if you have that error.

At this point, go click the Reset to Default on that page.

Are there removal instructions anywhere?

Delete the plugin.
Remove it from your configuration.

-kevin

<<You’ve not followed my instructions if you have that error.>>

I wouldn’t assume that. But thank you for taking the time to help.

Best

-RickOn Aug 02, 2013, at 02:03 PM, Kevin Falcone falcone@bestpractical.com wrote:

On Fri, Aug 02, 2013 at 05:53:51PM +0000, window camera wrote:

I still get the error :
Aug 2 13:48:18 rttrack RT: could not find component for path ‘SummaryByUser’#012#012Stack:#012 [/rtdata/share/html/Elements/MyRT:95]#012 [/rtdata/share/html/index.html:78]#012 [/rtdata/sbin/…/lib/RT/Interface/Web.pm:635]#012 [/rtdata/sbin/…/lib/RT/Interface/Web.pm:335]#012 [/rtdata/share/html/autohandler:53] (/rtdata/sbin/…/lib/RT/Interface/Web/Handler.pm:208)
At this point, i’d like to uninstall it and get rid of all the error messages (on the GUI and within the logs).

You’ve not followed my instructions if you have that error.

At this point, go click the Reset to Default on that page.

Are there removal instructions anywhere?

Delete the plugin.
Remove it from your configuration.

-kevin