1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

The Proxy Discussion Thread

Discussion in 'General Business' started by antman, Jul 14, 2007.

  1. newzone

    newzone Well-Known Member

    Messages:
    2,865
    Likes Received:
    52
    Best Answers:
    0
    Trophy Points:
    135
    Digital Goods:
    1
    #12041
    Yes it is, from 1 to 10 is between 8,5 - 9 from my location. Navigation is very easy, videos are loading fast.
     
    newzone, Nov 20, 2008 IP
  2. proxywhereabouts

    proxywhereabouts Notable Member

    Messages:
    4,027
    Likes Received:
    110
    Best Answers:
    0
    Trophy Points:
    200
    #12042
    I have problem.
    Can someone suggest me how to make the layout on www.surfree.info compatible with IE?
    If the layout is messed up, I can't release it yet for download. :(

    And by the way, anyone can test the speed of that site?

    Thanks/
     
    proxywhereabouts, Nov 20, 2008 IP
  3. shawnpm

    shawnpm Peon

    Messages:
    236
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #12043
    What do you set your file size limit to on your proxies and have you seen any difference in bookmarkers, income, etc? I have some of mine set at 1mb and some at 5mb. Overall B/W usage doesn't seem to vary much either way but I'm thinking about limiting it to 1 or 2mb file size on all.
     
    shawnpm, Nov 20, 2008 IP
  4. Dollar

    Dollar Active Member

    Messages:
    2,598
    Likes Received:
    82
    Best Answers:
    0
    Trophy Points:
    90
    #12044

    Good reason I ask is becuase it loads for me in like .8 seconds, :D well the server is dedicated and I have optimized it. It does get though a bit slow during 9am-10am which is the highest peak of traffic.

    My limit is like 30MB. or something around that and i use 2.5 Terabytes this month. I dont know if this effects people desire to use mine over someone elses.
     
    Dollar, Nov 20, 2008 IP
  5. Mr.Bill

    Mr.Bill Well-Known Member

    Messages:
    2,818
    Likes Received:
    134
    Best Answers:
    0
    Trophy Points:
    160
    #12045
    I run mine at 20mb this is to prevent most games and video torrents but still allows for some files and images and for youtube videos.
     
    Mr.Bill, Nov 20, 2008 IP
  6. Pal

    Pal Active Member

    Messages:
    524
    Likes Received:
    21
    Best Answers:
    0
    Trophy Points:
    60
    #12046
    What's wrong with canepmedia? I submitted my sites 2 weeks ago for them to approve and still waiting, also they don't answer e-mails. I think no one is behind this adnetwork. also do they pay by paypal or they still prefer checks?
     
    Pal, Nov 20, 2008 IP
  7. newzone

    newzone Well-Known Member

    Messages:
    2,865
    Likes Received:
    52
    Best Answers:
    0
    Trophy Points:
    135
    Digital Goods:
    1
    #12047
    The speed from 1 to 10 , right now around 5 - 6 from here, ( browsing speed ) first impression.
     
    newzone, Nov 20, 2008 IP
  8. chandan123

    chandan123 Prominent Member

    Messages:
    11,586
    Likes Received:
    578
    Best Answers:
    0
    Trophy Points:
    360
    #12048
    you guys got ssl from namecheap renewals :p

    are those good :confused: sorry never installed a ssl :eek:
     
    chandan123, Nov 20, 2008 IP
  9. proxywhereabouts

    proxywhereabouts Notable Member

    Messages:
    4,027
    Likes Received:
    110
    Best Answers:
    0
    Trophy Points:
    200
    #12049
    In case you want to show on your proxy its server load info, use these codes.

    
    <?php $load = exec(”uptime”); $load = split(”load average:”, $load); $load = split(”, “, $load[1]); $load = $load[0]; echo “Current Load: $load”;
    
    PHP:
    It will show you something like this
    0.04
    Code (markup):
    Or if you want to show more details, delete some lines.
    
    <?php $load = exec(”uptime”); echo “Current Load: $load”;
    
    PHP:
    It will show you
    03:55:48 up 49 days, 13:36, 0 users, load average: 0.04, 0.12, 0.10
    Code (markup):
     
    proxywhereabouts, Nov 20, 2008 IP
    Korrupt likes this.
  10. lightless

    lightless Notable Member

    Messages:
    3,850
    Likes Received:
    334
    Best Answers:
    0
    Trophy Points:
    230
    #12050
    You still need to buy dedicated ip add-on, for which you have to pay extra monthly charges to your host if you want it.

    I will try again soon and tell how it goes.
     
    lightless, Nov 20, 2008 IP
    chandan123 likes this.
  11. Mr.Bill

    Mr.Bill Well-Known Member

    Messages:
    2,818
    Likes Received:
    134
    Best Answers:
    0
    Trophy Points:
    160
    #12051
    Thank you proxywhereabouts neat tid bit of script How accurate is the load info its getting?

     
    Mr.Bill, Nov 20, 2008 IP
  12. proxywhereabouts

    proxywhereabouts Notable Member

    Messages:
    4,027
    Likes Received:
    110
    Best Answers:
    0
    Trophy Points:
    200
    #12052
    How accurate? It will show your server info. If your server load os 3.08, then it will show just that value without any modification.


    Or, if you want to show how many seconds your site/page generated, you can use this code.

    Put this on top of your page. Open a new <?php.
    
    <?php $m_time = explode(" ",microtime()); $m_time = $m_time[0] + $m_time[1]; $loadstart = $m_time; ?>
    
    PHP:

    Then, on the very bottom of your page, preferrably on your footer, put this code.

    
    <?php $m_time = explode(" ",microtime()); $m_time = $m_time[0] + $m_time[1]; $loadend = $m_time; $loadtotal = ($loadend - $loadstart); echo "<small><em>Generated page in ". round($loadtotal,3) ." seconds</em></small>"; ?>
    
    PHP:

    The result, look at http://www.clafy.com footer.
    It will show something like this.
    Processed in 0.013 sec
    Code (markup):
     
    proxywhereabouts, Nov 20, 2008 IP
    autox likes this.
  13. shaqattack

    shaqattack Guest

    Messages:
    6
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #12053
    Which ad networks are you guys using for your proxies?
     
    shaqattack, Nov 20, 2008 IP
  14. P2Host

    P2Host Guest

    Messages:
    217
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #12054
    adversale i use.

    also i have a question. can i have directorys with no link back please anyone.
     
    P2Host, Nov 20, 2008 IP
  15. MarTh-

    MarTh- Well-Known Member

    Messages:
    1,069
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    175
    #12055
    I'm setting up my first proxy tonight with the program phpproxy.
     
    MarTh-, Nov 20, 2008 IP
  16. mypoint

    mypoint Well-Known Member

    Messages:
    985
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    110
    #12056
    nice good luck
     
    mypoint, Nov 20, 2008 IP
  17. logylaps

    logylaps Active Member

    Messages:
    761
    Likes Received:
    25
    Best Answers:
    0
    Trophy Points:
    85
    #12057
    Make sure your host allows it or all your work will go to waste.
     
    logylaps, Nov 20, 2008 IP
  18. autox

    autox Peon

    Messages:
    220
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #12058
    Excellent tip, I am going to add it tonight to a now proxy....
     
    autox, Nov 20, 2008 IP
  19. mentos

    mentos Prominent Member

    Messages:
    15,280
    Likes Received:
    473
    Best Answers:
    0
    Trophy Points:
    330
    #12059
    Do you mean proxy topsite?
    There are only a few that not require link back and it not worth it
     
    mentos, Nov 20, 2008 IP
  20. vahsi000

    vahsi000 Well-Known Member

    Messages:
    706
    Likes Received:
    21
    Best Answers:
    0
    Trophy Points:
    140
    #12060
    Good tip logylaps, if you're unsure about whether your host allows proxies or not, you're best of contacting them... otherwise your money might go to waste!

    Same here, i think i'll make a plugin out of it and add it to my collection :D
     
    vahsi000, Nov 20, 2008 IP