Skip to content
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

Drupal 9 composer install console is not able to pick the correct path through autoloader vendor/bin/drupal #4312

Open
ayappans opened this issue Jul 15, 2021 · 2 comments

Comments

@ayappans
Copy link

ayappans commented Jul 15, 2021

Drupal 9 composer install console is not able to pick the correct path through autoloader vendor/bin/drupal

Problem/Motivation

When I install Drupal console using composer, it installs successfully and but when you execute it it throw the following error.
Warning: require(/opt/drupal/vendor/drupal/console/bindrupal.php): Failed to open stream: No such file or directory in /opt/drupal/vendor/bin/drupal(21) : eval()'d code on line 3

Fatal error: Uncaught Error: Failed opening required '/opt/drupal/vendor/drupal/console/bindrupal.php' (include_path='.:/usr/local/lib/php') in /opt/drupal/vendor/bin/drupal(21) : eval()'d code:3
Stack trace:
#0 /opt/drupal/vendor/bin/drupal(21): eval()
#1 {main}
thrown in /opt/drupal/vendor/bin/drupal(21) : eval()'d code on line 3
Details to include:

  • Why are we doing this? Above all, a summary should explain why a change is needed, in a few short sentences.

Steps

  1. composer create-project drupal/recommended-project .
    2 composer require drupal/console:~1.0 --prefer-dist --optimize-autoloader
  2. drupal
    it throws the above error.
    I solved this problem by changing the following code in vendor/console/bin/drupal.php
#!/usr/bin/env php
<?php
require __DIR__. '/drupal.php';

The code the drupal binary starts working.
This require DIR is existing other composer modules. Not sure why it is not there.
Could you please update this?

@ayappans ayappans changed the title Drupal 9 composer install console is not able to pick the correct through autoloader vendor/bin/drupal Drupal 9 composer install console is not able to pick the correct path through autoloader vendor/bin/drupal Jul 15, 2021
@errauch
Copy link

errauch commented Sep 30, 2021

I also have this problem on Windows 10 with PHP 7.4

@ayappans
Copy link
Author

ayappans commented Oct 1, 2021

Please make the above changes it will solve the problem

kevncobb added a commit to kevncobb/lime-ud9 that referenced this issue Feb 8, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants