-
Notifications
You must be signed in to change notification settings - Fork 32
Notes FAQ
Your config.ini.php file is very important. Do not delete this file once you've got Flex TV set up. If you're not updating via git, be sure to keep a backup of this file when extracting new files. Removing this will break account linking for Assistant/IFTTT/Alexa, and you'll need to re-link your account before it will work again.
To enable communicating with cast devices, which require the MDNS protocol, we need to enable php-sockets. If you're using docker, no worries, it's already done for you. If you're using Linux...there's a good chance this is done for you already as well. Windows users, especially those on Xampp...you will need to edit your php.ini file in order to enable the sockets module.
In Xampp, this file will be located at xampp\php\php.ini - location will vary for other webservers. You will need to change the following line and save the file:
For Windows, look for the line:
;extension=php_sockets.dll
and change it to (delete the semicolon):
extension=php_sockets.dll
For Linux, look for the line:
;extension = sockets.so
and change it to (delete the semicolon):
extension = sockets.so
Once saved, restart your webserver, and bask in the joy that is php-sockets.
Please refer to the Networking Guide for more information.