Linux Wordpress não pode escrever o arquivo wp-config

6

Eu instalei a versão mais recente do Apache2 / PHP / MYSQL no meu PC.

No diretório /src/www/htdocs , criei um diretório wordpress com todos os arquivos wordpress.

Então, quando tentei criar o arquivo wp-config através da interface web, recebi este erro:

Sorry, but I can't write the 'wp-config.php' file.

Eu tentei este comando para alterar o grupo de /src/www/htdocs/wordpress

chown -R root:root /srv/www/htdocs/wordpress

Mas não estava funcionando. Depois de alguma pesquisa, vi muitas pessoas dizendo para mudar o grupo para www-data , mas não vejo www-data usando este comando:

cut -d: -f1 /etc/group

Alguém sabe o que estou fazendo errado?

    
por seb 25.11.2013 / 21:49

4 respostas

4

Se wp-config.php ainda não existir, use:

cp wp-config-sample.php wp-config.php

O grupo que o apache usa está em um arquivo de configuração do Apache. Aqui está como eu encontro no OS X. para mim, o grupo é _www :

grep ^Group /etc/apache2/httpd.conf

Existem 3 grupos de permissões que o Unix / Linux usa - user , group , others . Eu estou supondo que você vai querer permanecer o user que possui o arquivo. O mais fácil é conceder permissão de gravação aos group e others . Para fazer isso, use:

 chmod go+w wp-config.php
    
por 28.11.2013 / 08:43
2

Basta alterar o próprio da pasta da raiz para o usuário atual.

sudo chown -R yourcurrentuser:currentgroup /srv/www/htdocs/wordpress
    
por 06.11.2016 / 01:47
2

Primeiro, descubra qual grupo o daemon do Apache está usando atualmente:

$ cat /etc/apache2/apache2.conf | grep ^Group -B 2
# These need to be set in /etc/apache2/envvars
User ${APACHE_RUN_USER}
Group ${APACHE_RUN_GROUP}

OK. Isso significa que o grupo é armazenado na variável APACHE_RUN_GROUP :

$ echo ${APACHE_RUN_GROUP}

Essa variável não está definida no ambiente atual. Por quê? Eu realmente não sei. Mas isso não importa, porque o comentário no arquivo de configuração do Apache nos aponta para o arquivo onde essas variáveis são definidas:

$ cat /etc/apache2/envvars | grep GROUP
export APACHE_RUN_GROUP=www-data

Portanto, no meu caso, o grupo em que o Apache está sendo executado é www-data . Com essa informação, agora mude o grupo do diretório do WordPress. No seu caso:

sudo chgrp -R www-data /src/www/htdocs

O sinalizador -R torna recursivo. Et voilà!

    
por 11.04.2017 / 15:42
0

Crie manualmente o arquivo wp-config.php e passe o código que se parece com isso e instale novamente o mesmo que funcionará.

<?php
/**
 * The base configuration for WordPress
 *
 * The wp-config.php creation script uses this file during the
 * installation. You don't have to use the web site, you can
 * copy this file to "wp-config.php" and fill in the values.
 *
 * This file contains the following configurations:
 *
 * * MySQL settings
 * * Secret keys
 * * Database table prefix
 * * ABSPATH
 *
 * @link https://codex.wordpress.org/Editing_wp-config.php
 *
 * @package WordPress
 */

// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'landdb');

/** MySQL database username */
define('DB_USER', 'root');

/** MySQL database password */
define('DB_PASSWORD', '');

/** MySQL hostname */
define('DB_HOST', 'localhost');

/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8mb4');

/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');

/**#@+
 * Authentication Unique Keys and Salts.
 *
 * Change these to different unique phrases!
 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
 * 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.
 *
 * @since 2.6.0
 */
define('AUTH_KEY',         '>-QGUoR0nVWO9 rl=XOk}/yn[sZf=[HcZk8@J6Icm/:p#z+4jmJF]n~6m2y?n,TV');
define('SECURE_AUTH_KEY',  '0Sq%,SJ5KP|]wvufKIfn0s4}.=Ln]UuPF8k<Zo]X{]7^4;VT5}q%UITl,!{7w2QM');
define('LOGGED_IN_KEY',    'A[sS*[{ksr}2!qf8G'=&3Z)=vOJGd%X|7k=49s9BZ7k|n7j_WhHPGw*SP.o{?W'#');
define('NONCE_KEY',        '71{xg#3i$Q)L aybW9KPvsRZ&PaV#[[Lc# # 6Q<Mk*7Pi6W(Qh't$^s>/S:aT>z');
define('AUTH_SALT',        'qa-S$)X)-C(&~:TPD~WQlX,q788*NBCN_:3jGmr@X|@iAOAZ'~igO3>)Z+L[xQQr');
define('SECURE_AUTH_SALT', 'mXE7Glb~H)O<GgB{XMJ.e|~=/t<z~mIQY.Dt=_b)IlUX=$qx@/]w<]bHt1?H(a7 ');
define('LOGGED_IN_SALT',   '=0T'7(nbT&n'%eOx0[fk%)v_ncoZf +Br&<Wi3N> Vy0XD/)w8?3xw2c9LOKlSR-');
define('NONCE_SALT',       'rvK~}( 5kjw4Wd<vgFLu5eCp%n03 e-&;5mL5J,aQ.M*RY{7n8GtoN}0aj-jzXC<');

/**#@-*/

/**
 * 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_';

/**
 * For developers: WordPress debugging mode.
 *
 * Change this to true to enable the display of notices during development.
 * It is strongly recommended that plugin and theme developers use WP_DEBUG
 * in their development environments.
 *
 * For information on other constants that can be used for debugging,
 * visit the Codex.
 *
 * @link https://codex.wordpress.org/Debugging_in_WordPress
 */
define('WP_DEBUG', false);

/* That's all, stop editing! Happy blogging. */

/** Absolute path to the WordPress directory. */
if ( !defined('ABSPATH') )
    define('ABSPATH', dirname(__FILE__) . '/');

/** Sets up WordPress vars and included files. */
require_once(ABSPATH . 'wp-settings.php');
    
por 24.05.2016 / 13:48