Finally I have Mayan-EDMS running on Webfaction. The guys from Webfaction Support discovered the problem that I copy below:
Ok, your Mayan app is up and running. I did run into the same error that you encountered, but I discovered the cause. The problem is that /home/<user>/webapps/mayan_app/mayan/mayan/apps/installation/models.py does a test like this: if self.is_lsb: However, the code that sets up the Installation model doesn't always create an "is_lsb" attribute, which is why the "AttributeError: is_lsb" occurs. I changed /home/<user>/webapps/mayan_app/mayan/mayan/apps/installation/models.py to do the test like this... if hasattr(self,'is_lsb') and self.is_lsb: ... which means it will only check the truth of is_lsb if the attribute actually exists, and now the error no longer occurs. Feel free to post that information to https://groups.google.com/forum/#!topic/mayan-edms/CaUvsaiN9KU/discussion so that others will know how to fix it. You might also want to file a bug report at https://github.com/rosarior/mayan/issues Hope that helps! Please let us know if you need anything else. Regards, Sean F. Support Manager -- WebFaction - Smarter web hosting http://webfaction.com http://twitter.com/webfaction - http://facebook.com/webfaction The credit goes to the webfaction guys. If someone could open an issue at github to help the community I would be grateful. Thank you. --
