On a Ubuntu 20.04 Linode I have a Wordpress installation. I deploy the website using , a Capistrano deployment tool. When the website is deployed the folder structure is like this:
current
folder points to the actual release (virtual host points to this folder)current
there are:wordpress
folder with all the Wordpress core filescontent
folder which is wp-content
renamed and contains plugins, themes, uploadsOn my wp-config.php file are defined:
define('WP_CONTENT_URL', '');
define('WP_SITEURL','');
WP CLI is installed and it works with its own basic commands. The deployment is not a problem and it works using WP CLI commands.
The problem arises when I try to use WP CLI commands defined by plugins I have installed, like WP All Import. The error I get is:
Error: 'all-import' is not a registered wp command. See 'wp help' for available commands.
Running wp help
it doesn't list any plugin command. Instead, on my computer, it lists all the commands.
I guess is due to the different folder structure but I'm not able to find a solution. I need to be able to run for example wp all-import run ID
to run imports from the command line since they're way faster and I have 90k products to edit.
On a Ubuntu 20.04 Linode I have a Wordpress installation. I deploy the website using https://github.com/Mixd/wp-deploy, a Capistrano deployment tool. When the website is deployed the folder structure is like this:
current
folder points to the actual release (virtual host points to this folder)current
there are:wordpress
folder with all the Wordpress core filescontent
folder which is wp-content
renamed and contains plugins, themes, uploadsOn my wp-config.php file are defined:
define('WP_CONTENT_URL', 'https://website.com/content');
define('WP_SITEURL','https://website.com/wordpress');
WP CLI is installed and it works with its own basic commands. The deployment is not a problem and it works using WP CLI commands.
The problem arises when I try to use WP CLI commands defined by plugins I have installed, like WP All Import. The error I get is:
Error: 'all-import' is not a registered wp command. See 'wp help' for available commands.
Running wp help
it doesn't list any plugin command. Instead, on my computer, it lists all the commands.
I guess is due to the different folder structure but I'm not able to find a solution. I need to be able to run for example wp all-import run ID
to run imports from the command line since they're way faster and I have 90k products to edit.
Please see WP-CLI r2.0 release blog post , for normal use with all commands remove wp-cli/wp-cli
and require wp-cli/wp-cli-bundle
wp plugin path
give you? – vancoder Commented Nov 9, 2021 at 22:54current
,wordpress
, andcontent
it gives/plugins
path – Roberto Cinetto Commented Nov 10, 2021 at 2:13WP_CONTENT_DIR
constant inwp-config.php
as a absolute path without usingdirname(__FILE__)
or$_SERVER['DOCUMENT_ROOT']
. Is it a bad practice? Can this be a harm to the installation? – Roberto Cinetto Commented Nov 10, 2021 at 17:24