Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/scriptform/commit/84352bae86df16766fdb4f92fecd72ab6cd3b6c3?style=split&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
6 additions and
2 deletions
doc/MANUAL.md
@ -1035,8 +1035,12 @@ The following output types are supported:
### < a name = "output_exitcodes" > Exit codes< / a >
### < a name = "output_exitcodes" > Exit codes< / a >
If the script's exit code is 0, the output of the script (stdout) is captured
Exit codes are handled by Scriptform if the output type is not `raw` . Otherwise
and shown to the user in the browser.
it is the script's responsibility to properly handle exit codes of subscripts
and showing errors.
If the output type is `escaped` or `html` and the script's exit code is 0, the
output of the script (stdout) is captured and shown to the user in the browser.
If a script's exit code is not 0, it is assumed an error occured. Scriptform
If a script's exit code is not 0, it is assumed an error occured. Scriptform
will show the script's stderr output (in red) to the user instead of stdin.
will show the script's stderr output (in red) to the user instead of stdin.