1 For some reason, on a wiki hosted locally using [ikiwiki-hosting](http://ikiwiki-hosting.branchable.com), web edits do not get committed and pushed to the central repository anymore.
3 For example, I just did an edit on the web interface, which went on without error, but then the modified files are not committed:
6 o-cats@marcos:~/source$ git status
8 # Changes not staged for commit:
9 # (use "git add <file>..." to update what will be committed)
10 # (use "git checkout -- <file>..." to discard changes in working directory)
12 # modified: 2014/summer.mdwn
14 no changes added to commit (use "git add" and/or "git commit -a")
17 The files and the .cgi are owned by the right user:
20 o-cats@marcos:~/source$ ls -al 2014/summer.mdwn
21 -rw-r--r-- 1 o-cats o-cats 2812 Nov 28 23:35 2014/summer.mdwn
22 o-cats@marcos:~/source$ ls -al /var/www/o-cats/ikiwiki.cgi
23 -rwxr-xr-x 1 o-cats o-cats 15596 Oct 4 12:16 /var/www/o-cats/ikiwiki.cgi
26 The virtual host is configured to run as the right user:
30 ServerAdmin root@localhost
31 ServerName foo.example.com
33 SuexecUserGroup o-cats o-cats
37 DocumentRoot /home/o-cats/public_html
39 DirectoryIndex index.html index
42 <Directory /home/o-cats/public_html>
43 Options Indexes MultiViews
54 ScriptAlias /ikiwiki.cgi /var/www/o-cats/ikiwiki.cgi
56 ErrorLog /var/log/ikiwiki-hosting/o-cats/error.log
58 CustomLog /var/log/ikiwiki-hosting/o-cats/access.log combined
61 ErrorDocument 404 "/ikiwiki.cgi"
65 What's going on all of a sudden? This is Debian wheezy. --[[anarcat]]
67 > Oh... it seems like this is related yet again to the disruptive git upgrade:
69 > [Thu Nov 28 23:35:01 2013] [error] [client 2001:1928:1:9::1] Aborting commit due to empty commit message., referer: http://foo.example.com
71 > So this is [[fixed|done]] as of 3.20130711. Shouldn't we backport to wheezy now? :) --[[anarcat]]