Title: chart files
Last modified: December 6, 2017

---

# chart files

 *  [ccowen111](https://wordpress.org/support/users/ccowen111/)
 * (@ccowen111)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/chart-files/)
 * Hi,
 * I recently transferred my domain, and I saved all of my public_html files locally.
   I am looking for a chart that was housed in the amcharts plugin in my wordpress
   site. In my sites sql file, I can see the reference to [chart-2] in a post, but
   I cannot find a file with its contents. I searched public_html, and specifically
   the amcharts plugin folder. How can I find it?

Viewing 1 replies (of 1 total)

 *  Plugin Author [martynasma](https://wordpress.org/support/users/martynasma/)
 * (@martynasma)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/chart-files/#post-9758664)
 * Hey,
 * The charts are saved in the data base as regular posts. The actual chart code(
   html, resources, javascript) is saved in post meta, which means it is in the `
   wp_postmeta` table.
 * If you know the actual `post_id` of the chart, you can run the following SQL 
   query on your data base to extract all the info related to the chart:
 * `SELECT * FROM wp_postmeta where post_id=XXX and meta_key like ("_amcharts_%")`
 * (replace XXX with actual post_id)
 * If you don’t have the id, you can do this to find out:
 * `SELECT post_id FROM wp_postmeta where meta_value="chart-2"`
 * Or, if you don’t have MySQL running, you’ll need to dig this info out of your
   db dump file, I suppose.
 * I hope this helps.
    -  This reply was modified 8 years, 5 months ago by [martynasma](https://wordpress.org/support/users/martynasma/).

Viewing 1 replies (of 1 total)

The topic ‘chart files’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/amcharts-charts-and-maps_6f74b0.svg)
 * [amCharts: Charts and Maps](https://wordpress.org/plugins/amcharts-charts-and-maps/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/amcharts-charts-and-maps/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/amcharts-charts-and-maps/)
 * [Active Topics](https://wordpress.org/support/plugin/amcharts-charts-and-maps/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/amcharts-charts-and-maps/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/amcharts-charts-and-maps/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [martynasma](https://wordpress.org/support/users/martynasma/)
 * Last activity: [8 years, 5 months ago](https://wordpress.org/support/topic/chart-files/#post-9758664)
 * Status: not resolved