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.0.0 to v1.1.0:
php artisan db:seed --class=Database\\Seeders\\Update\\BasicSettingsSeeder
php artisan db:seed --class=Database\\Seeders\\Update\\AppSettingsSeeder
php artisan db:seed --class=Database\\Seeders\\Update\\PaymentGatewaySeeder
Update from v1.1.0 to v1.2.0:
composer update && composer dumpautoload && php artisan migrate
php artisan db:seed --class=Database\\Seeders\\Update\\BasicSettingsSeeder
php artisan db:seed --class=Database\\Seeders\\Update\\AppSettingsSeeder
php artisan db:seed --class=Database\\Seeders\\Update\\LiveExchangeRateSeeder
php artisan db:seed --class=Database\\Seeders\\Update\\LiveExchangeRateSeeder
php artisan db:seed --class=Database\\Seeders\\Update\\LanguageSeeder
php artisan o:c
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.