• Resolved wpriska

    (@wpriska)


    Realizei a migração do site após a homologação, entretanto as conexões da tabelas estão linkdas para o endereço anterior. Como fazer para alterar, visto que não abrem?

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

Viewing 1 replies (of 1 total)
  • Plugin Author wpDataTables

    (@wpdatatables)

    Hello there.

    Please note that the official support language is English, and we have to use Google Translator to try and understand other languages. Since a lot can be lost in translation, we apologize in advance if we misunderstood some segments of your message, and we also ask you to please translate your future messages to English.

    Thank you for your understanding.

    The prefix of the database is probably different, so you’ll need to update the prefix in wpDataTables’ database tables.

    Access your database and the table wp_wpdatatables (please note that “wp_” is the default WordPress prefix, but on your end it could be anything, so look for “your_prefix_wpdatatables” table).

    In there, check the “mysql_table_name” column, and there you’ll see the full table name (for example, wp_wpdatatable_1). If this prefix doesn’t match the prefix of your_prefix_wpdatatables table, you’ll need to run a couple of queries to fix the prefix.

    UPDATE your_prefix_wpdatatable SET content=REPLACE(content,'wp_','your_prefix_')

    And this one:

    UPDATE your_prefix_wpdatatable SET mysql_table_name=REPLACE(mysql_table_name,'wp_','your_prefix_')

    This will replace all “wp_” with “your_prefix_” in needed columns, so the tables should start working again. Just make sure to change “your_prefix_” with the actual prefix of your database.

    If you’re not sure about this procedure, or this doesn’t work, please feel free to reach out to us directly through our ticketing platform, and we’ll gladly assist you with these changes.

    Kind regards.

Viewing 1 replies (of 1 total)

The topic ‘Migração de site’ is closed to new replies.