FAQ Link ändern
FAQ Link ändern
Guten Morgen zusammen,
wenn ich aus einem Ticket antworte und dann einen FAQ-Link hinzufüge, muss sich der Kunde im Backend anmelden und das kann er ja nicht. Wie kann ich den Link ändern, dass er auf die FAQ-Seite public.pl zugreift?
Viele Grüße
Rocky
wenn ich aus einem Ticket antworte und dann einen FAQ-Link hinzufüge, muss sich der Kunde im Backend anmelden und das kann er ja nicht. Wie kann ich den Link ändern, dass er auf die FAQ-Seite public.pl zugreift?
Viele Grüße
Rocky
OTRS 3.1.5
VM Windows 2003
VM Windows 2003
Re: FAQ Link ändern
prüf mal die Sysconfig, eigentlich geht der Link per default auf die public.pl
"Production": OTRS™ 8, OTRS™ 7, STORM powered by OTRS
"Testing": ((OTRS Community Edition)) and git Master
Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com
"Testing": ((OTRS Community Edition)) and git Master
Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com
Re: FAQ Link ändern
Hab jetzt mal nichts gefunden, schaut meiner Meinung nach eigentlich ok aus. Aber du kannst mir bestimmt sagen, wo ich genau schauen soll?
OTRS 3.1.5
VM Windows 2003
VM Windows 2003
Re: FAQ Link ändern
einstellen kann man da nix,hab gerade nochmal geschaut. Ist bei Euch die public.pl gegebenenfalls deaktiviert?
"Production": OTRS™ 8, OTRS™ 7, STORM powered by OTRS
"Testing": ((OTRS Community Edition)) and git Master
Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com
"Testing": ((OTRS Community Edition)) and git Master
Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com
Re: FAQ Link ändern
Deaktiviert habe ich nichts, ich komm auch ganz normal über meine internedomaine/otrs/public.pl auch auf mein FAQ-System.
OTRS 3.1.5
VM Windows 2003
VM Windows 2003
Re: FAQ Link ändern
dann hat es vielleicht jemand im Code angepasst...
"Production": OTRS™ 8, OTRS™ 7, STORM powered by OTRS
"Testing": ((OTRS Community Edition)) and git Master
Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com
"Testing": ((OTRS Community Edition)) and git Master
Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com
Re: FAQ Link ändern
zeig mal bitte die 10 Zeilen über und unter der Zeile
aus der Datei Kernel/Modules/AgentFAQZoom.pm
Code: Select all
$FAQData{Publiclink} = $HTTPType . '://' . $FQDN . $Baselink
"Production": OTRS™ 8, OTRS™ 7, STORM powered by OTRS
"Testing": ((OTRS Community Edition)) and git Master
Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com
"Testing": ((OTRS Community Edition)) and git Master
Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com
Re: FAQ Link ändern
# check if FAQ article is public
if ( $FAQData{StateTypeID} == $PublicStateType->{StateID} ) {
my $HTTPType = $Self->{ConfigObject}->Get('HttpType');
my $FQDN = $Self->{ConfigObject}->Get('FQDN');
my $Baselink = $Self->{LayoutObject}->{Baselink};
# rewrite handle
$Baselink
=~ s{ index[.]pl [?] }{public.pl?}gxms;
$FAQData{Publiclink} = $HTTPType . '://' . $FQDN . $Baselink
. "Action=PublicFAQZoom;ItemID=$FAQData{ItemID}";
# show "Insert Link" button
if ( $TicketComposeConfig->{ShowInsertLinkButton} ) {
$Self->{LayoutObject}->Block(
Name => 'InsertLink',
Data => {},
);
$ShowOrBlock = 1;
}
if ( $FAQData{StateTypeID} == $PublicStateType->{StateID} ) {
my $HTTPType = $Self->{ConfigObject}->Get('HttpType');
my $FQDN = $Self->{ConfigObject}->Get('FQDN');
my $Baselink = $Self->{LayoutObject}->{Baselink};
# rewrite handle
$Baselink
=~ s{ index[.]pl [?] }{public.pl?}gxms;
$FAQData{Publiclink} = $HTTPType . '://' . $FQDN . $Baselink
. "Action=PublicFAQZoom;ItemID=$FAQData{ItemID}";
# show "Insert Link" button
if ( $TicketComposeConfig->{ShowInsertLinkButton} ) {
$Self->{LayoutObject}->Block(
Name => 'InsertLink',
Data => {},
);
$ShowOrBlock = 1;
}
OTRS 3.1.5
VM Windows 2003
VM Windows 2003
Re: FAQ Link ändern
sieht korrekt aus, also sollte auch der public.pl Link geschrieben werden und nicht customer.pl
"Production": OTRS™ 8, OTRS™ 7, STORM powered by OTRS
"Testing": ((OTRS Community Edition)) and git Master
Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com
"Testing": ((OTRS Community Edition)) and git Master
Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com