dashboard
Installer
Welcome in Streamity.tv [1.0] Xtream installer
Toggle navigation
IMPORTANT: Streamity.tv player
requires
HTTP protocol (no HTTPS SSL).
The home,login, dashboard page can run on HTTP and/or HTTPS.
Installation complete!
Installation completed succesfully!
If you are facing error 500 try to increase php max_execution_time and memory_limit.
If you see "Warning and Notice" messages printed on your screen, disable "display_errors" or the player won't be visualized properly.
If your iptv runs on port different then 80 (ex. http://iptv.com:60444/) and you can't open the player, open the server's firewall 60444 port.
IMPORTANT!:
There are other few manually steps for completing the installation.
1. Open your database administration tool (ex. phpMyAdmin)
2. Create table for storing EPG. You can do that in two ways:
2.a Import "structure.sql" file (avaible in folder "installer")
2.b Execute this query:
DROP TABLE IF EXISTS epg_data;
CREATE TABLE `epg_data` (
`epg_id` varchar(70) NOT NULL,
`start` bigint(20) UNSIGNED NOT NULL,
`stop` bigint(20) UNSIGNED NOT NULL,
`title` text NOT NULL,
`descr` longtext NOT NULL,
`id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
ALTER TABLE `epg_data`
ADD PRIMARY KEY (`epg_id`,`id`),
ADD UNIQUE KEY `epg_id` (`epg_id`,`id`);
3. Click on this button and wait the message "Epg created".
Create EPG
4. That's all!
Optional: If you have access to crontab add one of these two:
1.a 0 */4 * * * /usr/bin/php /home/thtv/public_html/player/live/epgScraper.php &> /dev/null
1.b 0 */4 * * * wget http(s)://[WEBPLAYER URL]/player/live/epgScraper.php &> /dev/null
Go to Streamity.tv login page