How to export settings from a Wordpress theme?

0

I have a WordPress site and need to migrate to another server. I was able to export the content and import it into the new environment. However, the theme used was greatly modified. There were many settings made. Is there a way to save all settings and import into the new environment?

EDIT PS: I have access to the database. PS2: The theme in question is Hueman. PS3: I did not find any data in the bank related to the topic.

    
asked by anonymous 21.02.2017 / 20:34

1 answer

0

Of course there is! I'll give you the step by step solution of an example ...

  • Export your MySQL database through phpmyadmin or the terminal. To do this, go to your main database, and select the one you would like to export. If your phpmyadmin is in Portuguese, go to the Export tab. Export it to the same * .sql type!
  • Now, let's download your wordpress platform. For this, it is important that your server support file compression so you do not lose any during downloading. Compress your files in * .zip format.
  • After downloading the files. Import your file into your new server, use phpmyadmin and go to the Import tab. The type is * .sql.
  • Now import your * .zip file into the new server. Unzip it within www or public_html .
  • In offline mode, go to the root of the wordpress directory, and let's manipulate the wp-config.php file. In this file you will change the settings of your new database. Then save the file, and replace the file on your new server.
  • Now, to finish, you can change the address of your server in the wp_option table (Usually it stays here). If your domain is local, the address will look like this: link ... change to your domain.
  • Note: Paid servers have "File Manager" in CPANEL. In it, you can compress and unzip zip files.

    I hope I have contributed!

        
    22.10.2017 / 20:07