3.3.9: Customer User Edit screen remains empty

Moderator: crythias

Post Reply
Tukcedo
Znuny newbie
Posts: 3
Joined: 17 Dec 2014, 16:17
Znuny Version: 3.3.9
Real Name: Michel van der Kleij
Company: Tukcedo Services

3.3.9: Customer User Edit screen remains empty

Post by Tukcedo »

Hey guys,

I'm new OTRS user and I can't get editing of company users to work. Companies work fine, but when I select an existing user from the search list, the resulting window remains empty. The url is:

http://xxxxx/otrs/index.pl?Action=Admin ... ;Nav=Agent

Note that ID= is empty too. However, putting a valid ID in there doesn't make any difference.

Does anybody have any idea what this might be??

Thx,

Michel.
Tukcedo
Znuny newbie
Posts: 3
Joined: 17 Dec 2014, 16:17
Znuny Version: 3.3.9
Real Name: Michel van der Kleij
Company: Tukcedo Services

Re: 3.3.9: Customer User Edit screen remains empty

Post by Tukcedo »

Nobody any ideas??? :(
Giulio Soleni
Znuny wizard
Posts: 392
Joined: 30 Dec 2010, 14:35
Znuny Version: 6.0.x and 5.0.x
Real Name: Giulio Soleni
Company: IKS srl

Re: 3.3.9: Customer User Edit screen remains empty

Post by Giulio Soleni »

hallo,
did you enable Company Support on your /opt/otrs/Kernel/Config.pm ?

Code: Select all

CustomerCompanySupport => 1
OTRS 6.0.x on CentOS 7.x with MariaDB 10.2.x database connected to an Active Directory for Agents and Customers.
ITSM and FAQ modules installed.
Tukcedo
Znuny newbie
Posts: 3
Joined: 17 Dec 2014, 16:17
Znuny Version: 3.3.9
Real Name: Michel van der Kleij
Company: Tukcedo Services

Re: 3.3.9: Customer User Edit screen remains empty

Post by Tukcedo »

Hi Giulio,

That value does not exist in Kernel/Config.pm. I looked in the code and there are a number of references to it, but it doesn't seem to be defined anywhere.

UPDATE:
It was commented out in Kernel/Config/Defaults.pm but uncommenting it ("CustomerCompanySupport => 1") doesn't make any difference sadly ...

Thx,

Mich.
Giulio Soleni
Znuny wizard
Posts: 392
Joined: 30 Dec 2010, 14:35
Znuny Version: 6.0.x and 5.0.x
Real Name: Giulio Soleni
Company: IKS srl

Re: 3.3.9: Customer User Edit screen remains empty

Post by Giulio Soleni »

The correct approach is to copy and paste from /opt/otrs/Kernel/Config/Defaults.pm into /opt/otrs/Kernel/Config.pm the whole

Code: Select all

$Self->{CustomerUser} = {

...

}
section and edit it wherever necessary.

Also you may have different backends for customers (for example OTRS DB and LDAP) ... in that case you should specify different sections distinguished by a progressive number:
$Self->{CustomerUser} must be always reserved for OTRS DB, $Self->{CustomerUser1} could be used for your LDAP or ActiveDirectory and so on...

and for each section you should specify CustomerCompanySupport => 1

Any option set inside /opt/otrs/Kernel/Config.pm overrides what is found inside /opt/otrs/Kernel/Config/Defaults.pm

Please post the whole content of /opt/otrs/Kernel/Config.pm and we may check for your configuration
OTRS 6.0.x on CentOS 7.x with MariaDB 10.2.x database connected to an Active Directory for Agents and Customers.
ITSM and FAQ modules installed.
Post Reply