I've tried to get the QLC+ web interface activated a couple of times on my Mac using Terminal, but I'm getting "No Such File Or Directory" when I type in "QLC+.app\Contents\MacOS." The program is terrific... I'd like to run it via my tablet.
I renamed the file image "QLC+.DMG" (it previously had the version as part of the file name). Since my QLC+ program resides within my Applications folder, I've tried including the Applications directory within the command, still the same result. Assuming the image is "QLC+.dmg" residing within the Applications folder, can somebody please give me the exact terminal commands to get the web interface activated step by step? Thank you and happy holidays!
QLC+ Web Interface With Mac OSX 10.75
- mcallegari
- Posts: 4823
- Joined: Sun Apr 12, 2015 9:09 am
- Location: Italy
- Real Name: Massimo Callegari
- Contact:
"QLC+.app\Contents\MacOS" is a directory within the bundle.
You need also to invoke the actual QLC+ binary, like this:
You need also to invoke the actual QLC+ binary, like this:
Code: Select all
QLC+.app\Contents\MacOS\qlcplus --web
-
- Posts: 1331
- Joined: Mon Apr 13, 2015 7:05 am
- Location: Bratislava, Slovakia
- Real Name: Jano Svitok
- Contact:
Hi,
most probably you need to use forward slashes ('/') instead of backslashes ('\').
Jano
most probably you need to use forward slashes ('/') instead of backslashes ('\').
Jano
-
- Posts: 243
- Joined: Mon Apr 20, 2015 5:07 am
- Real Name: Mark Lohrey
Hi Tracy,
If you have installed QLC+ in your applications directory then use this terminal command:
/Applications/QLC+.app/Contents/MacOS/qlcplus -w
Otherwise, a neat way of specifying a file path in terminal is to drag and drop the location.
Right-click the QLC+ application and then choose 'show package contents' then navigate to >content > macOS and drag and drop the qlcplus application into new terminal shell. You can then add the -w.
You can now access the web interface at http://localhost:9999/ (localhost should work but it will depend on your hosts file. Sometimes they can get messed up. Use the ip of your mac otherwise.)
Cheers
Mark
If you have installed QLC+ in your applications directory then use this terminal command:
/Applications/QLC+.app/Contents/MacOS/qlcplus -w
Otherwise, a neat way of specifying a file path in terminal is to drag and drop the location.
Right-click the QLC+ application and then choose 'show package contents' then navigate to >content > macOS and drag and drop the qlcplus application into new terminal shell. You can then add the -w.
You can now access the web interface at http://localhost:9999/ (localhost should work but it will depend on your hosts file. Sometimes they can get messed up. Use the ip of your mac otherwise.)
Cheers
Mark
-
- Posts: 103
- Joined: Tue Apr 14, 2015 6:54 am
- Real Name:
Just seen this Thread and looking at the code... For Mac OS we can modify the Launcher, add an extra button "Launch with webaccess" and call "launchQLC(QApplication::arguments() << "--web"); ". i testet this and it works. Maybe we can add a Shortcut for windows user too
-
- Posts: 84
- Joined: Sat Jan 16, 2016 2:32 am
- Location: Usa
- Real Name: mgGagGD
- Contact:
Could you elaborate on this a bit. pleaseChris De Rock wrote: ↑Tue Apr 25, 2017 7:55 am Just seen this Thread and looking at the code... For Mac OS we can modify the Launcher, add an extra button "Launch with webaccess" and call "launchQLC(QApplication::arguments() << "--web"); ". i testet this and it works. Maybe we can add a Shortcut for windows user too