Quick Actions
Quick Actions in the user panel automatically detect your project type and offer relevant commands that you can run with a single click. No need to connect via SSH β everything can be done directly from the browser.
Automatic project detection
The system scans your hosting's root directory looking for characteristic files:
composer.jsonβ PHP/Composer projectartisanβ Laravel frameworkbin/consoleβ Symfony frameworkpackage.jsonβ Node.js projectwp-config.phpβ WordPress
Available commands by framework
Laravel
composer installβ install dependenciesphp artisan migrateβ run database migrationsphp artisan cache:clearβ clear cachephp artisan optimizeβ optimize the applicationphp artisan key:generateβ generate application keyphp artisan storage:linkβ create storage symlink- Custom artisan commands with arguments
Node.js
npm install/npm ciβ install packagesnpm run build/npm run dev/npm run prodβ build scriptsyarn install/yarn buildβ Yarn alternative
WordPress
wp core updateβ update WordPress corewp plugin update --allβ update all pluginswp cache flushβ flush cache
Symfony
bin/console cache:clearβ clear cachebin/console cache:warmupβ warm up cache
Composer
composer install/composer updateβ manage dependenciescomposer dump-autoloadβ regenerate autoloader
Security measures
Dangerous commands (e.g., artisan migrate:fresh) require entering a verification code before execution.
Blocked commands β the following commands are blocked for security reasons:
tinker,serve,queue:work,horizonβ interactive or long-running processestest,phpunitβ testing commandsmake:*β code generators
All commands run as the hosting user inside the Docker container with timeout limits.
Fix Permissions
The Fix Permissions and Fix Storage buttons provide quick fixes for common file and folder permission issues.
Was this article helpful?
Your feedback helps us improve our documentation