Welcome, Guest
You have to register before you can post on our site.

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 8,991
» Latest member: douhua2233
» Forum threads: 138,592
» Forum posts: 157,854

Full Statistics

Online Users
There are currently 490 online users.
» 0 Member(s) | 490 Guest(s)

Latest Threads
Right VPS provider
Forum: Web Hosting
Last Post: mazepa
43 minutes ago
» Replies: 6
» Views: 91
Good Wordpress hosting pl...
Forum: Web Hosting
Last Post: mazepa
50 minutes ago
» Replies: 6
» Views: 82
Dedicated server for virt...
Forum: Web Hosting
Last Post: mazepa
2 hours ago
» Replies: 5
» Views: 99
How Colocation Centers Fr...
Forum: Web Hosting
Last Post: manoharparakh
9 hours ago
» Replies: 0
» Views: 16
How Colocation Centers Fr...
Forum: Domains For Sale - Fixed Price/Offer
Last Post: manoharparakh
10 hours ago
» Replies: 0
» Views: 20
Super Fast Forex VPS - Al...
Forum: Advertise and Hire
Last Post: Loosionym
Today, 06:28 AM
» Replies: 0
» Views: 38
Get SwissLayer Dedicated ...
Forum: Advertise and Hire
Last Post: swisslayer
Today, 05:41 AM
» Replies: 0
» Views: 9
Stable server to sign up ...
Forum: Web Hosting
Last Post: mazepa
04-30-2024, 07:22 PM
» Replies: 2
» Views: 77
Need a solid VPS Host
Forum: Web Hosting
Last Post: mazepa
04-30-2024, 02:12 PM
» Replies: 6
» Views: 149
[50% OFF]: VPS Hosting Wi...
Forum: Advertise and Hire
Last Post: MilesWeb
04-30-2024, 10:28 AM
» Replies: 0
» Views: 67

 
  20 Domains for auction: DealsGreen.com, ExerciseBags.com, FragranceMen.com, etc...
Posted by: mikenormal - 01-13-2010, 07:13 AM - Forum: Domains For Sale - Fixed Price/Offer - No Replies

20 premium domain names now available on eBay for a limited time and these unique auctions start at only $9.99 each with no reserve!


EBAY AUCTION LINK


These domain name auctions start to end every 30 minutes on Wednesday, January 13th at 14:00 - 23:30 PDT


WarrantMoney.com

BonusPercent.com

DollsOutfit.com

Reprover.com (true dictionary one word)

UseCredits.com

FundBudget.com

WallCurtains.com

Snakily.com (true dictionary one word)

GoodbyeLoans.com

RomanceWoman.com

RevenueLoans.com

Pyoid.com (true dictionary one word)

MoneyRetail.com

FragranceMen.com

ExerciseBags.com

Larded.com (true dictionary one word)

DealsGreen.com

PayLottery.com

DealsShoes.com

Surplices.com (true dictionary one word)


The winning bidders get a FREE domain name push to their GoDaddy account within 24 hours of receiving payment!


EBAY AUCTION LINK


20 investment opportunity domain names - No reserve - Free push


Thanks for looking and hope to see you at our domain name auctions.

Print this item

  20 Domains for auction: PokerEarn.com, WriteProgram.com, GangstaShop.com, etc...
Posted by: mikenormal - 01-12-2010, 06:57 AM - Forum: Domains For Sale - Fixed Price/Offer - No Replies

20 premium domain names now available on eBay for a limited time and these unique auctions start at only $9.99 each with no reserve!


EBAY AUCTION LINK


These domain name auctions start to end every 30 minutes on Tuesday, January 12th at 14:00 - 23:30 PDT


DiscountPaid.com

ProductGift.com

PaymentTips.com

Salutarily.com (true dictionary one word)

RevenueApply.com

GoldPattern.com

FemalePerson.com

Cotidal.com (true dictionary one word)

FundsExtra.com

GangstaShop.com

VouchersOnly.com

Unlively.com (true dictionary one word)

TodayPaid.com

SurfHire.com

LingeriePink.com

Perjurious.com (true dictionary one word)

FantasyItems.com

WriteProgram.com

PokerEarn.com

Vesiculate.com (true dictionary one word)


The winning bidders get a FREE domain name push to their GoDaddy account within 24 hours of receiving payment!


EBAY AUCTION LINK


20 investment opportunity domain names - No reserve - Free push


Thanks for looking and hope to see you at our domain name auctions.

Print this item

  Decaptcha Triple Captcha Issue
Posted by: shakemelikeapig - 01-12-2010, 04:34 AM - Forum: Domain Development - No Replies

I'm trying to use decaptcha with iMacro to auto solve and fill captchas. I have everything up to the point of getting the captcha. When iMacro loads the main.php file then displays my solved captcha, it shows the captcha 3 times. So then my iMacro proceeds to copy that solved triple displayed captcha, but I only want/need it to copy that one of the three identical captchas.

Here is decaptcha's main.php file code:

Code:
<?php
    require( 'ccproto_client.php' );

    // your connect information
    define( 'HOST',        "72.233.64.162"    );    // YOUR HOST
    define( 'PORT',        7462        );    // YOUR PORT
    define( 'USERNAME',    "myusername"    );    // YOUR LOGIN
    define( 'PASSWORD',    "mypassword");    // YOUR PASSWORD

    define( 'PIC_FILE_NAME',    "pic.jpg"    );
    
    $ccp = new ccproto();
    $ccp->init();

    print( "" );
    if( $ccp->login( HOST, PORT, USERNAME, PASSWORD ) < 0 ) {
        print( " FAILED\n" );
        return;
    } else {
        print( "" );
    }

    $system_load = 0;
    if( $ccp->system_load( $system_load ) != ccERR_OK ) {
        print( "" );
        return;
    }
    print( "" );

    $balance = 0;
    if( $ccp->balance( $balance ) != ccERR_OK ) {
        print( "" );
        return;
    }
    print( "" );

    $major_id    = 0;
    $minor_id    = 0;
    for( $i = 0; $i < 3; $i++ ) {
        $pict = file_get_contents( PIC_FILE_NAME );
        $text = '';
        print( "" );

        $pict_to    = ptoDEFAULT;
        $pict_type    = ptUNSPECIFIED;
        
        $res = $ccp->picture2( $pict, $pict_to, $pict_type, $text, $major_id, $minor_id );
        switch( $res ) {
            // most common return codes
            case ccERR_OK:
                print( $text );
                break;
            case ccERR_BALANCE:
                print( "not enough funds to process a picture, balance is depleted" );
                break;
            case ccERR_TIMEOUT:
                print( "picture has been timed out on server (payment not taken)" );
                break;
            case ccERR_OVERLOAD:
                print( "temporarily server-side error" );
                print( " server's overloaded, wait a little before sending a new picture" );
                break;
        
            // local errors
            case ccERR_STATUS:
                print( "local error." );
                print( " either ccproto_init() or ccproto_login() has not been successfully called prior to ccproto_picture()" );
                print( " need ccproto_init() and ccproto_login() to be called" );
                break;
        
            // network errors
            case ccERR_NET_ERROR:
                print( "network troubles, better to call ccproto_login() again" );
                break;
        
            // server-side errors
            case ccERR_TEXT_SIZE:
                print( "size of the text returned is too big" );
                break;
            case ccERR_GENERAL:
                print( "server-side error, better to call ccproto_login() again" );
                break;
            case ccERR_UNKNOWN:
                print( " unknown error, better to call ccproto_login() again" );
                break;
        
            default:
                // any other known errors?
                break;
        }
        print ( "\n" );

        // process a picture and if it is badly recognized
        // call picture_bad2() to name it as error.
        // pictures named bad are not charged

        //$ccp->picture_bad2( $major_id, $minor_id );
    }

    $balance = 0;
    if( $ccp->balance( $balance ) != ccERR_OK ) {
        print( "balance() FAILED\n" );
        return;
    }
    print( "" );

    $ccp->close();

    // also you can mark picture as bad after session is closed, but you need to be logged in again
    $ccp->init();
    print( "" );
    if( $ccp->login( HOST, PORT, USERNAME, PASSWORD ) < 0 ) {
        print( "" );
        return;
    } else {
        print( "" );
    }
    print( "" );
    $ccp->picture_bad2( $major_id, $minor_id );
    $ccp->close();


?>

If anyone has any ideas how to fix it from displaying the captcha three times rather than one, I would greatly appreciate it.

Thanks,

Print this item

  20 Domains for auction: FilesSent.com, DealsSkiing.com, HousingOffer.com, etc...
Posted by: mikenormal - 01-11-2010, 05:43 AM - Forum: Domains For Sale - Fixed Price/Offer - No Replies

20 premium domain names now available on eBay for a limited time and these unique auctions start at only $9.99 each with no reserve!


EBAY AUCTION LINK


These domain name auctions start to end every 30 minutes on Monday, January 11th at 14:00 - 23:30 PDT


VaccineVirus.com

NormalWork.com

TrenchJacket.com

Dilatorily.com (true dictionary one word)

PoolDomains.com

EquityShop.com

SizeColor.com

Dudeen.com (true dictionary one word)

WelfareShop.com

NatureDeals.com

MillionDeal.com

Frailest.com (true dictionary one word)

WebsiteGreen.com

SeriousInfo.com

LiquidMeals.com

Uninspected.com (true dictionary one word)

HousingOffer.com

DealsSkiing.com

FilesSent.com

Serried.com (true dictionary one word)


The winning bidders get a FREE domain name push to their GoDaddy account within 24 hours of receiving payment!


EBAY AUCTION LINK


20 investment opportunity domain names - No reserve - Free push


Thanks for looking and hope to see you at our domain name auctions.

Print this item

  Credit Card, Finance Affiliate
Posted by: w_grace - 01-11-2010, 01:38 AM - Forum: PPC / CPC / Affiliate Programs - No Replies

Hello,
I am looking for a good Bank/Credit card Affiliate for some of my websites, does anyone know one?

Also, a good mobile phone/ringtone Affiliate.

Print this item

  Domain banking-accounts.net for sale
Posted by: marianosara - 01-10-2010, 05:26 PM - Forum: Domain Names Wanted - No Replies

Hi, I'm selling my domain http://www.banking-accounts.net (only domain).

minimum offer: 500 $

Contact me with offers.....

Print this item

  cause-and-effect.net
Posted by: gillen - 01-09-2010, 05:49 PM - Forum: Domain Discussion - No Replies

Will sell .net and .info comes for free, make me an offer


cause-and-effect.net expires 9/3/2011
cause-and-effect.info expires 9/4/2010

Print this item

  20 Domains for auction: CodingError.com, TicketsTout.com, ReviewsGames.com, etc...
Posted by: mikenormal - 01-08-2010, 04:28 AM - Forum: Domains For Sale - Fixed Price/Offer - No Replies

20 premium domain names now available on eBay for a limited time and these unique auctions start at only $9.99 each with no reserve!


EBAY AUCTION LINK


These domain name auctions start to end every 30 minutes on Sunday, January 10th at 14:00 - 23:30 PDT


DecentWomen.com

VacuumPens.com

JobsCourses.com

Punily.com (true dictionary one word)

ServiceGolf.com

PaidWorkers.com

ReviewsGames.com

Chastener.com (true dictionary one word)

FileProblem.com

CreditedLoan.com

UniformsSite.com

Embalmment.com (true dictionary one word)

BuyNylons.com

AutosDiesel.com

ToyboyDate.com

Primming.com (true dictionary one word)

TicketsTout.com

CarsMerchant.com

CodingError.com

Undrunk.com (true dictionary one word)


The winning bidders get a FREE domain name push to their GoDaddy account within 24 hours of receiving payment!


EBAY AUCTION LINK


20 investment opportunity domain names - No reserve - Free push


Thanks for looking and hope to see you at our domain name auctions.

Print this item

  kingdomain says hello
Posted by: kingdomain - 01-07-2010, 04:42 PM - Forum: The Lounge - No Replies

Howdy fellows,

I'm new to the domain game. I hope I can build strong business relationships here.

BTW: I am currently selling

lazyworkouts.com

happy flipping!

Print this item

  20 Domains for auction: TruckRetail.com, ResellForum.com, QuoteFee.com, etc...
Posted by: mikenormal - 01-07-2010, 05:28 AM - Forum: Domains For Sale - Fixed Price/Offer - No Replies

20 premium domain names now available on eBay for a limited time and these unique auctions start at only $9.99 each with no reserve!


EBAY AUCTION LINK


These domain name auctions start to end every 30 minutes on Thursday, January 7th at 14:00 - 23:30 PDT


MysteryPack.com

ExpenseTips.com

GemNew.com

Disembroil.com (true dictionary one word)

NowProfits.com

JokesStore.com

MoneyFee.com

Pokily.com (true dictionary one word)

BookPoetry.com

MetalCollar.com

ChatFemale.com

Repealer.com (true dictionary one word)

JobsSuccess.com

QuoteFee.com

DollarTaxes.com

Superiorly.com (true dictionary one word)

SecurityItem.com

ResellForum.com

TruckRetail.com

Acrobatism.com (true dictionary one word)


The winning bidders get a FREE domain name push to their GoDaddy account within 24 hours of receiving payment!


EBAY AUCTION LINK


20 investment opportunity domain names - No reserve - Free push


Thanks for looking and hope to see you at our domain name auctions.

Print this item