我有一个相对复杂的 laravel 项目,在其中我有一个 wordpress 安装,用于在与 composer 一起安装的一侧安装博客。
在我wp-config.php
的配置目录中,我使用了一个包含文件application.php
(用于组织目的)。我在文件中有各种define('XXX', 'config stuff');
类似的案例。当 'config stuff' 被硬编码时,该网站可以完美运行,但最近我试图使用 composer 安装的 dotenv 从我的 .env 中提取值 getenv()
require_once(LARAVEL_PATH . '/vendor/autoload.php');
$dotenv = new Dotenv\Dotenv(APP_ROOT_DIR);
$dotenv->load();
当我var_dump
我的getenv('example_env_constant')
时候,它给了我正确的值,绝对没问题。所以我开始在我的 application.php 文件中设置这些。
但是现在当我加载网站时,我得到了大量
Notice: Constant XXX_XXXX_XXX already defined in /path/to/application.php on line X
每人一份define('XXX', value);
还有一个
Cannot modify header information
在测试中,我发现我的wp-config.php
文件正在运行一次。但不知何故,我application.php
的运行两次。第一次运行来自我的包含调用,wp-config.php
因为它应该是。触发错误的第二次运行发生在wp-settings.php
第 326 行
do_action( 'plugins_loaded' );
我不知道这是怎么回事。
如果我从中删除 dotenv 代码application.php
并将其直接放入我wp-config.php
的行为中,则行为完全相同,wp-config.php
运行一次并application.php
运行两次。
现在,如果我删除application.php
并将所有代码放入wp-config.php
传统的 wp 配置中。然后我再次遇到完全相同的问题,它引用了已删除的文件......这当然表明此时存在缓存问题,尽管我不认为缓存是原始问题的原因。使用 wp cli 运行缓存刷新不起作用,因为它实际上设法application.php
在刷新时遇到相同的错误。没关系,无论如何缓存首先被禁用。这不是浏览器缓存问题,因为新的隐身 chrome 实例和硬刷新没有区别。
这是一篇长篇文章,对此感到抱歉,我希望我足够清楚。我很困惑这是如何发生的,任何调试帮助或提示都会很棒。也许我错过了一些非常明显的事情,因为似乎将 dotenv 用于我的 wp 配置以我以前从未见过的方式彻底破坏了一切。最坏的情况是最坏的情况,我将回到硬编码 wp-config 文件
更新:
我错误地删除了 application.php 文件而不是停止相关的错误。它停止了需要的错误,但我得到了其他错误。如果我只是删除 application.php 的内容,那么我没有区别。
大错特错,如果有人只是有任何调试建议,将不胜感激
文件:
公共/帮助建议/ wp-config.php
配置/应用程序.php
wordpress 安装在 public/help-advice/wp
非作曲家生成的 wp 文件位于 public/help-advice/app 或 public/help-advice
如果您不能使用 pastebin,请粘贴代码:
这是 config.php
<?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
*/
/*
* Caching
*/
define('WP_CACHE', true);
define('LARAVEL_PATH', dirname(__FILE__) . '/../..'); // Make sure this is pointed to same server
require_once(LARAVEL_PATH . '/vendor/autoload.php');
require_once(LARAVEL_PATH . '/config/application.php');
require_once(ABSPATH . 'wp-settings.php');
这是application.php
<?php
//This file pulls in data for WP and is included in the wp-config.php file within help-advice
/*
* Base paths
*/
define('APP_ROOT_DIR', dirname(__DIR__));
// $dotenv = new Dotenv\Dotenv(APP_ROOT_DIR);
// $dotenv->load();
// this one above works but causes this file to run twice causing errors, the one below errors
// if (file_exists(APP_ROOT_DIR . '/.env')) {
// Dotenv\Dotenv::load(APP_ROOT_DIR);
// }
define('APP_PUBLIC_DIR', APP_ROOT_DIR . '/public/help-advice');
define('APP_STORAGE_DIR', APP_ROOT_DIR . '/storage');
define('APP_LOG_DIR', APP_STORAGE_DIR . '/logs');
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'redacted');
/** MySQL database username */
define('DB_USER', 'redacted');
/** MySQL database password */
define('DB_PASSWORD', 'redacted');
/** MySQL hostname */
define('DB_HOST', '127.0.0.1');
/** 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', 'redacted');
define('SECURE_AUTH_KEY', 'redacted');
define('LOGGED_IN_KEY', 'redacted');
define('NONCE_KEY', 'redacted');
define('AUTH_SALT', 'redacted');
define('SECURE_AUTH_SALT', 'redacted');
define('LOGGED_IN_SALT', 'redacted');
define('NONCE_SALT', 'redacted');
/*
* Debugging/errors
*/
define('APP_DEBUG', (boolean) getenv('APP_DEBUG'));
// Always log errors
ini_set('log_errors', 1);
ini_set('error_log', APP_LOG_DIR . '/wp_debug.log');
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', false);
define('WP_DEBUG_DISPLAY', APP_DEBUG);
define('SCRIPT_DEBUG', APP_DEBUG);
/*
* URLs
*/
define('WP_SITEURL', 'http://' . $_SERVER['HTTP_HOST'].'/help-advice/wp');
define('WP_HOME', 'http://' . $_SERVER['HTTP_HOST'].'/help-advice');
/*
* Custom Content Directory (/public/help-advice/app)
*/
define('CONTENT_DIR', '/app');
define('WP_CONTENT_DIR', APP_PUBLIC_DIR . CONTENT_DIR);
define('WP_CONTENT_URL', WP_HOME . CONTENT_DIR);
//google analytics
define('GA_PROPERTY_ID',getenv('GA_PROPERTY_ID'));
/**#@-*/
/**
* 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_';
/* That's all, stop editing! Happy blogging. */
/** Absolute path to the WordPress directory. */
if ( !defined('ABSPATH') )
define('ABSPATH', dirname(__FILE__) . '/../public/help-advice/wp/');