splitbrain / dokuwiki-plugin-graphviz

Create Graphviz graphs from within DokuWiki
http://www.dokuwiki.org/plugin:graphviz
12 stars 15 forks source link

Can not view of plugin:graphviz in dokuwiki #17

Open ljz0721cx opened 7 years ago

ljz0721cx commented 7 years ago

I use plugin:graphviz in dokuwiki, code :

<graphviz>
 graph G1 {
    aaa -- bbb;
    bbb -- c;
    aaa -- c;
}
</graphviz>

show image like this image please help! why show like this??

ljz0721cx commented 7 years ago

dukowiki graphviz plugin not working,please help;

nblock commented 6 years ago

Maybe: https://github.com/splitbrain/dokuwiki-plugin-graphviz/issues/19#issuecomment-353610764

NeatBoar commented 1 month ago

After 2024 the problem has another reason and solution.

Graphviz render from Google by default (chart.apis.google.com). Google shut down the service since January 2024 (as I heard). I switch to local render.

dnf install graphviz Then add dot path to graphviz config file (dokuwiki/lib/plugins/graphviz/conf/default.php):

<?php $conf['path'] = '/bin/dot';