Downloading my own posts

I don't think XenForo has that functionality. I couldn't find it, not even on the admin pages. I can export a user but that only contains the personal details, contact info, etc. basically an XML containing a user's profile but no posts.
 
Sure. Use the search function (only fill in your user name) to get a list of all your posts. fetch(1) the resulting pages (https://forums.freebsd.org/search/<search_number>/?page=<page_number>) and use a script to do the posts scraping for you.
It can be done as a shell script. Something like sed(1) will come in handy. Or you can use Perl or Python to avoid external tools.
 
Back
Top