hi,
when im using the html-forms action parameter in otrs to link to a lokal otrs adress, it forwards me to index.pl.
in all other contexts the url forwards me correctly to my page.
<form action="?Action=AgentChecklistInstall" method="post">
=> index.pl
<a href="?Action=AgentChecklistInstall"
=> ?Action=AgentChecklistInstall
any hints what im doing wrong?
HTMLForms action parameter in OTRS
-
- Znuny guru
- Posts: 5018
- Joined: 13 Mar 2011, 09:54
- Znuny Version: 6.0.x
- Real Name: Renée Bäcker
- Company: Perl-Services.de
- Contact:
Re: HTMLForms action parameter in OTRS
You're mixing GET and POST parameters
should be
Code: Select all
<form action="?Action=AgentChecklistInstall" method="post">
Code: Select all
<form action="" method="post">
<input type="hidden" name="Action" value="AgentChecklistInstall" />
Perl / Znuny development: http://perl-services.de
Free Znuny add ons from the community: http://opar.perl-services.de
Commercial add ons: http://feature-addons.de
Free Znuny add ons from the community: http://opar.perl-services.de
Commercial add ons: http://feature-addons.de
Re: HTMLForms action parameter in OTRS
thanx for the rather fast reply
. it works.

otrs 4.0.7, ITSM, Mysql. Ubuntu