How to keep your Senddera installation up to date with the latest features and security fixes.
Always perform a full backup of your database and files before attempting an upgrade. While we strive for seamless updates, server-specific configurations can occasionally cause issues.
If you used the automated installer, you can upgrade using the same script:
curl -sS https://get.senddera.com/upgrade | bash
If you installed Senddera manually, follow these steps to upgrade to the latest version:
If you are using Git:
git pull origin main
If you are using a source bundle, download the latest version and overwrite your existing files (excluding your .env file and the storage directory).
composer install --no-dev --optimize-autoloader
php artisan migrate --force
php artisan optimize:clear
If you are using queue workers (e.g., via Supervisor), make sure to restart them to load the new code:
sudo supervisorctl restart all