Once installation is complete you should first try creating some
Sequence Diagrams. Since these work without Graphviz this is the fastest way to check that the installation worked. If they do not work,
other diagrams will probably not work.
You should make sure to test
Sequence Diagrams using the command line and not in the target tool you want to install (Eclipse, Word, Mediawiki...) :
java -jar plantuml.jar -verbose sequenceDiagram.txt
In the
sequenceDiagram.txt file, you can have a very simple test:
@startuml
Alice -> Bob: test
@enduml
The
-verbose flag is used to generated some logs that you can send to us, if no image is generated.
Under Unix, you must have X11 librairies installed (which is done by default). Otherwise, you will have some
HeadlessException.
You may have to add a flag
-Djava.awt.headless=true in the
command line.
If this is working, but not in your tool, it is probably due to a specific tool issue:
On MediaWiki & Windows, you must set the read & execute permissions on
C:\Windows\system32\cmd.exe for the account the PHP web service extension is running under. PHP needs those permissions to "fork" other processes.