Composer is not installed by default on our servers, but it is very easy to install it on your hosting account.
To do so, you must have SSH access to your account, which is available as an option with our PERSO and EXPERT packages and is included in our ULTIMATE packages. If you wish to activate SSH access on your account, simply send us an email at support@tizoo.com.
To install Composer, connect via SSH and run the following commands:mkdir bin
cd bin/
wget https://getcomposer.org/installer
php installer
rm installer
cd ..
echo 'alias composer="/usr/local/bin/php ~/bin/composer.phar"' >> .bashrc
The "composer" command is now available.
How do I install Composer on my hosting? Print
- 33
Was this answer helpful?
Related Articles
Which PHP modules are installed? To determine which PHP modules are loaded and possibly configure which modules you want to load... How to change the configuration of PHP? To change the settings of your PHP configuration you have two possibilities depending on your... How to change the maximum upload size? To modify a parameter of your PHP configuration you have two possibilities depending on your... How to modify magic_quotes_gpc? Warning: "magic_quotes_gpc" is a configuration parameter that applies to PHP versions 5.4 and... My site displays an "Internal Server Error", what should I do? For security reasons, our servers use suPHP which allows to execute PHP scripts with the rights...