How to update PostUno to the latest version
๐ Update Overview
Updating PostUno is a simple 3-step process:
1. Download
the latest version from CodeCanyon
2. Upload
the updater zip file to your server
3. Clear cache
using artisan command
โ ๏ธ Before You Update
1. Backup your database
- Export your database via phpMyAdmin or command line
2. Backup your files
- Download a copy of your current installation
3. Check the changelog
- Review what's new in the update
๐ฅ Download from CodeCanyon:
Access Your Downloads
1. Log in to your CodeCanyon account
2. Navigate to your Downloads page
3. Find PostUno in your purchased items
4. Click "Download" and select "All files & documentation"
After downloading, unzip the package. You will find:
postuno-package/
โโโ PostUno-Social-Media-Manager-vX.X.zip (Full installation)
โโโ postuno_updater_vX.X_to_vX.X.zip (Update package)
โโโ documentation/ (Documentation files)For updates, you only need the updater zip file:
postuno_updater_v1.1_to_v1.2.zip
The version numbers indicate: from_version โ to_version
๐ค Upload to Server
Upload the Update File
Upload the updater zip file to your project root directory (where your PostUno is installed):
Local Server:
XAMPP: C:\xampp\htdocs\postuno\
Valet: ~/Sites/postuno/
Live Server:
cPanel: public_html/ (or your PostUno directory)
VPS: /var/www/postuno/Option A: Using File Manager (cPanel)
Navigate to your PostUno directory in File Manager
Upload the postuno_updater_vX.X_to_vX.X.zip file
Right-click the zip file and select "Extract"
Confirm extraction to the current directory
Delete the zip file after extraction
Option B: Using Terminal (SSH/Command Line)
# Navigate to your PostUno directory
cd /path/to/postuno
# Extract the updater (replace with your actual filename)
unzip postuno_updater_v1.1_to_v1.2.zip -o
# Remove the zip file after extraction
rm postuno_updater_v1.1_to_v1.2.zipWhen prompted to overwrite existing files, select
"Yes to All"
to ensure all files are updated correctly.
๐งน Clear Cache
Run Artisan Commands:
After extracting the update files, clear the application cache to apply changes:
Via Terminal (SSH/Command Line):
# Navigate to your PostUno directory
cd /path/to/postuno
# Clear all caches
php artisan cache:clear
php artisan config:clear
php artisan view:clear
php artisan route:clear
# Or use this single command to clear everything
php artisan optimize:clearIf you don't have SSH access:
After clearing the cache:
Log in to your PostUno admin panel
Check the version number in the footer or settings
Verify that all features are working correctly
โ
Update Complete!
Your PostUno installation has been successfully updated. If you encounter any issues:
1. Check the Troubleshooting Guide
2. Contact Support for assistance
๐ง Common Update Issues - White Screen After Update
Solution: Clear all caches and check file permissions:
php artisan optimize:clear
chmod -R 755 storage bootstrap/cacheSolution: Regenerate the autoload files
composer dump-autoloadDatabase Migration Errors:
Solution: Run database migrations if required by the update
php artisan migrate