eltorro Posted July 18, 2006 Share Posted July 18, 2006 could you convert this into a proxy server?see here. Regards, [indent]ElTorro[/indent][font="Book"] Decide, Commit, Achieve[/font]_ConfigIO.au3Language Translation --uses Google(tm) MsgBox Move XML wrapper UDF XML2TreeView Zip functionality Split your GUI Save Print ScreenZipPluginEdit In Place listviewSome of my scripts on Google code Link to comment Share on other sites More sharing options...
NELyon Posted July 30, 2006 Share Posted July 30, 2006 (edited) This topic is pretty old but me and my friend are having trouble. It works, but it doesen't (Let me explain): We are both running it, and have changed the index.htm file. This was working fine, so we came to my house, but when we tried it, it jsut came up as a blank page. We tried our network ip's, and a redirection service. These worked fine, on our own pc's, but on each others, it displayed nothing. So it will only work on our own computers. Any idea why? Edited July 30, 2006 by codemyster Link to comment Share on other sites More sharing options...
Helge Posted July 30, 2006 Share Posted July 30, 2006 This topic is pretty old but me and my friend are having trouble. It works, but it doesen't (Let me explain):We are both running it, and have changed the index.htm file. This was working fine, so we came to my house, but when we tried it, it jsut came up as a blank page. We tried our network ip's, and a redirection service. These worked fine, on our own pc's, but on each others, it displayed nothing. So it will only work on our own computers. Any idea why?Try replacing @IPAddress1 with _GetIP(), which gets your public IP. Link to comment Share on other sites More sharing options...
erifash Posted July 30, 2006 Author Share Posted July 30, 2006 @codemyster: Do you have a router? If so, set up port fowarding according to your router's manual and use your network IP. Are you behind a firewall? Make sure it isn't blocking the $PORT. My UDFs:_FilePrint() | _ProcessGetName() | _Degree() and _Radian()My Scripts:Drive Lock - Computer Lock Using a Flash DriveAU3Chat - Simple Multiuser TCP ChatroomStringChunk - Split a String Into Equal PartsAutoProxy - Custom Webserver Link to comment Share on other sites More sharing options...
ConsultingJoe Posted July 31, 2006 Share Posted July 31, 2006 Try replacing @IPAddress1 with _GetIP(), which gets your public IP.if you are behind a router you leave it as @IPAddress1 and port forward. check to see if @IPAddress is the correct IP that your router gave you (192.168.1.100) Check out ConsultingJoe.com Link to comment Share on other sites More sharing options...
NELyon Posted July 31, 2006 Share Posted July 31, 2006 can anyone tell me if this shows my page for them? codemyster.2ya.com that is my redirection address. it works on my own pc, but only my own pc. Link to comment Share on other sites More sharing options...
eltorro Posted July 31, 2006 Share Posted July 31, 2006 can anyone tell me if this shows my page for them?codemyster.2ya.comthat is my redirection address. it works on my own pc, but only my own pc.I am assuming that your are behind a router and using NAT as it appears that you have set it up to use your computers private ip address instead of your router ip.Go to whatismyip.org. or use _GetIp() That is you public address. This is the address that other pc's not in your network will contact you on. The confusing part is this. The auto proxy needs to listen to your pc's private ip address (run / cmd / ipconfig /all or @IPAddress1) What ever port you specify must be open in your firewall too. Your router needs to be configured to forward traffic it receives on that port to your pc's ip address and port You should assign your pc a static ip address because if it changes as is can with DHCP then port forwarding with the router will be broken.What it boils down to is: if your public ip is 123.456.789.123 then codemyster.2ya.com should reflect that.Now auto proxy is already set to listen on your pc private address. Make sure the ip address and port your listening on is the same one your router is forwarding to you (you did set a static ip didn't you?).If you have set everything up correctly then people can contact you on for example 123.456.789.123:8080 or codemyster.2ya.com:8080Hope this helps.eltorro Regards, [indent]ElTorro[/indent][font="Book"] Decide, Commit, Achieve[/font]_ConfigIO.au3Language Translation --uses Google(tm) MsgBox Move XML wrapper UDF XML2TreeView Zip functionality Split your GUI Save Print ScreenZipPluginEdit In Place listviewSome of my scripts on Google code Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now