Add a directory to the PATH

Created on 22 January 2025, 2 months ago

Problem/Motivation

Drupal couldn't find composer in the PATH on a shared hosting server. So updates and project browsing didn't work.
The reason is that it uses getenv('PATH') to find the path, which returns the Apache server path (/usr/local/bin:/bin:/usr/bin in my case). On shared hosting I don't have permission to change server config or move composer to that path.

Steps to reproduce

Install Drupal CMS on a server where the path to the composer executable is not available in getenv('PATH')
Run the status report.
Composer not found message.

Proposed resolution

The "find" method in \vendor\symfony\process\ExecutableFinder.php has an optional "extra directories" variable.

I tried adding my composer path to the "find" method in \vendor\php-tuf\composer-stager\src\Internal\Finder\Service\ExecutableFinder.php as an extra directory and it solved my composer not found issues. Project browser, install/update and uninstall modules and applying a recipe on shared hosting all work.

If we could maybe have a optional config in the settings file for the path to composer and pass that value when trying to find the composer executable it would help. Or some other safe way of adding a directory to the PATH?

I'm creating this issue as the start of a discussion. I don't know what the best solution would be.

User interface changes

Data model changes

Release notes snippet

✨ Feature request
Status

Active

Component

General

Created by

πŸ‡¦πŸ‡ΊAustralia juxe

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @juxe
  • πŸ‡ΊπŸ‡ΈUnited States phenaproxima Massachusetts

    This already exists. Package Manager has a configuration object where you can set the explicit path to Composer: https://git.drupalcode.org/project/drupal/-/blob/11.x/core/modules/packa...

    So you could just do this: drush cset package_manager.settings executables.composer /path/to/composer

    Setting this value is probably not necessary in DDEV because I think Composer is available to the web server, but outside of DDEV I'm not sure there's much that Drupal CMS can do about this since it is completely server-specific.

    Leaving this open for now in case anyone has some idea about what we could do here, but I'm kinda tempted to call this a "won't fix".

  • πŸ‡¦πŸ‡ΊAustralia juxe

    Thanks phenaproxima. That command didn't work but I found there was some help text in the package_manager module and after installing the help module I could see how to add the config to my settings.

    So you're right, there is a config available and it works on shared hosting. Thanks.

  • πŸ‡ΊπŸ‡ΈUnited States phenaproxima Massachusetts

    Great! Closing this out, since everything works as designed here.

  • πŸ‡ΊπŸ‡ΈUnited States bigbaldy

    #2 only solves half of the problem. "drush cset package_manager.settings executables.composer /path/to/composer" works but on the hosting server (pair.com) I use the wrong PHP client version is used. There needs to be a way to also point to the proper php cli version. For PHP.cgi I can point to the proper version for Drupal but accessing composer though package_manager connects to the hosting server's default of PHP 7.4.33 and so far, I have not been able to find a way to force the connection to a valid version of PHP needed for the needed version of composer.

  • πŸ‡ΊπŸ‡ΈUnited States phenaproxima Massachusetts

    When it comes to the PHP interpreter, there's not a ton we can do about that, honestly, at least not in Drupal CMS. This probably would need to be fixed upstream in Package Manager (which is a core module).

    Moving to core's issue queue and retitling for that.

  • πŸ‡ΊπŸ‡ΈUnited States phenaproxima Massachusetts
  • πŸ‡³πŸ‡ΏNew Zealand quietone
  • πŸ‡ΊπŸ‡ΈUnited States bigbaldy

    Here is a workaround for FastCGI on a shared hosting server with ssh access.

    The challenge is that composer only looks for 'php' and there isn't a direct way to identify an alternatively named php and php.ini location.

    The following script can be placed in your local bin folder. Follow the instructions in the script and edit it for your environment:

    #!/bin/bash
    #
    # Run composer with the proper version of PHP and php.ini
    #
    # Place this script in your local bin directory and name it composer. Be sure to
    # set executable rights to the file (chmod u+w composer.)
    # Get composer.phar from getcomposer.org and copy it to your local bin directory.
    #
    # Since composer looks directly for the name 'php' you must also create a symlink in your
    # local bin folder: ln -s /usr/local/bin/php83 php (or wherever your version of php is located.)
    #
    # Create PATH necessary to run composer and anything else that many be needed. Be sure to include
    # the full path to your local bin directory as the first option.
    export PATH=[Full path to local bin directory]/bin:./vendor/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
    
    # Create the variable that defines the location of php.ini
    export PHPRC=[Full path to directory where php.ini is located] 
    
    # Start composer with everything from the command line.
    [Full path to your local bin directory]/composer.phar $*
    

    Add the following lines to your Drupal settings.ini file:

    $config['package_manager.settings']['executables']['composer'] = '[Full path to your local bin directory]/composer';
    $config['package_manager.settings']['additional_trusted_composer_plugins'] = [
      'wikimedia/composer-merge-plugin',
    ];
    $config['package_manager.settings']['include_unknown_files_in_project_root'] = TRUE;
    

    'additional_trusted_composer_plugins' is need for some of the CMS recipies.
    'include_unknown_files_in_project_root' is needed if you need to modify your environment using assets stored outside of Drupal CMS's root. In my case I need to modify .htaccess for FastCGI.

  • πŸ‡¬πŸ‡§United Kingdom londova

    The whole idea of ​​Drupal CMS was to make the installation process simple and accessible even to advanced users (non-coding experts).
    This is definitely a bug that needs to be fixed, otherwise Drupal CMS will become POINTLESS.

  • πŸ‡¬πŸ‡§United Kingdom londova
Production build 0.71.5 2024