Website Version Update
To update your website version for old buyers, please follow these steps:
- Step 1: Upload and Extract Update Files
- Re-download the updated code from CodeCanyon.
- Upload the
[project name]-web-update-file-[version-to-version]
files to your server in the expected directory. - Extract the zip file inside the
public_html
path. - Step 2: Execute Update Commands in Terminal
- After uploading and extracting the update files, proceed with the following commands in your terminal:






/path/to/your/project
with the actual path to your project directory.Update from v1.3.0 to v2.0.0:
composer update && composer dumpautoload && php artisan migrate
php artisan db:seed --class=Database\\Seeders\\V2_0_0\\PaymentGateWaySeeder
php artisan db:seed --class=Database\\Seeders\\V2_0_0\\LanguageSeeder
php artisan db:seed --class=Database\\Seeders\\V2_0_0\\WebVersionSeeder
Update from v2.0.0 to v3.0.0:
composer update && composer dumpautoload && php artisan migrate
php artisan db:seed --class=Database\Seeders\V3_0_0\PaymentGatewaySeeder
Update from v3.0.0 to v3.1.0:
composer update && composer dumpautoload && php artisan migrate
php artisan db:seed --class=Database\\Seeders\\V3_1_0\\PaymentGatewaySeeder
php artisan db:seed --class=Database\\Seeders\\UpdateFeatureSeeder
php artisan db:seed --class=Database\\Seeders\\V3_1_0\\UpdateCategoriesSeeder
Update from v3.1.0 to v3.1.1:
composer update && composer dumpautoload
php artisan db:seed --class=Database\\Seeders\\UpdateFeatureSeeder
Update from v3.1.1 to v3.2.0:
composer update && composer dumpautoload && php artisan migrate
php artisan db:seed --class=Database\\Seeders\\UpdateFeatureSeeder
php artisan optimize:clear
Conclusion: By following these steps and executing the provided commands, you can successfully update your website version for old buyers. Remember to configure the update files properly before executing the commands to ensure they work as intended. If you encounter any issues, double-check your configurations and seek assistance if needed.