Reply To: Droopy file transfer failure

Forum › Forums › General › Software › Droopy file transfer failure › Reply To: Droopy file transfer failure

#203574
munto
Member

    Yes, there is different number of arguments. I don’t know python but I added one dummy text arg and now uploading works.
    In file /usr/local/bin/droopy you have to find class DroopyFieldStorage and add text arg to its __init__ method after directory arg:

    class DroopyFieldStorage(cgi.FieldStorage):
    ...
    def __init__(self, fp=None, headers=None, outerboundary=b'',
               environ=os.environ, keep_blank_values=0, strict_parsing=0,
               limit=None, encoding='utf-8', errors='replace',
               directory='.', argument12='dummy'):