| | |||||
| ||||||||
| Website Development Development concepts, scripts, sponsors and affiliate programs. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| Senior Member Join Date: Feb 2007 Location: Australia
Posts: 3,043
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | Proxies. Well proxies are a major thing on the internet. I'm personally just starting out and want to try earn afew bucks per day. Namepros doesn't really have any threads i've found that help out proxy owners/ newbies. I myself am a newbie aswell. I'm still learning alot but have picked up afew ideas and such to keep it alive. #1 Putting your words like Proxy/Bypass/Filter into a image so that it cannot be picked up if any schools have programs that read pages. (my school has this feature) I haven't got really anymore to add but i hope members can contribute. ![]() ????: NamePros.com http://www.namepros.com/website-development/352827-proxies.html People who are experienced with proxies or have any tips/tricks please post them here to help out others, I may Sticky this thread and reward NP$ to people who help out
__________________ Ex-NamePros Moderator. |
| |
| | #2 (permalink) |
| Senior Member Join Date: Jun 2006 Location: California USA
Posts: 2,406
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | All I can say.. is make you have a Dedicated Server if you plan on having multiple proxies.. and yes also.. DONT ever use the word Prox or Proxy in a domain.. i learned that the hard way hehe... |
| |
| | #3 (permalink) |
| Senior Member Join Date: Aug 2005 Location: East Yorkshire, England
Posts: 2,689
![]() ![]() ![]() ![]() ![]() ![]() ![]() | Make sure people can't link to things directly through the proxy - redirect users to the homepage first, or a hotlinking error page, or something. That will save you loads of bandwidth |
| |
| | #4 (permalink) |
| New Member Join Date: Jul 2007
Posts: 9
![]() | I'm a newbie at proxies too. I'm trying to learn as much as I can. I have a piece of advice. If you want to send messages with your proxy inside make sure you're careful of who you send it to, because some people might be the ones who filter out proxies. |
| |
| | #5 (permalink) |
| is on hiatus Join Date: May 2006
Posts: 2,449
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | Add a hotlink protection, offload to multiple VPS instead of a single dedicated server will help. Images instead of text helps prevent any filters. NEVER have the word proxy, unblock, filter in it.
__________________ Currently on hiatus. Back whenever. |
| |
| | #6 (permalink) |
| NamePros Member Join Date: Jun 2007
Posts: 52
![]() | Code: <script type="text/javascript"><!-- // This code was written by Tyler Akins and has been placed in the // public domain. It would be nice if you left this header intact. // Base64 code from Tyler Akins -- http://rumkin.com var keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="; function encode64(input) { var output = ""; var chr1, chr2, chr3; var enc1, enc2, enc3, enc4; var i = 0; do { chr1 = input.charCodeAt(i++); chr2 = input.charCodeAt(i++); chr3 = input.charCodeAt(i++); enc1 = chr1 >> 2; enc2 = ((chr1 & 3) << 4) | (chr2 >> 4); enc3 = ((chr2 & 15) << 2) | (chr3 >> 6); enc4 = chr3 & 63; if (isNaN(chr2)) { enc3 = enc4 = 64; } else if (isNaN(chr3)) { enc4 = 64; } output = output + keyStr.charAt(enc1) + keyStr.charAt(enc2) + keyStr.charAt(enc3) + keyStr.charAt(enc4); } while (i < input.length); return output; } function decode64(input) { var output = ""; var chr1, chr2, chr3; var enc1, enc2, enc3, enc4; var i = 0; // remove all characters that are not A-Z, a-z, 0-9, +, /, or = input = input.replace(/[^A-Za-z0-9\+\/\=]/g, ""); do { enc1 = keyStr.indexOf(input.charAt(i++)); enc2 = keyStr.indexOf(input.charAt(i++)); enc3 = keyStr.indexOf(input.charAt(i++)); enc4 = keyStr.indexOf(input.charAt(i++)); chr1 = (enc1 << 2) | (enc2 >> 4); chr2 = ((enc2 & 15) << 4) | (enc3 >> 2); chr3 = ((enc3 & 3) << 6) | enc4; output = output + String.fromCharCode(chr1); if (enc3 != 64) { output = output + String.fromCharCode(chr2); } if (enc4 != 64) { output = output + String.fromCharCode(chr3); } } while (i < input.length); return output; } //--></script> ????: NamePros.com http://www.namepros.com/showthread.php?t=352827 Either way filters won't pick it up, nor will it be blocked. One of my proxies (cakebite) uses AJAX to load the stuff with "proxy" in it afterwards, but it makes no difference I"ll do the base64 thing sooner or later????: NamePros.com http://www.namepros.com/showthread.php?t=352827 I chose base64 because PHP has it, another 2 javascript functions you can use are Code: // From http://scriptasylum.com/tutorials/encdec/encode-decode.html
var encN=1;
// DECODES AND UNESCAPES ALL TEXT.
function decodeTxt(s){
var s1=unescape(s.substr(0,s.length-1));
var t='';
for(i=0;i<s1.length;i++)t+=String.fromCharCode(s1.charCodeAt(i)-s.substr(s.length-1,1));
return unescape(t);
}
// ENCODES, IN UNICODE FORMAT, ALL TEXT AND THEN ESCAPES THE OUTPUT
function encodeTxt(s){
s=escape(s);
var ta=new Array();
for(i=0;i<s.length;i++)ta[i]=s.charCodeAt(i)+encN;
return ""+escape(eval("String.fromCharCode("+ta+")"))+encN;
}
__________________
Last edited by cheerio; 07-22-2007 at 03:19 PM.
|
| |
| | #7 (permalink) |
| Senior Member Join Date: May 2005 Location: Bay Area
Posts: 1,537
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | Here's some good advice: http://www.namepros.com/1313149-post6.html |
| |
| | #9 (permalink) |
| NamePros Regular Join Date: Jan 2007
Posts: 207
![]() ![]() | Keep proxy names short, meaning ful and tech related. Eg mine is surf7.info Hope it helped ![]() Someone ought to compile all of it into one page.. And I just might take the responsibility
__________________ If you liked my post.. Please consider giving me a Rep ++ :love:. I am having a pretty low Reputation:( :hehe: |
| |
| | THREAD STARTER #10 (permalink) | ||||
| Senior Member Join Date: Feb 2007 Location: Australia
Posts: 3,043
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
__________________ Ex-NamePros Moderator. | ||||
| |
| | #11 (permalink) |
| Senior Member Join Date: Oct 2006 Location: http://akshayjain.org
Posts: 2,817
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | 1. i would like to know some high paying keywords in this field 2. i know this is not related, but how to prevent DDOS attacks? i am getting one on my VPS and am deeply troubled by it my tip: rather than spending hundreds of hours making a single proxy, make hundreds of proxies (i have a network of about 60 proxies, all made in about two days ) |
| |
| | #12 (permalink) |
| NamePros Regular Join Date: Dec 2005 Location: Leics, England
Posts: 889
![]() ![]() ![]() ![]() | Also ALWAYS log people browsing. What I mean is set up a simple script so that it logs each address that's visited and the IP of the person visiting it. I also learned this the hard way... =/ *Eeek* Sleepless nights...
__________________ "Pretending that we live doesn't make us alive" - Serj Tankian & Iommi |
| |
| | #13 (permalink) | ||||
| NamePros Regular Join Date: Jul 2006 Location: Karachi
Posts: 794
![]() ![]() ![]() ![]() ![]() |
| ||||
| |
| | #14 (permalink) |
| NamePros Regular Join Date: Dec 2005 Location: Leics, England
Posts: 889
![]() ![]() ![]() ![]() | I know what it's called but it's not made default always. And they don't log your IP and the website you've visited through the proxy.
__________________ "Pretending that we live doesn't make us alive" - Serj Tankian & Iommi |
| |
| | #17 (permalink) |
| NamePros Member Join Date: Oct 2007
Posts: 36
![]() | This proxy thread seems to be at its infancy (compared to another forum I lurk on) which is great because we can shape is at we want. So how do you start a proxy and what are the essential steps to make some money? (familiar things to proxy admins but useful stuff for newbies) 1) Register a domain
????: NamePros.com http://www.namepros.com/showthread.php?t=352827 2) Register for an adsense account. If you don't have this then it will be much more difficult to monetize your proxy. The easiest way to get an account (if you don't already have one) is to start a blogspot blog and then apply for adsense using that as your main site. Then you can take the pub id and use it on your proxies. If you are banned from adsense there are a bunch of CPC alternatives, however they won't bring in as much 3) Get some hosting. This is a very important step. If you chose the wrong web host then you'll end up with a lot of frustration, not to mention loss of revenue (due to probable downtime). There are not many web hosts that offer proxy hosting due to the proxy business particularities (read this post I wrote for the reasons) but if you are just starting out with proxies then shared hosting is the best solution. You can get quality proxy hosting for not much (starting at $5 a month) from a few hosts. Shop around and ask for offers to match your needs. I suggest avoiding offers of the nature "$10 a year" etc. It's practically impossible for the host to make up for his costs and will probably dump you half way through the year 4) Get your proxy script
5) Upload your script and add your adsense codes 6) Enable hotlink prevention and block unwanted countries
This is a big chapter in proxies. My suggested methods are:
Once you've gained enough traffic (and maybe PR) you can increase your revenue by:
????: NamePros.com http://www.namepros.com/showthread.php?t=352827 I hope this helps you with some of the things you are struggling with right now. If you need any help or more info on the above let me know and I'll do whatever I can to help
__________________ Laziest Way to Flip Websites for a $200 Profit | Cheap Linux VPS starting at $9.99
Last edited by xpsave; 10-10-2007 at 01:40 AM.
|
| |
| | #19 (permalink) |
| NamePros Member Join Date: Oct 2007
Posts: 36
![]() | Zelune is not bad but there are not many free templates around to chose from. It's installation is a bit more difficult than other scripts (e.g phproxy, surrogafier) since it requires php5, curl, and has quite a few files to upload. On a different subject, I have a list of about 100 topsites that I collected form here and there. If anyone would like to have the list send me a PM.
__________________ Laziest Way to Flip Websites for a $200 Profit | Cheap Linux VPS starting at $9.99 |
| |
| | #20 (permalink) |
| NamePros Member Join Date: Oct 2007
Posts: 36
![]() | I have written a blog post on hotlink protection for phproxy, cgi-proxy and zelune proxy. I hope you find it useful
__________________ Laziest Way to Flip Websites for a $200 Profit | Cheap Linux VPS starting at $9.99 |
| |
| | #21 (permalink) |
| NamePros Regular Join Date: Aug 2003 Location: Texas
Posts: 385
![]() | Proxy Traffic I recently aquired www.FunkyProxy.com and I am finding that most of the traffic is Chinese. Adsense seems to convert some of the traffic, but until there is a good way to monetize the chinese traffic, I am stuck getting huge traffic and a relatively small conversion. |
| |
| | #22 (permalink) |
| Senior Member Join Date: Oct 2006 Location: http://akshayjain.org
Posts: 2,817
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | i just block all chinese traffic because of the fact that most of them do not know English and my adsense account is too precious for me to get banned like that just for a few cents of earnings |
| |
| | #24 (permalink) | ||||
| NamePros Member Join Date: Oct 2007
Posts: 36
![]() |
__________________ Laziest Way to Flip Websites for a $200 Profit | Cheap Linux VPS starting at $9.99 | ||||
| |
| | #25 (permalink) | ||||
| NamePros Member Join Date: Oct 2007 Location: Runaway Bay, Jamaica
Posts: 35
![]() |
????: NamePros.com http://www.namepros.com/showthread.php?t=352827 Thanks! Riley | ||||
| |