• I’d like to know how to export data direct from PhpMyadmin, not using the pugin. I had an error exporting via flamingo, maybe because of the large number of submissions, but I know the data are being recorded.

    So, to avoid this, and to add a secure way to get data, I’d like to have a way (maybe in SQL) to retrive data externally. I checked and couldn’t find where the data are stored in the database of my website.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi,

    This will get you some basic data (but some metadata may be missing):

    SELECT post_date, post_title, post_content
    FROM wp_posts
    WHERE post_type = 'flamingo_inbound';
    

    Note that you may have to change table name, if you use non-default prefix.

    • This reply was modified 6 years, 6 months ago by ?eslav Przywara. Reason: Readability
Viewing 1 replies (of 1 total)
  • The topic ‘Externally Export Data’ is closed to new replies.