aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorjmtd <jmtd@web>2020-04-02 05:11:23 -0400
committeradmin <admin@branchable.com>2020-04-02 05:11:23 -0400
commit9f20b23c1bc048628d0367d84cbcc2a615b38849 (patch)
tree8bf7df5861558d325088096a2ec1356993c19eba /doc
parent025a365231caa07551bd952792e53030011e12b4 (diff)
downloadikiwiki-9f20b23c1bc048628d0367d84cbcc2a615b38849.tar
ikiwiki-9f20b23c1bc048628d0367d84cbcc2a615b38849.tar.gz
report bug
Diffstat (limited to 'doc')
-rw-r--r--doc/bugs/inactive_python_plugins_cause_error_output_when_python_interpreter_is_missing.mdwn13
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/bugs/inactive_python_plugins_cause_error_output_when_python_interpreter_is_missing.mdwn b/doc/bugs/inactive_python_plugins_cause_error_output_when_python_interpreter_is_missing.mdwn
new file mode 100644
index 000000000..f62f9738b
--- /dev/null
+++ b/doc/bugs/inactive_python_plugins_cause_error_output_when_python_interpreter_is_missing.mdwn
@@ -0,0 +1,13 @@
+`/usr/local/lib/ikiwiki/plugins/rst` and `/usr/local/lib/ikiwiki/plugins/proxy.py` provoke the following error output during some CGI operations if there is no python3 interpreter available
+
+ /usr/bin/env: ‘python3’: No such file or directory
+
+the CGI also *sporadically* dies (with signal 13, => HTTP error 500). I don't understand why this is sporadic though.
+
+This relates to [[autosetup python warnings]] and some other bugs.
+
+This happens even if `rst` and `proxy.py` are not active on the wiki (as they aren't, by default).
+
+A hacky quick solution might be to rename rst rst.py and for IkiWiki to avoid scanning plugins that end in .py if they are not enabled.
+
+— [[Jon]]