unable to activate Webinterface - need help

Ask a question about the usage of QLC+ with the Mac OSX operating system
Post Reply
diesessash
Posts: 14
Joined: Thu Dec 07, 2017 3:26 pm
Real Name: Sascha

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?
Attachments
screenshot 1
screenshot 1
screenshot 2
screenshot 2
User avatar
mcallegari
Posts: 4462
Joined: Sun Apr 12, 2015 9:09 am
Location: Italy
Real Name: Massimo Callegari
Contact:

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.
diesessash
Posts: 14
Joined: Thu Dec 07, 2017 3:26 pm
Real Name: Sascha

thanks man! It worked
Post Reply