samihassan
i can help.. i got mine working fine.
first on your phone go to Settings/General/Network/EDGE/
set your APN to wap.voicestream.com
leave user and pass blank
the copy this code into notepad/ text edit and save it as proxy.pac
Code:
function FindProxyForURL(url, host)
{
if (isInNet(myIpAddress(), "10.0.0.0", "255.0.0.0"))
return "PROXY 10.23.8.3:8080";
else
return "DIRECT";
} connect via SSH and save this on your iphone in "/private/var/root"
next you want to find "private/var/root/Library/Preferences/SystemConfiguration/preferences.plist"
on your iphone and copy it to your desktop.
make a backup, and then open the file and search in it until you see
Code:
key>DeviceName</key>
<string>ip1</string>
<key>Hardware</key>
<string>com.apple.CommCenter</string>
<key>Type</key>
<string>com.apple.CommCenter</string>
and right there you want to add this
Code:
<key>Proxies</key>
<dict>
<key>ProxyAutoConfigEnable</key>
<integer>1</integer>
<key>ProxyAutoConfigURLString</key>
<string>file:///private/var/root/proxy.pac</string>
</dict>
so the whole thing looks like this
Code:
<key>DeviceName</key>
<string>ip1</string>
<key>Hardware</key>
<string>com.apple.CommCenter</string>
<key>Type</key>
<string>com.apple.CommCenter</string>
</dict>
<key>Proxies</key>
<dict>
<key>ProxyAutoConfigEnable</key>
<integer>1</integer>
<key>ProxyAutoConfigURLString</key>
<string>file:///private/var/root/proxy.pac</string>
</dict>
<key>com.apple.CommCenter</key>
then save this back to where you got it "private/var/root/Library/Preferences/SystemConfiguration/preferences.plist"
now you should be able to connect to tzones!
any questions? pm me
and the whole thing is also
here
Bookmarks