Hi, I have tried to install drush via Composer on a LAMP 16.04, but I keep getting this error (and a couple more), when I try ‘drush status’:
PHP Fatal error: Uncaught ReflectionException: Class DOMDocument does not exist in /home/USER/.composer/vendor/consolidation/output-formatters/src/Transformations/DomToArraySimplifier.php:24
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Accepted Answer
OK, I’ve figured it out:
In order to get the installation of Composer, and subsequently Drush, to work, zip and unzip extensions needs to be installed:
$ apt-get update $ apt-get install zip unzip
Then it’s pretty plain sailing installing Composer. Make sure you have installed proper version of Curl first:
$ apt-get install curl php7-cli git
Then: $ curl -sS https://getcomposer.org/installer | sudo php – --install-dir=/usr/local/bin --filename=composer
And Drush:
$ composer global require drush/drush
Then use Composer to create your project. If you run into permission issues, then:
Add “www” group and add your user to this group: $ sudo groupadd www $ sudo usermod -a -G www [user]
logout/login
Set ownership and write permissions: $ sudo chown -R root:www /var/www $ sudo chmod 2775 /var/www $ find /var/www -type d -exec sudo chmod 2775 {} + $ find /var/www -type f -exec sudo chmod 0664 {} +
Also note, you cannot run Composer on the smallest server config. It’s fairly memory hungry, so min. 1GB is recommended.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.