Redirection WordPress vers wp-admin / install.php
-
-
Comment avez-vous changé la couleur de lapoliceet quelfichier avez-vous édité?Avez-voustouché d'unemanière ou d'une autre à `wp-config.php` ou à labase de données?How did you change the font color and which file did u edit ? Did you in any way touch `wp-config.php` or the database ?
- 1
- 2013-12-13
- Subharanjan
-
Et,oùtravaillez-vous,sur un hôte local ou un serveur distant.Veuillezmodifier votre question avecplus de détailspour obtenir unebonne réponse détaillée.And, where are you working, on a localhost, or a remote server. Please edit your question with more details to get a good detail answer.
- 0
- 2013-12-13
- Mayeenul Islam
-
Désolé!jetravaille sur un serveur distant,je n'aipastouché lefichier wp-configsorry! am working in remote server i haven't touch the wp-config file
- 0
- 2013-12-13
- user3013043
-
Comment avez-vous changé une couleur depolice?Avez-voustéléchargé unenouvelle copie d'unfichier CSS ou quoi?La crédibilité depenser qu'unemodification CSS viderait un site.How did you change a font color? Did you upload a new copy of a CSS file or what? Strains credibility to think a CSS edit would dump a site.
- 0
- 2014-07-25
- jdm2112
-
8 réponses
- votes
-
- 2015-12-19
J'aieu ceproblème.J'ai contactémonfournisseur d'hébergementet ilsm'ont dit que cela s'étaitproduitparce quej'avais dépassé la limitemaximale de requêtespar heureet que l'accès à labase de données était donctemporairement verrouillé,de sorte que WPne pouvaitpasen lire.
I've had this problem. I contacted my hosting provider and they told me it happened because I exceeded maximum queries per hour limit and therefore access to the database was temporarily locked, so WP couldn't read from it.
-
je suppose quej'aiexactement lamême chose.Tentative de connexion àphpMyAdminet le serveur a renvoyé un 500guess I'm having the exact same thing. Tried to login to phpMyAdmin and server returned a 500
- 0
- 2017-03-03
- Niko
-
- 2013-12-13
Ouvrez votrebase de code/configuration via FTPenviron.
- Vérifiez lenom de labase de données,lenom d'utilisateur,lemot depasseet lepréfixe detable dans lefichier wp-config.php.
- Vérifiez si lefichier wp-config.phpexisteet si lefichiern'apas étémal orthographié dans lenom ou l'extension.
Open your codebase/setup through FTP or so.
- Check the database name, username, password and table prefix in the wp-config.php file.
- Check if the wp-config.php file exist and file has not been misspelled in the name or the extension.
-
- 2014-08-25
Après avoir redémarrémamachine,mon wordpress a commencé à rediriger vers l'installation.Labase de données a signalé que lestablespour wordpress «n'existaientpas» lorsqu'elles sont visualisées viaphpMyAdmin.L'arrêt du serveur Web,puis le redémarrage du serveurmySQL ont résolu leproblème surmon système.
Veuillezessayer d'arrêter votre serveur Web (en douceur),puis redémarrezmySQL.
After restarting my machine my wordpress started redirecting to install. The database reported that the tables for wordpress 'did not exist' when viewed through phpMyAdmin. Shutting down the webserver, then restarting the mySQL server fixed the issue on my system.
Please try shutting down your webserver (gracefully), then restart mySQL.
-
- 2015-06-18
Essayez de regarder latable wp_options dansphpMyAdminet cliquez sur "Optimiser latable".J'aitravaillé sur l'un demes sites quiprésentaitexactement ceproblème (maisje ne suispas sûr de la causeinitiale).
Try looking at wp_options table in phpMyAdmin and hitting "Optimize table". Worked on one of my sites that had this exact issue (though not sure what caused it initially).
-
- 2019-01-22
Leproblème setrouve dans lefichier
wp-config.php
.Vous devez vérifier le champ$table_prefix
et vous assurer qu'il correspond auxpréfixes detable dans votrebase de données actuelle.Exemple: Si dans labase de données vostables ressemblent à
wp_website_year_comments
dans votrewp_config.php
,cela devrait ressembler à ceci:/** * WordPress Database Table prefix. * * You can have multiple installations in one database if you give each * a unique prefix. Only numbers, letters, and underscores please! */ $table_prefix = 'wp_website_year_';
The issue is within
wp-config.php
file. You have to double check the$table_prefix
field and make sure that it corresponds to table prefixes in your actual database.Example: If in the database your tables look like
wp_website_year_comments
in yourwp_config.php
it should look like this:/** * WordPress Database Table prefix. * * You can have multiple installations in one database if you give each * a unique prefix. Only numbers, letters, and underscores please! */ $table_prefix = 'wp_website_year_';
-
- 2017-01-14
J'ai également rencontré ceproblèmeet j'aifinalement réalisé que leplugin Jetpackinstallé avec Wordpressen est la causeprincipale.Ilempêche les attaquesparforcebruteet améliore la sécurité,donc aprèsenviron 10 appels REST au serveur,ilbloque automatiquementtoutes les demandesen redirigeant versinstall.php.La désactivation de Jetpack a résolumonproblème.
I also experienced this problem and finally realized that the Jetpack plugin installed along with Wordpress is the root cause. It prevents bruteforce attack and enhance security so after about 10 REST calls to the server, it automatically blocks all requests by redirecting to install.php. Deactivating Jetpack solved my problem.
-
- 2019-01-30
Quelques correctifs quifonctionnenttoujours:
-
VERIFIER wp-config
- Les connexions à labase de données doivent êtremises àjour
-
Vérifier lepréfixe dans wp-config Parfois,lepréfixeestfaux comme wp_ outout autre.Vérifiez votrebase de donnéeset corrigez-la.
-
Vérifier lefichier .htaccess Essayez demettre lefichier htaccess wordpresspar défaut
-
Vérifiez lenom dufichier wp-config Parfois,lesgensmodifient lefichier wp-config-sample à laplace.Vous devez éditer lefichier wp-config.
Some fixes that always work:
CHECK wp-config
- DB Logins must be updated
Check Prefix in wp-config Sometimes the prefix is wrong like wp_ or any other. Check your database and correct it.
Check .htaccess file Try putting default wordpress htaccess file
Check wp-config file name Sometimes people edit wp-config-sample file instead. You have to edit wp-config file.
-
Jen'ajouteraispas d'e-mailpour vous contacter.I wouldn't add an email to contact you.
- 0
- 2019-01-30
- RiddleMeThis
-
- 2019-02-06
La solution @Izzy Hegazy afonctionné dansmon cas.J'aitotalement oublié quej'avais changé lepréfixe detable sur l'ancienneinstallation.Pendant cetemps,sur lanouvelleinstallation,j'ai utilisé lepréfixe detable wp_par défaut.
<½SOLUTION
-
Dans le cas d'unemigration;assurez-vous que lepréfixe de votretable sur l'ancienneinstallationest lemême sur lanouvelleinstallation.
-
Supprimez lefichier wp-config-sample.php.
-
Vérifiez si wp-config.phpexiste
-
Vérifiez les détails de connexion à labase de donnéeset confirmez qu'ils sont dirigés vers labonnebase de données.(nom d'utilisateuret mot depasse)
-
Essayez de réparer lestables de labase de donnéesen utilisant PHPmyadmin.Parfois,lestables de labase de données sont corrompueset provoquent deserreurs.
Ce sonttoujours les correctifs dans laplupart des cas.
@Izzy Hegazy solution worked in my case. I totally forgot I had changed the table prefix on the old installation. Meanwhile, on the new installation, I used the default wp_ table prefix.
SOLUTION
In the case of a migration; ensure your table prefix on the old installation is same on the new installation.
Delete the wp-config-sample.php file.
Check if wp-config.php exists
Check the database connection details and confirmed they're pointed to the right database. (username & password)
Try repairing the database tables using PHPmyadmin. At times database tables get corrupted and cause errors.
These are always the fix in most cases.
Jetravaille surmon site WordPress.J'ai changé la couleur depolice demon sitepuisj'ai rafraîchimapagemaiselle redirige vers
wp-admin/install.php
.Quepuis-jefairemaintenant?Commentpuis-je accéder àmon site?