• Resolved sleappery

    (@sleappery)


    Hello,

    I migrated my site to 3panow.pl. After doing that every polish character has been suddenly replaced by a question mark. I have tried changing the database charset to utf 8 but nothing seems to work.

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

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

    (@yaniiliev)

    It sounds like there might be an issue with how the database was handled during the migration, particularly with character encoding. Here are a few steps you can try to resolve the issue:

    1. Ensure that your database tables and columns are using a collation that supports Polish characters, such as utf8mb4_unicode_ci. You can change this in phpMyAdmin or via SQL queries.

    2. Make sure your wp-config.php file has the correct charset and collation settings. Look for these lines and ensure they are set to UTF-8:

    define('DB_CHARSET', 'utf8mb4');
    define('DB_COLLATE', 'utf8mb4_unicode_ci');

    3. If the problem persists, you might want to try re-exporting your database, ensuring it is exported with the correct charset, and then re-importing it into your new server.

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.