Jump to content


hetster

Member Since 22 Dec 2016
Offline Last Active 22 Dec 2016 11:11
-----

Posts I've Made

In Topic: IPTV Player - development thread

22 December 2016 - 01:15

just a quick one.. is it possible to change the host address on 123movies? it appears some UK isps's have banned 123movies.to & 123movies.ru but 123movies.is is fine..i edited the host123moviesto.pyo and changed all the .to, to .is and rebooted and it still 123movies just says all / all /all never shows anything anymore.

"

Access to the websites listed on this page has been blocked pursuant to orders of the high court.

More information can be found at www.ukispcourtorders.co.uk"

 

looking at the code i see 3 different server url's. is there a way to change between them? i have currently set main url to .is but still has the same all / all / all /all effect. heres the code with my modified main url.

def selectDomain(self):
        for domain in ['http://123movies.to/' 'http://123movies.ru/' 'http://123movies.is/']:
            sts, data = self.getPage(domain)
            if sts and 'genre/action/' in data:
                self.MAIN_URL = domain
                break

        if self.MAIN_URL == None:
            self.MAIN_URL = 'http://123movies.is/'

thanks
Hetster