Skip Navigation

[Resolved] How to upload data post type toolset to SQL server.

This thread is resolved. Here is a description of the problem and solution.

Problem:

I am trying to upload csv file to the server , but I cannot find the toolset post type data at phpmyadmin.

Solution:

Toolset Types plugin is using standard WP function register_post_type() to create custom post types

https://developer.wordpress.org/reference/functions/register_post_type/

so all post data should be saved in your database table "wp_posts", the column "post_type" value is your custom post type slug.

Please follow our document to import your website post data

Relevant Documentation:

https://toolset.com/course-lesson/how-to-import-content-into-wordpress-using-csv/

This support ticket is created 3 years, 10 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Hong_Kong (GMT+08:00)

This topic contains 2 replies, has 2 voices.

Last updated by ibrahimM 3 years, 10 months ago.

Assisted by: Luo Yang.

Author
Posts
#1918441

Tell us what you are trying to do?
I am trying to upload csv file to the server , but I cannot find the toolset post type data at phpmyadmin.

Is there any documentation that you are following?
No

Is there a similar example that we can see?
No . But it should be standard upload data to the server.

What is the link to your site?
hidden link

#1918531

Hello,

Please follow our document to import your website post data:
https://toolset.com/course-lesson/how-to-import-content-into-wordpress-using-csv/

Toolset Types plugin is using standard WP function register_post_type() to create custom post types
https://developer.wordpress.org/reference/functions/register_post_type/

so all post data should be saved in your database table "wp_posts", the column "post_type" value is your custom post type slug.

#1921393

My issue is resolved now. Thank you!