Error installing wordpress. Shows setup after installing

1

I have installed wordpress on a domain. I can enter the domain administration however when I enter my main domain the setup still appears when the page should appear:

Welcome to WordPress. Before getting started, we need some information on the database. You will need to know the following items before proceeding.

Is it necessary to make a correction? I mention that I am using nginx and php-fpm since I want to mount several domains with php, nodejs and angular

    
asked by pedro perez 20.03.2018 в 06:39
source

1 answer

0

You must check that the copy of the database is correct and without errors. Then go to the .htaccess file and check that there is no link, such as localhost. That is, if in .htacces this appears like this:

    # BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /carpeta/tudomino/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /carpeta/tudominio/index.php [L]
</IfModule>

It should be like this:

    # BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

It is also very important that your wp-config.php file is in the correct way with the domain name, server, user, etc.

Normally that is what fails to export a wordpress to a domain. Also make sure that all the files have been sent correctly by ftp.

    
answered by 20.03.2018 в 08:49