I’d like to uninstall/delete my self-hosted writefreely blog (and the associated db), but can’t figure out how to do it. Any advice?
You’ll just want to delete the writefreely directory (includes the executable, templates
, static
, etc…), wherever you have that installed on your server, and the database. If you’re using SQLite, that’ll be a database file (configured in config.ini
), and if you’re using MySQL, you’ll just run this query:
DROP DATABASE writefreely;
…where writefreely
is the name of your WriteFreely database. That should be it!
Thanks, that worked!
1 Like