22

I clicked on the 'Update WordPress' link in the admin dashboard of my WordPress site, and I am getting this error:

"The file 'wp-config.php' already exists. If you need to reset any of the 
configuration items in this file, please delete it first. You may try installing now."

When I try to click the "installing now" link, it seems that WordPress is installing fresh. I want to keep all of the content of my WordPress installation.

I have tried to change the name of the wp-config.php file but that didn't do anything.

mgrantnz
  • 375
  • 1
  • 4
  • 15

16 Answers16

113

Is just a browser cache.

On first URL load, you are redirected from domain.ext to domain.ext/wp-admin/setup-config.php

If you are on Chrome, just open the developers console, go to "Network" tab. Reload the page and right click anywhere in the console, and hit "Clear browser cache".

Now refresh again and you will see your website

Pierre R
  • 1,272
  • 1
  • 8
  • 7
  • I went to >Chrome > Customize & Control (the new Settings button, arrow up, top right menu corner) > History > cleared up. But yes, either way it is was a caching issue and resolved. Thank you! – Mugé Apr 04 '17 at 17:30
  • Wow, I wasted a lot of time before reading your post. Thank you! – Joseph Dattilo Jun 13 '17 at 20:35
  • Worked For Me :) – Naveen DINUSHKA Sep 14 '18 at 04:16
  • 1
    AAAARRRRRHHHH this is sooo annoying. but was resolved by opening a new private tab :( – benbyford Feb 03 '19 at 22:12
  • 2
    You can also simply open the developers console. Go on the "Network" tab. Check the "Disable cache" checkbox and refresh ! – Pierre R Feb 28 '19 at 15:44
  • Thanks for the answer, and yes, it's confirmed that this is a caching issue. Just append a query string to your URL. If you URL is http://mywebsite.com, then make it http://mywebsite.com?q . :) – wooncherk Feb 13 '20 at 04:48
6

I ran into this same issue while I was transferring a site. The issue ended up being with the .htaccess file. I fixed it by resetting my permalinks. There may be other causes to this issue but this worked for me:

  1. Click on General => Permalinks
  2. Click Save Changes (to reset permalinks)
Marc
  • 4,661
  • 3
  • 40
  • 62
5

Try to display the website first on the incognito tab. If it works correctly, clear the browser cache.

Once the page refresh has been completed, the website will appear.

You can use the following shortcuts to clear the browser cache.

Windows: Ctrl + F5 Mac OS: CMD + Shift + R

Rustem Hesenov
  • 429
  • 5
  • 6
3

This usually happens when you use an old version of Wordpress files or old database, and you use partly new files of Wordpress.

All you need to do is to delete all WP files and install a fresh Wordpress (new files unzipped from a new version of Wordpress) and use an empty database. If you're planning to migrate or move from another website, you should use the export/import function built in wordpress.

Amin Darvand
  • 367
  • 2
  • 19
2

he file wp-config.php already exists. If you need to reset any of the configuration items in this file, please delete it first. You may try installing now.

Answer:- Please Clear Your browser's cache.

1

Did I miss the party? Today I have a problem like what you experienced 5 years ago. The solution is: Remove all caching plugins (Cloudflare, Jetpack, Litespeed).

Mawan
  • 113
  • 6
0

Maybe you could try to delete 'wp-config.php' file, or take a backup of this file in different folder and then try again.

charles
  • 11,212
  • 3
  • 31
  • 46
0

If you are using bluehost and did not do the one click install :

I solved this problem by deleting the default error pages 404.php 500.php etc...

I do not know why exactly this was causing this issue... Sorry for the sloppy answer but tried clearing cache and recreating the .htaccess file it didn't work.

0

I removed the added spaces that the Wordpress's own web 'easy installer' created in the wp-config.php file to help me out.

Guess the Wordpress's own wp-config.php ?checker? isn't compatible with Wordpress's own installer. Wow.

Once the added spaces were removed, site comes up fine. I simply modeled the spacing that is in the wp-config-sample.php file.

Petter Friberg
  • 21,252
  • 9
  • 60
  • 109
PJ Evans
  • 31
  • 7
0

Because you just installed wp.

Just hit ctrl+F5 done!!!

Solution
  • 164
  • 1
  • 2
  • 11
0

More likely it is cache issue and this error comes when we try to install one Wordpress inside of another sub folder of the cpanel in the same Wordpress installation and it will be mostly resolved when you try to check it in the private window or another browser

Kamal
  • 245
  • 2
  • 3
0

For me it was file permission set to 666 changing it to 664 worked.

nab
  • 568
  • 8
  • 20
-1

If someone is still for a solution. This happened to me on an existing site while trying to update. the problem was following line in wp-config.php near the end.

/** Sets up WordPress vars and included files. */

require_once(ABSPATH . 'wp-admin/setup-config.php');

Removing this fixed the problem. Hope this helps.

Panda
  • 6,955
  • 6
  • 40
  • 55
-1

RESOLVED: I had the same problem. post hack situation on other account, shared hosting and server NUKED. Luckily I had the backup files from one of the WP plugins but the main page didnt load, I could only go to 404 and from there to other pages but not main page, the error was wp-config eists...install...blah blah blah.....so I tried everything, multiple re-installs, changed the wp_prefix as per previous install on the fresh install and nothing helped, even ordered paid support from the backup plugin developer as I was sure that it fooked because I had Opencart also installed there but the backup was intended for WP only, my web developer also did something, perhaps removed the OC bits from DB, but thank god i managed to resolve it on my own(and justhost),. so I contacted the justhost for the SECOND TIME and they told me that the account is on VARNISH i.e. some sort of automated cache limit, so I told them to take it off and they wanted to know what have I done to reduce the LOAD to the server, so I told this and that and two seconds later everything loaded perfectly. took me about 20 hours to get main page loading, plus probably it will take 10 hours for fine tuning of the site. anyway if you contact jour host make sure you ask them if they are not blocking cahce as the first time I got in contact they couldnt help me.

  • 1
    Welcome to StackOverflow! While your answer may solve the problem, it's quite difficult to read, as there's a lot of content in the answer that is general banter and doesn't address the problem (`blah blah blah` etc.). In fact, all you need to say is that the problem is simply caching. In future, please try to keep answers as simple and straightforward as possible. Cheers :) – Obsidian Age Jan 24 '17 at 00:17
-1

I also meet with same error and Mr Pierre R is right its just a cache. Just clear your cache or check in private window. All fine.

Pardeep Pathania
  • 1,378
  • 2
  • 15
  • 23
-2

if someone have still this error.. goto->admin->setup.php (delete this file error will be solve) hope this will help.

Nitish
  • 1