-
Notifications
You must be signed in to change notification settings - Fork 38
Subscription command doesn't work #78
Comments
you can use phpmyadmin and modify the values yourself here is the two lines from the server.sh that tell you what you need to modify `$DOCKER_COMPOSE_COMMAND exec db sh -c "MYSQL_PWD=$MYSQL_ROOT_PASSWORD mysql $MYSQL_DATABASE -e $DOCKER_COMPOSE_COMMAND exec db sh -c "MYSQL_PWD=$MYSQL_ROOT_PASSWORD mysql $MYSQL_DATABASE -e |
I have the exact same issue. Fresh install, and I can't create an user... Any proper fix coming ? Edit : the "fix" from the first post doesn't work for me, on Debian 11. |
same problem on |
Hi, (@orifiginal fix) this is because the file uses bash syntax but is declared as shell (which points to bash for some sytems). The Pull request #103 fixes this issue and was the reason many people had issues with the file server. Changing the Shebang will work on all linux systems. |
Describe the bug
Running the command
./server.sh create-subscription EMAIL@ADDR
doesn't work. It gives the following error../server.sh: 85: [[: not found
I am using Ubuntu 22.04.
To Reproduce
Steps to reproduce the behavior:
Run the command
./server.sh create-subscription EMAIL@ADDR
Expected behavior
The subscription for the email account should be activated.
Additional context
I have realized that the solution is either to run the command as
bash ./server.sh create-subscription EMAIL@ADDR
or change the first line of the file from#!/bin/sh
to#!/bin/bash
This should be explained in the docs or a solution should be implemented that works across all Linux distributions and shells.
The text was updated successfully, but these errors were encountered: