I have 5.99 T-Zones 1.1.4 hack installed and working.
My comments:
YouTube doesn't work (so far) I use MxTube
Wiki2Touch doesn't work, as it uses the web server at localhost (127.0.0.1). I fixed this changing my proxy.pac file to:
function FindProxyForURL(url, host)
{
if (shExpMatch(host,"127.0.0.1")) {return "DIRECT";}
if (isInNet(myIpAddress(), "10.0.0.0", "255.0.0.0"))
return "PROXY 216.155.165.50:8080";
else
return "DIRECT";
}
|