WolfpakZ wrote: > I'm trying to move Trac projects from one machine (FC5) to another > (CentOS 4.3) and I'm experiencing the following error on the new > machine: > > PythonHandler trac.web.modpython_frontend: DatabaseError: unsupported > file format > ... > I'm at a loss. If anyone might be able to help me get to the bottom of > this, I would really appreciate it. If I left something out that would > be helpful, let me know. I'm more than happy to provide any information > needed to assist me with this.
Have you tried dumping the database on the FC5 and reloading it on Cent? (instead of copying the raw file) Try this on FC5: $ sqlite3 /path/to/trac.db sqlite> .output trac-dumpfile.sql sqlite> .dump sqlite> <ctrl-d> Then on Cent: $ sqlite3 /path/to/new/but/empty/trac.db sqlite> .read trac-dumpfile.sql sqlite> <ctrl-d> HTH, Matt --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac Users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users -~----------~----~----~----~------~----~------~--~---
