Page 1 of 1

unable to activate Webinterface - need help

Posted: Sun Dec 10, 2017 2:07 am
by diesessash
Hey guys,
how can i activate the web interface on my mac.
I tried:
QLC+.app\Contents\MacOS\qlcplus --web

...its not working "command not found" see screenshot 1

also tried:
/Applications/QLC+.app/Contents/MacOS
qlcplus --web

..."command not found" see screenshot 2

What can i do?

Re: unable to activate Webinterface - need help

Posted: Sun Dec 10, 2017 10:32 am
by mcallegari
It's a trivial '*nix' knowledge problem.

From a terminal, you can invoke a binary with an absolute path, like this:

Code: Select all

/aaa/bbb/ccc/binary
However, if you 'cd' into the directory first, you need to specify the path from which you launch the binary:

Code: Select all

cd /aaa/bbb/ccc
./binary
So basically add './' before qlcplus.

Re: unable to activate Webinterface - need help

Posted: Sun Dec 10, 2017 11:10 pm
by diesessash
thanks man! It worked