请告诉我如何将用户在我的网站(PHP)中输入的反馈输入到Mantis中。现在我正在通过电子邮件将反馈发送到我的ID。
附言:我基本上是一个Java程序员。但我希望使用PHP完成这项工作,因为网站是使用PHP完成的。
Mantis有一个SOAP API,您可以使用它与bug跟踪器进行编程交互。创建问题的一个简单实现(不是针对Mantis实例进行双重检查)是
$c = new SoapClient("http://example.org/mantis/api/soap/mantisconnect.php?wsdl");
$username = 'xxx';
$password = 'xxx';
$issue = array ( 'summary' => 'My test issue' , 'description' => 'Some description');
$c->mc_issue_add($username, $password, $issue);
我无法让Robert的工作,因为我有两个项目存储了问题,因此需要我提供项目id,我在项目下拉列表的html中找到了该id。
因此,我将Robert的回答向前推进了一步,并添加了一些代码以允许提交到自定义字段。
这与最新的螳螂版本配合得很好。
$c = new SoapClient("http://www.yoursite.com/path_to_mantis/api/soap/mantisconnect.php?wsdl");
$username = 'user';
$password = 'pass';
$issue = array (
'summary' => 'Rone My test issue',
'description' => 'Rone Some description',
'project'=>array('id'=>2),
'category'=>'General',
'custom_fields'=>array(
array('field' => array('id'=>1,'name'=>'Account #'),'value'=>1),
array('field' => array('id'=>2,'name'=>'Account Name'),'value'=>'Name Goes here')
)
);
$c->mc_issue_add($username, $password, $issue);
对于您的设置,EmailReporting插件似乎是最好的方法:
http://www.mantisbt.org/wiki/doku.php/mantisbt:emailreporting
https://github.com/mantisbt-plugins/EmailReporting
以防万一有人遇到和我一样的麻烦。确保你使用了正确的utf8fpr用户名,尤其是密码(当使用特殊字符和其他东西时):
$issue = $c->mc_issue_get($username, utf8_encode($password), $id);