-
-
Notifications
You must be signed in to change notification settings - Fork 556
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
[console] 500 error on console installer page. #4262
Comments
As a (very ugly) temporary workaround, I could obtain a copy of the "drupal" executable from a team mate that already had its VM provisionned and I changed this task in ansible :
for:
I also disabled the "drupal console" self-update task a few lines below. |
I am also receiving a 500 Internal Server Error from https://drupalconsole.com/installer |
Yes, the drupal console team has to solve that issue. |
Where can I find this executable file to be downloaded from the link https://drupalconsole.com/installer? |
You can ask someone to provide you with the executable. |
We are working to solve this but in future versions this installer will be removed. Please use the |
For DrupalVM, see my workaround at #3233 (comment) |
Considering that the DC team is planning to remove this installer in future versions, creating a .bashrc alias or adding vendor/bin to path might be more future friendly workarounds. |
To fully install Drupal Console and add tasks:
- name: Require Drupal Console.
composer:
command: require
arguments: drupal/console:~1.0
working_dir: "/var/www/{{ project }}"
prefer_dist: yes
optimize_autoloader: yes
become: false
environment:
COMPOSER_PROCESS_TIMEOUT: 1200
COMPOSER_MEMORY_LIMIT: '-1'
- name: Add project's /vendor/bin to $PATH
lineinfile:
path: ~/.profile
line: 'PATH="$PATH:/var/www/{{ project }}/vendor/bin"'
state: present
become: false |
@dmouse 👋 So does this mean that the launcher itself is deprecated or soon to be deprecated? |
Hi, Drupal Console can't be installed on Drupal 8.8/8.9 using composer (look at #4251 and others), so at least the installer should be restored. Now there is no way to install it. |
Hi @dmouse Is there any particular reason the phar/launcher isn't attached to each Github release? That'd certainly avoid issues like this while reducing the stress on your servers. |
is any update about installer? i am still facing the same issue. any one can help me for installing drupal console on windows please |
Sounds like the problem is with the installer itself
Error: Server Error |
duplicated by #4263 |
Problem/Motivation
TASK [geerlingguy.drupal-console : Install Drupal Console.] ********************
fatal: [abcd]: FAILED! => {"changed": false, "dest": "/usr/local/bin/drupal", "elapsed": 1, "msg": "Request failed", "response": "HTTP Error 500: Internal Server Error", "status_code": 500, "url": "https://drupalconsole.com/installer"}
Details to include:
How to reproduce
Visit https://drupalconsole.com/installer.
OR
try to provision for DrupalVM.
The text was updated successfully, but these errors were encountered: