| |

How to run the Laravel artisan command and npm command in the Plesk admin panel on cloud hosting?

Open your droplet console from your cloud hosting provider. I am using DigitalOcean

Now you can get $200 free credit for droplets. Get it Now!.

Go to your project directory in the console!

root@localhost:~# cd /var/www/vhosts/yourwebsite.com/httpdocs

PHP and NPM commands do not work in the root directory. So you need to specify the installation folder to run the PHP command.

PHP and Node are installed in the Plesk panel in the following folders.

/opt/plesk/

First, You need to check the version of PHP and Node. Run this command to see the versions folder.

For PHP

# ls /opt/plesk/php

For NPM

# ls /opt/plesk/node

Run the PHP command like this.

# /opt/plesk/php/7.4/bin/php artisan cache:clear

Run the NPM command like this.

# /opt/plesk/node/12/bin/npm run prod

Similar Posts

Leave a Reply

Your email address will not be published. Required fields are marked *