Login/Register

WordPress Plugin and Theme Management

Server administrators using Installatron Plugin and Installatron Server benefit from advanced WordPress plugin and theme management capabilities.

How do I install WordPress plugins and themes?

WordPress plugins and themes can be added to a new or existing installation using the server command line or API. This functionality is supported by both Installatron Plugin and Installatron Server.

Commands:

./installatron --install
./installatron --edit

Optional arguments:

Example 1: Install and activate a specific WordPress plugin with a new installed application on the server:

/usr/local/installatron/installatron \
	--install \
	--application wordpress \
	--url https://mysite.com/blog \
	--install-plugin='w3-total-cache'

Example 2: Install and activate a set of WordPress plugins to an existing installed application on the server:

/usr/local/installatron/installatron \
	--edit \
	--id='0f1ef0131afc759f09e84c298a18ba75' \
	--install-plugin='w3-total-cache,wp-super-cache,hello'

How do I update WordPress plugins and themes?

Typically WordPress plugins and themes are automatically updated as new versions become available. In the event a plugin or theme must be force-updated, Installatron Plugin and Installatron Server enable server administrators to update WordPress plugins and themes to the latest version using the server command line or API.

Command:

./installatron --upgrade

Required arguments:

Optional arguments:

Example 1: Update a specific WordPress plugin for every installed application on the server:

/usr/local/installatron/installatron \
	--upgrade \
	--version=current \
	--id='*' \
	--plugin='w3-total-cache'

Example 2: Update a set of WordPress plugins for every installed application on the server:

/usr/local/installatron/installatron \
	--upgrade \
	--version=current \
	--id='*' \
	--plugin='w3-total-cache,wp-super-cache,hello'

Example 3: Update a WordPress plugin for a specific installed application:

/usr/local/installatron/installatron \
	--upgrade \
	--version=current \
	--id='0f1ef0131afc759f09e84c298a18ba75' \
	--plugin='hello'

Example 4: Update all installed WordPress plugins and themes for every installed application on the server:

/usr/local/installatron/installatron \
	--upgrade \
	--version=current \
	--id='*' \
	--plugin='*' \
	--theme='*'

© 2004 - 2023 Installatron LLC. All rights reserved. Privacy Policy.