I have a database and a server and I downloaded wordpress, but i dont know how to get it to work. I have looked up on many sites, and I found nothing, Im not sure what to do, anything help please?
WordPressPHP
Last Comment
Julian Hansen
8/22/2022 - Mon
pradeep kumar
first you need database - name / username / password for that. If that ready than.
1) In downloaded wordpress folder you get "wp-config-sample.php" just rename that "wp-config.php".
2) open wp-config.php and just change the following details with your database like "DB_NAME", "DB_USER", "DB_PASSWORD".
// ** MySQL settings - You can get this info from your web host ** ///** The name of the database for WordPress */define( 'DB_NAME', 'database_name_here' );/** MySQL database username */define( 'DB_USER', 'username_here' );/** MySQL database password */define( 'DB_PASSWORD', 'password_here' );/** MySQL hostname */define( 'DB_HOST', 'localhost' );
1) In downloaded wordpress folder you get "wp-config-sample.php" just rename that "wp-config.php".
2) open wp-config.php and just change the following details with your database like "DB_NAME", "DB_USER", "DB_PASSWORD".
Open in new window
After all these details wordpress admin panel will open where you can add your details. Thats it!
thanks