Alright here are step by step instructions for getting t-zones to work on 2.0.. I'm really tired, so i'm going to make this short and sweet.
First make sure you can SSH to your phone... Youll need to install the ssh component in Cydia.
Now open a text editor and create a file named "proxy.pac" with the contents of:
Save that file.. then upload it to your phone in the directory: /private/var/preferences/
now... navigate to
/Library/Preferences/SystemConfiguration
download the preferences.plist file and modify it according to step 6 of: http://arashpayan.com/blog/index.php/2007/09/17/t-zones-aka-599-internet-access-on-the-iphone/
with the exception that the red code <string>file:///private/var/root/proxy.pac</string> ....
should be <string>file:///private/var/preferences/proxy.pac</string>
Finally upload it back to your phone...
Reboot and whala..
I hope this works for everyone!
First make sure you can SSH to your phone... Youll need to install the ssh component in Cydia.
Now open a text editor and create a file named "proxy.pac" with the contents of:
Code:
function FindProxyForURL(url, host)
{
if (isInNet(myIpAddress(), "10.0.0.0", "255.0.0.0"))
return "PROXY 216.155.165.50:8080";
else
return "DIRECT";
}
Save that file.. then upload it to your phone in the directory: /private/var/preferences/
now... navigate to
/Library/Preferences/SystemConfiguration
download the preferences.plist file and modify it according to step 6 of: http://arashpayan.com/blog/index.php/2007/09/17/t-zones-aka-599-internet-access-on-the-iphone/
with the exception that the red code <string>file:///private/var/root/proxy.pac</string> ....
should be <string>file:///private/var/preferences/proxy.pac</string>
Finally upload it back to your phone...
Reboot and whala..
I hope this works for everyone!