Page 1 of 1

How to install Graphviz

Posted: 26 Jun 2019, 14:57
by andresrom
Hi guys, I do not understand how to install Grapviz. Is it possible to install it on the server?
If yes, can you tell me how to do it?
In case this is not possible, how do I install it in Windows?
Thank you all

Re: How to install Graphviz

Posted: 26 Jun 2019, 20:25
by atrol
If you want use Graphviz for Mantis purposes, you have to install it on your server.
Choose the installation package you need from https://graphviz.org/download

Re: How to install Graphviz

Posted: 14 Aug 2019, 13:07
by amphetamine
$g_relationship_graph_enable = ON;
c:\xampp\htdocs\mantis\

and following the instruction here
but still not work (broken image)

Re: How to install Graphviz

Posted: 31 Aug 2019, 02:50
by amphetamine
@atrol

Graphviz 2.38 under release folder, folder structure like this,
bin\
etc\
fonts\
gtk-2.0\
include\
lib\
pango\
share\

put above folder into graphviz in the following directory and set
graphviz path = c:/xampp/htdocs/mantis/library/graphviz/

the windows PATH variable c:/Program Files (x86)/Graphviz2.38/bin/
no luck! :(

Re: How to install Graphviz

Posted: 01 Sep 2019, 10:17
by atrol
You have to set

Code: Select all

$g_dot_tool
    The full path for the dot tool. The webserver must have execute permission to this program in order to generate relationship graphs. This configuration option is not relevant for Windows. The default value is '/usr/bin/dot'. 
$g_neato_tool
    The full path for the neato tool. The webserver must have execute permission to this program in order to generate relationship graphs. This configuration option is not relevant for Windows. The default value is '/usr/bin/neato'. 
https://mantisbt.org/docs/master/en-US/ ... lationship

Re: How to install Graphviz

Posted: 01 Sep 2019, 11:34
by amphetamine
Thank you!