· 7 years ago · May 28, 2018, 05:04 AM
1WordPress
2
3Sorry, but I can’t write the wp-config.php file.
4
5You can create the wp-config.php file manually and paste the following text into it.
6
7
8<?php
9/**
10 * The base configuration for WordPress
11 *
12 * The wp-config.php creation script uses this file during the
13 * installation. You don't have to use the web site, you can
14 * copy this file to "wp-config.php" and fill in the values.
15 *
16 * This file contains the following configurations:
17 *
18 * * MySQL settings
19 * * Secret keys
20 * * Database table prefix
21 * * ABSPATH
22 *
23 * @link https://codex.wordpress.org/Editing_wp-config.php
24 *
25 * @package WordPress
26 */
27
28// ** MySQL settings - You can get this info from your web host ** //
29/** The name of the database for WordPress */
30define('DB_NAME', 'test');
31
32/** MySQL database username */
33define('DB_USER', 'B06902093');
34
35/** MySQL database password */
36define('DB_PASSWORD', 'nasa');
37
38/** MySQL hostname */
39define('DB_HOST', 'localhost');
40
41/** Database Charset to use in creating database tables. */
42define('DB_CHARSET', 'utf8mb4');
43
44/** The Database Collate type. Don't change this if in doubt. */
45define('DB_COLLATE', '');
46
47/**#@+
48 * Authentication Unique Keys and Salts.
49 *
50 * Change these to different unique phrases!
51 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
52 * You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again.
53 *
54 * @since 2.6.0
55 */
56define('AUTH_KEY', '8~90#;F.9< *F?o>yoK%w%do3&j+$yM|xY1]t+EFdR^)#oW|},ycM[c`1`9n?aDJ');
57define('SECURE_AUTH_KEY', ',^1/0S0!8+d1hM0N=v^Jw5s>lJ-^^1!W7Ryv|dyyS:6g&GO64]$XZ.hQ7BME`$~;');
58define('LOGGED_IN_KEY', 'J@,U<i7P8Y,Vi}Kh2YX*tx!p:Ey+w*bL+-u1ntK5C6c`^Ts6O6xbSn:Enn!ol!uZ');
59define('NONCE_KEY', 'OOx&BupIkC/O:l=(D=qTULf0+>8}^PPXW&hRkLsvAR{iz_c4&Cqo@}RH}Bq>vFgr');
60define('AUTH_SALT', 'yKbjI Z)B?7)bPG2R|?gNBb1ZsD$#)2B@YpSp_HyrvI?lL4E/`7k}Cd:sXx-SU4#');
61define('SECURE_AUTH_SALT', 'A$7Ig1Ry@[IgcpAgS$@3xmzQ> L+Qr[:.CH*`~f !U)>ldh0X2Ed;Y&HkVtKO&We');
62define('LOGGED_IN_SALT', 'hG+G=flP[ KPej0)^/fGK>]QDTe(]E[5X5Td-s1n&{J@V0%6P3v:Sj_:#3-KmjRA');
63define('NONCE_SALT', '1FjEoEt^d0xC6za%D8)=D4&dI6kpiuV2~(`n,vP+}A1e>#8hS;@}QL[hm*-{?OUu');
64
65/**#@-*/
66
67/**
68 * WordPress Database Table prefix.
69 *
70 * You can have multiple installations in one database if you give each
71 * a unique prefix. Only numbers, letters, and underscores please!
72 */
73$table_prefix = 'wp_';
74
75/**
76 * For developers: WordPress debugging mode.
77 *
78 * Change this to true to enable the display of notices during development.
79 * It is strongly recommended that plugin and theme developers use WP_DEBUG
80 * in their development environments.
81 *
82 * For information on other constants that can be used for debugging,
83 * visit the Codex.
84 *
85 * @link https://codex.wordpress.org/Debugging_in_WordPress
86 */
87define('WP_DEBUG', false);
88
89/* That's all, stop editing! Happy blogging. */
90
91/** Absolute path to the WordPress directory. */
92if ( !defined('ABSPATH') )
93 define('ABSPATH', dirname(__FILE__) . '/');
94
95/** Sets up WordPress vars and included files. */
96require_once(ABSPATH . 'wp-settings.php');
97
98After you’ve done that, click “Run the installation.â€
99
100Run the installation