Jump to content
UBot Underground

BobbyP

Fellow UBotter
  • Content Count

    77
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by BobbyP

  1. I forgot to mention that the blogging platform will allow sellin JVZoo and Clickbank offers too. So We could promote our or other stuff without coomission to the marketplace. Totally open platform. This was a request (or a question) from Marton Urban and is accepted.

     

    Will try to maket it the most open market for any needs.

     

    Anyone could start selling without website  nor hosting no complicated setups. Once salese goes up anyone is free to expand his personal empire.

     

    Mass invitation system is also available.

  2. Hi!

    After checking the options for selling bots i decided to invest some time and money in creating Our Own Bot and Digital Goods Marketplace.

     

    The way i did it represents the current state of technology and paths to go such as Social network marketing, modern blogging automatic syndication and lots more.

     

    I will post here some of the featurues (they are too many to list them here) but the main reason for this post is that i need YOUR feedback on some crucial settings.

     

    I was not realy happy with the options offered on the other 2 or 3 places we all know so i decided to build it with the seller needs in mind, so as You and me are the sellers i have to ask u some questions and if you decide to use the marketplace,  i'll be happy to set the marketplace according to our mutual needs.

     

    So here is a small list of the the new Social Networking Marketplace:

     

    Complete facebook-like socialnetwork platform.

    Latest Blogging state of the art plattform for creating pitch or squeeze pages, integrated with the social platform.

    Automatic posting of blogs to mayor social sites

    Each account could have multiple stores:

    1 for Ubot bots
    1 for Digital goods
    1 for Courses etc.

    Each sale will be atuomatically posted on the time line of the Social network and also on facebook and twitter for better exposure.

    Coupon Manager.

    I am in creating Special paypal service so user could buy from different stores or even diferent sellers with one checkout in one go and the cash will be paid instantly to each one of us dealing  with comissions in the background handled completely by PayPal so no money will be holded in my account waiting for stupid monthly ammounts to be reached or disputes.

    And much much more  but You get the idea.

     

    Costs:

    The Marketplce will charge 2.9% of each sale. Thats all. I think it should be enough to keeps  floating for some years.

     

    Now what i need  is some help on some settings.

     

    First is transaction costs-my suggestion is that buyer pays them.

    If You thing this is a problem  lets find other options before i send my final app to PayPal.

     

    Second:TOS

    I am  strongly for no refund policy by default. It is  the nature of the soft we build that prohibits us from 180 days  paypal dispute periods so we need to state it in the tos. If You guys have propositions for TOS PLEASE send a complete TOS for comunity review and we vote to find the

    best one.

     

    Third: Nummber of stores each user could have.

    It is in general unlimited but i doubt that any one could handle more than 5 -10 so i want to limit them to avoid people from creating dead stores. So what is a reasonable amount of store You guys could make use of?

     

    Thats all for now.

    Will be happy to get some feedback.

    Thanks for reading!

  3. assuming every gif isa banner and has the link embedded and all images are ina folder called images.

    U ned a php script that rotates them random and a link to open a random gif.

    <?php
    
    /////////////////////////////////////////////////////////////////////
    // This is the only portion of the code you may need to change.
    // Indicate the location of your images 
    $root = '';
    // use if specifying path from root
    //$root = $_SERVER['DOCUMENT_ROOT'];
    
    $path = 'images/';
    
    // End of user modified section 
    /////////////////////////////////////////////////////////////////////
     
    function getImagesFromDir($path) {
        $images = array();
        if ( $img_dir = @opendir($path) ) {
            while ( false !== ($img_file = readdir($img_dir)) ) {
                // checks for gif, jpg, png
                if ( preg_match("/(\.gif|\.jpg|\.png)$/", $img_file) ) {
                    $images[] = $img_file;
                }
            }
            closedir($img_dir);
        }
        return $images;
    }
    
    function getRandomFromArray($ar) {
        mt_srand( (double)microtime() * 1000000 ); // php 4.2+ not needed
        $num = array_rand($ar);
        return $ar[$num];
    }
    
    
    // Obtain list of images from directory 
    $imgList = getImagesFromDir($root . $path);
    
    $img = getRandomFromArray($imgList);
    ?> 
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="utf-8" />
    <title>Demo</title>
    <style type="text/css">
    body { font: 14px/1.3 verdana, arial, helvetica, sans-serif; }
    h1 { font-size:1.3em; }
    h2 { font-size:1.2em; }
    a:link { color:#33c; } 
    a:visited { color:#339; }
    p { max-width: 60em; }
    
    /* so linked image won't have border */
    a img { border:none; }
    </style>
    </head>
    <body>
    
    <h1>Display Random Image Using PHP</h1>
    
    <p><p>Each time the page is loaded an image will be selected at random. When you add more images to select from, you are less likely to get repeats from one page load to the next. </p></p>
    
    <a href="/"><img src="<?php echo $path . $img ?>" alt="" /></a>
    
    
    
    
    </body>
    </html>
    

    test this out to see if u get what u need.

  4. It is your code.(not saying ubot is bug free)

    And yes i agree that there is a lack of a from start to finish bot made with best practices .

    So we all have to figure it out at our own.

    Generally IF ELSE commands slows down any soft. In other languages u try to avoid them.

    It really depends on your code and not 100% ubot related, but common programming sense.

    In Ubot u just program sequences so take a look at other programing languages what best works and try to make it with ubot. It is just a tool and as any tool it could be used on variety of ways.

  5. It seems best practice is to build a relationship with customers and affiliates.Long term. And ask them wich price model they like. Create all the different packages u want and the market will tell you wich one works.

    Common mistake is to make your rules without asking your customer. Recent example Yahoo new redesign.

    So build your self a community and let it decide. And u just deliver ;) .

  6. Hi i would like to know what is the best way to store user data such passwords, email accounts etc.

    Encrypted txt file , SQLite  or web based database.

    This is a private User data  that i dont need to know so i want the user to be completely safe using the bot and in the same time having best User experience.

    Please share if u dont mind.

    Thanks in advance!

    P.S and the fastest :) !

  7. Hey Edward!

     

    Thanks for getting back to us! Would you be so kind as to show a simple example on how exactly you encrypt/decrypt it, and how you call it in UBot, and then dump out of memory? I think many of us would highly appreciate a short tutorial (or example) if you have a sec. Thanks for considering it.

     

    Kindest Regards,

    Marton

    Also interested

  8. Thanks mate i´ve kinda seen them all several times allready.And keep watching them but some of them are quite old or related to the V4. Would be nice to see some V5. I study  this forum and the wiki and tutorials for a month before i decide to purchase.

    Only thing is the more i learn the more questions comes out :o . Anyway thanks for the warm and FIRST welcome.

×
×
  • Create New...