从外部插件编辑wp-config.php

时间:2014-06-03 22:12:15

标签: wordpress ssl plugins

我需要一种方法来访问 Wordpress 中的 wp-config.php 文件,并添加一些值。

说实话,我想添加这个当前值。

define('FORCE_SSL_LOGIN', true);
define('FORCE_SSL_ADMIN', true);

但我想从我的插件中添加它们。是否有任何默认的Wordpress功能,或其他类似的功能。

事先谢谢。

1 个答案:

答案 0 :(得分:2)

插件Quick Cache在激活时添加define('WP_CACHE', true);,并在停用时将其删除。这是它的工作原理的简化版本。

激活时,它会将<?php替换为代码<?php define(etc)

function wp_config_put( $slash = '' ) {
    $config = file_get_contents (ABSPATH . "wp-config.php");
    $config = preg_replace ("/^([\r\n\t ]*)(\<\?)(php)?/i", "<?php define('WP_CACHE', true);", $config);
    file_put_contents (ABSPATH . $slash . "wp-config.php", $config);
}

if ( file_exists (ABSPATH . "wp-config.php") && is_writable (ABSPATH . "wp-config.php") ){
    wp_config_put();
}
else if (file_exists (dirname (ABSPATH) . "/wp-config.php") && is_writable (dirname (ABSPATH) . "/wp-config.php")){
    wp_config_put('/');
}
else { 
    add_warning('Error adding');
}

在停用时,它会使用不包含<?php的模式(如果我正确理解它)搜索其代码并将其删除:

function wp_config_delete( $slash = '' ) {
    $config = file_get_contents (ABSPATH . "wp-config.php");
    $config = preg_replace ("/( ?)(define)( ?)(\()( ?)(['\"])WP_CACHE(['\"])( ?)(,)( ?)(0|1|true|false)( ?)(\))( ?);/i", "", $config);
    file_put_contents (ABSPATH . $slash . "wp-config.php", $config);
}

if (file_exists (ABSPATH . "wp-config.php") && is_writable (ABSPATH . "wp-config.php")) {
    wp_config_delete();
}
else if (file_exists (dirname (ABSPATH) . "/wp-config.php") && is_writable (dirname (ABSPATH) . "/wp-config.php")) {
    wp_config_delete('/');
}
else if (file_exists (ABSPATH . "wp-config.php") && !is_writable (ABSPATH . "wp-config.php")) {
    add_warning('Error removing');
}
else if (file_exists (dirname (ABSPATH) . "/wp-config.php") && !is_writable (dirname (ABSPATH) . "/wp-config.php")) {
    add_warning('Error removing');
}
else {
    add_warning('Error removing');
}