常量WP_CRON_LOCK_TIMEOUT已在/htdocs/wp-config.php中定义

时间:2018-03-15 作者:J.BizMai

我遇到以下PHP错误:

注意:常量WP_CRON_LOCK_TIMEOUT 已在/htdocs/wp config中定义。php在线195

我不明白,因为当我用这个词在wordpress项目中搜索时WP_CRON_LOCK_TIMEOUT 我得到的结果是:

enter image description here

PHP如何说WP_CRON_LOCK_TIMEOUT 如果中的第二个代码行default-constants.php 被如下条件包裹:

if ( !defined( \'WP_CRON_LOCK_TIMEOUT\' ) )
    define(\'WP_CRON_LOCK_TIMEOUT\', 60);  // In seconds
注意:我在谷歌上搜索过,很多网站的描述中都出现了这个错误,所以这是一个常见的错误

1 个回复
SO网友:Jarod Thornton

wp配置中的配置。php应该放在靠近底部的注释上方,其内容如下:That\'s all, stop editing! Happy Publishing.

Editing wp-config.php

wp config示例的内容。php文件的顺序非常明确。顺序很重要。如果您已经有wp配置。php文件,重新排列文件内容可能会在您的博客上产生错误。

下面是靠近底部的几行:

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

/** 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\' );
我在这些行的上方添加了自己的配置:
define( \'WP_CRON_LOCK_TIMEOUT\', 120   ); 
define( \'AUTOSAVE_INTERVAL\',    300   );
define( \'WP_POST_REVISIONS\',    5     );
define( \'EMPTY_TRASH_DAYS\',     7     );
define( \'WP_AUTO_UPDATE_CORE\',  true  );

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

/** 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\' );
相应地添加配置,这些注意事项应该得到解决。

结束

相关推荐

can't get errors

我正在网上直播一个主题。我的网站不再出现错误。我不知道发生了什么事。页面仅在错误所在的位置结束。我只是在页面中添加了一个函数。php文件还不存在,应该有一个错误。我试过很多东西。我也没有看到错误日志。define(\'WP_DEBUG\', true); if (WP_DEBUG) { define(\'WP_DEBUG_LOG\', true); define(\'WP_DEBUG_DISPLAY\', true); @ini_set(\'disp