-
-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
Snipeit 8.0.0 installation throwing Undefined constant "Symfony\Component\Console\Helper\STDIN" #16331
Comments
Well that's a new one. I can't currently reproduce it, but we do use Alma for (most of) our hosted servers. If you add the following to your index.php file in the public directory, does that work? if(! defined('STDIN')) define('STDIN', fopen("php://stdin","r")); Some related things I've found, just for reference:
It looks like running artisan with the
|
I think the So we never had to say So I think we can add the flag: |
…raction Fixes #16331 - Don't make passport:install command require user input
Hello @uberbrady , The fix works fine . I have tested it. But it isn't added to SnipeIT 8.0.1 release zip https://github.com/snipe/snipe-it/archive/refs/tags/v8.0.1.zip and got same error on installation. It's on master branch bce2007 Any ETA for the same ? |
It should be in 8.0.2 |
Thanks 👍 . Checked with 8.0.2 and works fine now. Regards. |
Hello,
I was in the process of manual installation of SnipeIT on AlmaLinux release 8.10 with
PHP 8.2, MYSQL 5.7, Apache 2.4 .
I used the following steps :
curl -sS https://getcomposer.org/installer | php
php composer.phar install --no-dev
inside the project directory.php artisan key:generate
to generate APP_KEY in .env file.php artisan migrate
to populate db tables.On refreshing the page i get 'Your database tables have been created' and able to proceed further.
Could you please replicate this at your end ?.
The text was updated successfully, but these errors were encountered: