We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in https://github.com/wecodemore/wp-composer-config/blob/master/ci/.env.example#L31:
WP_CONTENT_DIR={$ABSPATH}/wp-content
the {$ABSPATH} is not expanding for me, not sure how to properly handle this, so I'm hardcoding the path to wp-content dir as a workaround
{$ABSPATH}
wp-content
The text was updated successfully, but these errors were encountered:
Try the following:
# Paths & URls DOMAIN=example.dev # Admin: WP_SITEURL=http://{$DOMAIN}/wp # Public: WP_HOME=http://{$DOMAIN} WP_CONTENT_DIR=/var/www/wp-content WP_CONTENT_URL=http://{$DOMAIN}/wp-content WP_PLUGIN_DIR={$WP_CONTENT_DIR}/plugins WP_PLUGIN_URL={$WP_CONTENT_URL}/plugins WPMU_PLUGIN_DIR={$WP_CONTENT_DIR}/mu-plugins WPMU_PLUGIN_URL={$WP_CONTENT_URL}/mu-plugins WP_TEMP_DIR={$WP_CONTENT_DIR}/tmp
and please check if ABSPATH is defined (at the beginning of your wp-config.php file).
ABSPATH
wp-config.php
Sorry, something went wrong.
No branches or pull requests
in https://github.com/wecodemore/wp-composer-config/blob/master/ci/.env.example#L31:
WP_CONTENT_DIR={$ABSPATH}/wp-content
the
{$ABSPATH}
is not expanding for me,not sure how to properly handle this, so I'm hardcoding the path to
wp-content
dir as a workaroundThe text was updated successfully, but these errors were encountered: