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_htmlpath. - Step 2: Execute Update Commands in Terminal
- After uploading and extracting the update files, proceed with the following commands in your terminal:
- Nginx Server Configuration (Important)
If you are using Nginx, make sure the Document Root (entry point) is correctly set.
Correct:
{project_path}/public






/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\\WebVersionSeederUpdate 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\PaymentGatewaySeederUpdate 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\\UpdateCategoriesSeederUpdate from v3.1.0 to v3.1.1:
composer update && composer dumpautoload
php artisan db:seed --class=Database\\Seeders\\UpdateFeatureSeederUpdate 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:clearUpdate from v3.3.0 to v3.4.0:
composer update && php artisan migrate
php artisan db:seed --class=Database\\Seeders\\Update\\UpdateFeatureSeeder
php artisan o:cUpdate from v3.4.0 to v3.5.0:
composer update && composer dumpautoload
php artisan migrate
php artisan db:seed --class=Database\\Seeders\\Update\\UpdateFeatureSeeder
php artisan storage:link
php artisan optimize:clearConclusion: 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.