-
Notifications
You must be signed in to change notification settings - Fork 114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
php artisan world:install is failing silently #109
Comments
The rest of my application relies heavily on this package. @nnjeim, I’d really appreciate your help in resolving this as soon as possible, as I need to deploy the application to the server once the issue is fixed. |
@vishalmandora please try let me know if this works |
INFO Publishing [world] assets. Copying file [vendor/nnjeim/world/config/world.php] to [config/world.php] ........................................ DONE
INFO Running migrations. 2020_07_07_055656_create_countries_table ................................................................. 14.00ms DONE
INFO Seeding database. FAILED
INFO Seeding database. FAILED @nnjeim Here are the steps I’ve performed, but it’s still failing. |
Hi Vishal,
which version of the package are you using, i will be testing the same on my end.
… On 25 Feb 2025, at 17:43, Vishal Mandora ***@***.***> wrote:
vishalmandora
left a comment
(nnjeim/world#109)
php artisan vendor:publish --tag=world --force
INFO Publishing [world] assets.
Copying file [vendor/nnjeim/world/config/world.php] to [config/world.php] ........................................ DONE
Copying file [vendor/nnjeim/world/src/Database/Seeders/WorldSeeder.php] to [database/seeders/WorldSeeder.php] .... DONE
Copying directory [vendor/nnjeim/world/resources/lang] to [resources/lang/vendor/world] .......................... DONE
php artisan migrate
INFO Running migrations.
2020_07_07_055656_create_countries_table ................................................................. 14.00ms DONE
2020_07_07_055725_create_cities_table ..................................................................... 9.69ms DONE
2020_07_07_055746_create_timezones_table .................................................................. 9.33ms DONE
2021_10_19_071730_create_states_table ..................................................................... 9.12ms DONE
2021_10_23_082414_create_currencies_table ................................................................. 6.29ms DONE
2022_01_22_034939_create_languages_table .................................................................. 8.04ms DONE
php artisan db:seed --class=WorldSeeder
INFO Seeding database.
FAILED
php artisan world:install
Installing nnjeim/world...
INFO Seeding database.
FAILED
@nnjeim Here are the steps I’ve performed, but it’s still failing.
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you were mentioned.
<https://github.com/nnjeim> <#109 (comment)> <https://github.com/notifications/unsubscribe-auth/AS2ECXZXNVCKPIRGBLN3GXD2RSFQ7AVCNFSM6AAAAABXU7GOVWVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDMOBSGQYDGMBVGE>
vishalmandora
left a comment
(nnjeim/world#109)
<#109 (comment)>
php artisan vendor:publish --tag=world --force
INFO Publishing [world] assets.
Copying file [vendor/nnjeim/world/config/world.php] to [config/world.php] ........................................ DONE
Copying file [vendor/nnjeim/world/src/Database/Seeders/WorldSeeder.php] to [database/seeders/WorldSeeder.php] .... DONE
Copying directory [vendor/nnjeim/world/resources/lang] to [resources/lang/vendor/world] .......................... DONE
php artisan migrate
INFO Running migrations.
2020_07_07_055656_create_countries_table ................................................................. 14.00ms DONE
2020_07_07_055725_create_cities_table ..................................................................... 9.69ms DONE
2020_07_07_055746_create_timezones_table .................................................................. 9.33ms DONE
2021_10_19_071730_create_states_table ..................................................................... 9.12ms DONE
2021_10_23_082414_create_currencies_table ................................................................. 6.29ms DONE
2022_01_22_034939_create_languages_table .................................................................. 8.04ms DONE
php artisan db:seed --class=WorldSeeder
INFO Seeding database.
FAILED
php artisan world:install
Installing nnjeim/world...
INFO Seeding database.
FAILED
@nnjeim <https://github.com/nnjeim> Here are the steps I’ve performed, but it’s still failing.
—
Reply to this email directly, view it on GitHub <#109 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AS2ECXZXNVCKPIRGBLN3GXD2RSFQ7AVCNFSM6AAAAABXU7GOVWVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDMOBSGQYDGMBVGE>.
You are receiving this because you were mentioned.
|
@nnjeim I'm using ![]() ![]()
|
@nnjeim Any updates on this? |
Bug Report
Describe the Bug
The
php artisan world:install
command is not working, even though no errors are shown. It seems like the seeder is failing silently.Steps to Reproduce
Environment
composer require nnjeim/world
Reproduction Steps
Alternative Steps
Instead of
php artisan world:install
, I also tried manually running the following:But the seeder still does not populate the tables.
Expected Behavior
If the seeder runs successfully, the relevant database tables should contain the expected data.
Additional Context
This was working fine when I initially installed the package a few months ago. However, after running
composer update
to upgrade all dependencies to their latest versions, the issue started occurring.Any guidance on how to resolve this would be appreciated.
The text was updated successfully, but these errors were encountered: