Boop beep bop… calcul… calcul… initialisation séquence 42…

Encore une blague de ces sacrés robots ! Ils ont pris le relais et traduit cette page dans votre langue. Les robots n’ont que de bonnes intentions dans leur cœur de métal. Ils veulent vous aider ! Indiquez-nous le niveau de performance des robots à l’aide des boutons placés au bas de cette page. Aller à la version en anglais
Effectuer les modifications finales
Step 6 of the Move a Managed WordPress site to an unmanaged WordPress account series.
Required: You'll need a text editor to make the necessary changes in this SQL file. There are many third-party text editors available, we recommend Notepad++. Do not edit the file in a word processing application like Microsoft Word.
Managed WordPress uses a randomized table prefix for its database. To get your site to work on the new host, you need to update the wp-config.php
on your new host so it matches the database prefix in the SQL database file imported in step 5.
- Connect to your new hosting account using a file manager or an FTP client like Filezilla. Each hosting provider has a preferred way of doing this. If you're unsure how to do it, ask your new hosting provider for instructions.
- Locate the
wp-config.php
file and edit it. If you're using FileZilla, select the file and then right click and select View/Edit. - Update the
$table_prefix
. You should have the prefix after importing the SQL database file in Import your site database. Form example, if your prefix iswp_yourPrefix_
.Before: $table_prefix = 'wp_'; After: $table_prefix = 'wp_yourPrefix_';
- Once you're done making changes, save the file. If you're using FileZilla, accept the overwrite warning in FileZilla to replace the file on your new host.
- Testez votre site pour voir s'il fonctionne correctement.
Étapes suivantes
If you're changing the domain along with the site migration, you'll need to perform a find and replace in the database.
- If your new unmanaged hosting account is with us, follow the instructions in Rechercher et remplacer pour WordPress avec SSH.
- If your new unmanaged hosting account is with another host provider, see their documentation for directions.
En savoir plus
- To download and install the Filezilla FTP client.
- Vous pouvez trouver plus d'informations dans la documentation officielle de WordPress.