CyberSEO & Bonga API

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • JosephFM
    Confirmed User
    • Feb 2010
    • 1190

    #1

    CyberSEO & Bonga API

    I got the Chaturbate API working with WP by using the CyberSEO plugin @ CyberSEO « #1 professional content curation plugin for WordPress since 2006. and I'm wondering if anybody has got the instructions to do the same with the Bonga Cams API: http://tools.bongacams.com/promo.php...i&api_type=xml
  • just a punk
    So fuckin' bored
    • Jun 2003
    • 32393

    #2
    Here is the step-by-step instruction for my CyberSEO plugin and BongaCams XML feed:

    1) Open CyberSEO->XML Syndicator and click "Alter default settings".

    2) Find the "XML section tag names (separate with commas)" field, add there the following word: ONLINE_MODELS then click "Update Default Settings".

    3) Now simply add your BongaCams XML feed to CyberSEO XML Syndicator (http://tools.bongacams.com/promo.php...i&api_type=xml).

    4) On the feed setting page assign some name to it (say "BongaCams").

    5) In the "Post thumbnail" drop-down box select "Generate from the 'thumb' custom field".

    6) Put this text into the "Custom fields" box:

    Code:
    thumbnail_image_big->thumb
    embed_chat_url->embed_chat_url
    display_name->display_name
    turns_on->turns_on
    turns_off->turns_off
    primary_language->primary_language
    ethnicity->ethnicity
    height->height
    weight->weight
    7) Put the following code into the "PHP code <?php .. ?>" box:

    Code:
    $post['guid'] = $post['custom_fields']['embed_chat_url'];
    $post['post_title'] = 'Chat with ' . $post['custom_fields']['display_name'];
    if (!cseo_post_exists($post)) {
        if (substr($post['custom_fields']['thumb'], 0, 2) == '//') {
            $post['custom_fields']['thumb'] = 'http:' . $post['custom_fields']['thumb'];
        }
        $post['post_excerpt'] = '<iframe src="' . $post['guid'] . '" width="850" height="380"></iframe>';
        $post['post_excerpt'] .= '<p style="text-align: center;"><b>Weight:</b> ' . $post['custom_fields']['weight'] . ', <b>height:</b> ' . $post['custom_fields']['height'] . '</p>';
        $post['post_excerpt'] .= '<p style="text-align: center;"><b>Ethnicity:</b> ' . $post['custom_fields']['ethnicity'] . ', <b>language:</b> ' . $post['custom_fields']['primary_language'] . '</p>';
        $post['post_excerpt'] .= '<p style="text-align: center;"><b>Turns on:</b> ' . $post['custom_fields']['turns_on'] . ', <b>turns off:</b> ' . $post['custom_fields']['turns_off'] . '</p>';
        unset($post['custom_fields']['embed_chat_url']);
        unset($post['custom_fields']['display_name']);
        unset($post['custom_fields']['turns_on']);
        unset($post['custom_fields']['turns_off']);
        unset($post['custom_fields']['primary_language']);
        unset($post['custom_fields']['ethnicity']);
        unset($post['custom_fields']['height']);
        unset($post['custom_fields']['weight']);
    } else {
        $post = false;
    }
    8) Save the settings and let CyberSEO pull this feed for you on autopilot while you are enjoying your priceless life

    Here is what I've got with your feed and the settings above on my test WordPress site:

    Index page:



    Random model page:



    This time I've used popular Bestia WP Tube Theme to show on how the resulting cam site may look like. Note that my instruction is not made for some particular theme. It will work with ANY other WordPress theme, like id did with the Chaturbate XML feed here: http://gfy.com/20824634-post20.html. So with CyberSEO you can pick the WordPress theme you like and mix various webcam feeds, tube feeds and image galleries on one site, with the same style, layout etc. So having Chaturbate, BongaCams and other cams on the same site is not a problem for CyberSEO plugin

    P.S. It's a working and fully complete step-by-step instruction for BongaCams feeds, so if you are an existing owner of the CyberSEO license, feel free to use it on your sites! We live in 21th century, so let robots work and make money for you!
    Obey the Cowgod

    Comment

    • srockhard
      Retired
      • Jul 2011
      • 1976

      #3
      Good stuff! What other sponsors you got?
      Piper Pines

      Comment

      • just a punk
        So fuckin' bored
        • Jun 2003
        • 32393

        #4
        Originally posted by srockhard
        Good stuff! What other sponsors you got?
        Every sponsor my customers work with.
        Obey the Cowgod

        Comment

        • Profits of Doom
          Monster Rain
          • Feb 2004
          • 4978

          #5
          Originally posted by CyberSEO
          Every sponsor my customers work with.
          I have the CyberSEO plugin but haven't used it in years. Do you offer a service where you would set up Wordpress cam sites like this, and if you do what would you charge per site?
          “My Free Cams Affiliate Program by CrakRevenue”

          Comment

          • just a punk
            So fuckin' bored
            • Jun 2003
            • 32393

            #6
            Originally posted by Profits of Doom
            I have the CyberSEO plugin but haven't used it in years. Do you offer a service where you would set up Wordpress cam sites like this, and if you do what would you charge per site?
            1) I do provide free manuals on forums.

            2) I do write custom scripting according to the customer's specs.

            3) And course I do a turnkey orders as well.

            My email is: cyberseo@cyberseo.net

            P.S. The site as shown above takes about 3 minutes to set up. And it doesn't matter is it's about cams, tubes, galleries or anything else.
            Obey the Cowgod

            Comment

            • JosephFM
              Confirmed User
              • Feb 2010
              • 1190

              #7
              Thanks for the code CyberSEO!

              BTW, the code above that you have to place on the "PHP code <?php .. ?>" box might not work for some, since it places all the content in the excerpt area, so if you are having trouble with that one, use the code below so that all the info from the feed gets placed in the post content area instead. I think it depends on the theme you use.

              Code:
              $post['guid'] = $post['custom_fields']['embed_chat_url'];
              $post['post_title'] = '' . $post['custom_fields']['display_name'];
              if (!cseo_post_exists($post)) {
                  if (substr($post['custom_fields']['thumb'], 0, 2) == '//') {
                      $post['custom_fields']['thumb'] = 'http:' . $post['custom_fields']['thumb'];
                  }
                  $post['post_content'] = '<iframe src="' . $post['guid'] . '" width="850" height="380"></iframe>';
                  $post['post_content'] .= '<p style="text-align: center;"><b>Weight:</b> ' . $post['custom_fields']['weight'] . ', <b>height:</b> ' . $post['custom_fields']['height'] . '</p>';
                  $post['post_content'] .= '<p style="text-align: center;"><b>Ethnicity:</b> ' . $post['custom_fields']['ethnicity'] . ', <b>language:</b> ' . $post['custom_fields']['primary_language'] . '</p>';
                  $post['post_content'] .= '<p style="text-align: center;"><b>Turns on:</b> ' . $post['custom_fields']['turns_on'] . ', <b>turns off:</b> ' . $post['custom_fields']['turns_off'] . '</p>';
                  unset($post['custom_fields']['embed_chat_url']);
                  unset($post['custom_fields']['display_name']);
                  unset($post['custom_fields']['turns_on']);
                  unset($post['custom_fields']['turns_off']);
                  unset($post['custom_fields']['primary_language']);
                  unset($post['custom_fields']['ethnicity']);
                  unset($post['custom_fields']['height']);
                  unset($post['custom_fields']['weight']);
              } else {
                  $post = false;
              }

              Comment

              • Relic
                So Fucking Banned
                • Aug 2002
                • 10300

                #8
                He knows his shit

                Comment

                • just a punk
                  So fuckin' bored
                  • Jun 2003
                  • 32393

                  #9
                  Originally posted by JosephFM
                  Thanks for the code CyberSEO!

                  BTW, the code above that you have to place on the "PHP code <?php .. ?>" box might not work for some, since it places all the content in the excerpt area, so if you are having trouble with that one, use the code below so that all the info from the feed gets placed in the post content area instead. I think it depends on the theme you use.
                  That's correct some themes use excerpt's some content, some use both. So I would suggest to modify the code like this:

                  Code:
                  $post['guid'] = $post['custom_fields']['embed_chat_url'];
                  $post['post_title'] = '' . $post['custom_fields']['display_name'];
                  if (!cseo_post_exists($post)) {
                      if (substr($post['custom_fields']['thumb'], 0, 2) == '//') {
                          $post['custom_fields']['thumb'] = 'http:' . $post['custom_fields']['thumb'];
                      }
                      $post['post_content'] = '<iframe src="' . $post['guid'] . '" width="850" height="380"></iframe>';
                      $post['post_content'] .= '<p style="text-align: center;"><b>Weight:</b> ' . $post['custom_fields']['weight'] . ', <b>height:</b> ' . $post['custom_fields']['height'] . '</p>';
                      $post['post_content'] .= '<p style="text-align: center;"><b>Ethnicity:</b> ' . $post['custom_fields']['ethnicity'] . ', <b>language:</b> ' . $post['custom_fields']['primary_language'] . '</p>';
                      $post['post_content'] .= '<p style="text-align: center;"><b>Turns on:</b> ' . $post['custom_fields']['turns_on'] . ', <b>turns off:</b> ' . $post['custom_fields']['turns_off'] . '</p>';
                  
                      $post['post_excerpt'] = $post['post_content'];
                  
                      unset($post['custom_fields']['embed_chat_url']);
                      unset($post['custom_fields']['display_name']);
                      unset($post['custom_fields']['turns_on']);
                      unset($post['custom_fields']['turns_off']);
                      unset($post['custom_fields']['primary_language']);
                      unset($post['custom_fields']['ethnicity']);
                      unset($post['custom_fields']['height']);
                      unset($post['custom_fields']['weight']);
                  } else {
                      $post = false;
                  }
                  So if your theme looks weird, just comment this line:

                  $post['post_excerpt'] = $post['post_content'];

                  In this case you will be sure that the code will be working on all themes. Also if you are using some old blog-style theme, you may want to disable the thumbnail generation - just skip step #5 in my instruction. In this case the code will be really 100% universal.
                  Obey the Cowgod

                  Comment

                  • Andreweb
                    Confirmed User
                    • Mar 2013
                    • 2431

                    #10
                    Originally posted by xXXtesy10
                    that's what is, shit and garbage. CYBERSEO awful product, avoid at all cost
                    Do you have a better product ?
                    Make Money With: Chaturbate
                    Cheap Reliable Hosting

                    Comment

                    • Vendot
                      Confirmed User
                      • May 2002
                      • 3376

                      #11
                      Originally posted by xXXtesy10
                      why anyone do business with this pos asshole cocksucker garbage software.
                      Why so negative? His software rocks.....
                      "In a Time of Universal Deceit, Telling the Truth is a Revolutionary Act." - George Orwell

                      Comment

                      • just a punk
                        So fuckin' bored
                        • Jun 2003
                        • 32393

                        #12
                        Originally posted by Relic
                        He knows his shit
                        Originally posted by Vendot
                        Why so negative? His software rocks.....
                        Thanks guys! I'm trying to do my best for the customers. If there is something else you want to syndicate with CyberSEO (other cam programs, tube videos, image galleries or whatever), please don't hesitate to create a new business thread for it and I'll post the solution there for free. I know that most of active GFY webmasters do already own the CyberSEO license, so these threads could be interesting/useful to many here.

                        If you think your thread was missed, jsut forward it to my email cyberseo@cyberseo.net.

                        P.S. Right now I'm working on CyberSEO 7 and it will be a real revolution - just believe me ;)
                        Obey the Cowgod

                        Comment

                        • levd
                          Confirmed User
                          • Jul 2006
                          • 581

                          #13
                          Ok this is a pretty important issue with bongacams and cyberseo. I talked with Bongacams and they claim its an issue with how i parse / embed the iframe...?

                          Whats the problem, well the c=###### is randomly generated in the links displayed in the iframe. The c=###### is the affiliate tracking number. So traffic generated might not be you seen as your traffic.

                          http://tools.bongacams.com/promo.php...i&api_type=xml

                          With the embed_chat_url from the xml we generate an iframe. Links in this iframe for example the link under the video "click here to signup for free" shows a link with a c=####### thats not mine and looks random.

                          Cyberseo, do you have a clue about how this can happen. Bongacams claims this has something to do with how we parse the xml file.

                          Bongacams, the link in the iframe right side (personal message --> join its free. There is no tracking at all

                          Comment

                          • just a punk
                            So fuckin' bored
                            • Jun 2003
                            • 32393

                            #14
                            I have no idea what they say. The script does not generate any "c=######" or something like that. It just takes the embed codes directly from their feed "AS IS":

                            Code:
                            <embed_chat_url>
                            ...
                            </embed_chat_url>
                            E.g. open their feed for "c=252831" in your browser http://tools.bongacams.com/promo.php...i&api_type=xml and you will see this:

                            Code:
                            <embed_chat_url>
                            http://bongacams.com/chat-popup/FANTAST1CFOUR?hit_url=http%3A%2F%2Fbongacams.com%2Ftrack%3Fc%3D289165
                            </embed_chat_url>
                            So it's a good question to them why do they put a wrong code into their own feeds. If they are really doing that, I would never recommend to use their feeds at all.
                            Obey the Cowgod

                            Comment

                            • levd
                              Confirmed User
                              • Jul 2006
                              • 581

                              #15
                              I told them Cyberseo isnt changing anything in the iFrame.

                              Anyone using Bonga look at your xml feed, search for embed_chat_url and tell me its your c=xxxxxx you see there, reload a kopple of times.

                              Comment

                              • oppoten
                                NAME THE JEW
                                • Nov 2007
                                • 4793

                                #16
                                Good plugin

                                Comment

                                • levd
                                  Confirmed User
                                  • Jul 2006
                                  • 581

                                  #17
                                  Maybe Bongacams should reply to this issue here with other affiliate id's showing in there embed chat urls?

                                  Comment

                                  • just a punk
                                    So fuckin' bored
                                    • Jun 2003
                                    • 32393

                                    #18
                                    Originally posted by levd
                                    I told them Cyberseo isnt changing anything in the iFrame.

                                    Anyone using Bonga look at your xml feed, search for embed_chat_url and tell me its your c=xxxxxx you see there, reload a kopple of times.
                                    Yep, this smells fishy to me as well. Everybody can check my code in this thread and make sure it doesn't change anything in their iframes. It just takes them from the Bonga feed and inserts into WP posts w/o any changes. Waiting for their reps (I know they are hanging here) to step in with the explanations. Once again: my code is right above, go tell me where "c=######" is being replaced with random values.
                                    Obey the Cowgod

                                    Comment

                                    • Olga BongaCash
                                      Confirmed User
                                      • Dec 2015
                                      • 345

                                      #19
                                      Hey there! Please clear your cache and try once again. It should be ok now


                                      Skype: olga.bongacash ICQ: 680413573 E-mail: [email protected]

                                      Comment

                                      • just a punk
                                        So fuckin' bored
                                        • Jun 2003
                                        • 32393

                                        #20
                                        Originally posted by Olga BongaCash
                                        Hey there! Please clear your cache and try once again. It should be ok now
                                        So your iframes are fixed now?
                                        Obey the Cowgod

                                        Comment

                                        • Olga BongaCash
                                          Confirmed User
                                          • Dec 2015
                                          • 345

                                          #21
                                          Originally posted by CyberSEO
                                          So your iframes are fixed now?
                                          They work correctly


                                          Skype: olga.bongacash ICQ: 680413573 E-mail: [email protected]

                                          Comment

                                          • xXXtesy10
                                            Fakecoin Investor
                                            • Jul 2012
                                            • 7127

                                            #22
                                            trash garbage junk software
                                            WARNING: Stay Away From Marlboroack aka aka Brandon Ackerman
                                            http://gfy.com/21169705-post8.html
                                            Donny Long is Felon, Stalker, Scammer & Coward
                                            http://www.ripoffreport.com/reports/...lon-int-761244

                                            Comment

                                            • RazorSharpe
                                              Confirmed User
                                              • Aug 2001
                                              • 2238

                                              #23
                                              Originally posted by xXXtesy10
                                              trash garbage junk software
                                              I don't own the cyberseo plugin (yet) but I would sooner buy a product from Cyberseo than you.

                                              He may say a lot of things in non-business threads that a lot of people don't agree with but he seems very professional when it comes to his product. That counts for something. You on the other hand are always an arse.

                                              Funny, the mods deleted your last post in this thread saying the exact same thing and you think it's ok to repost?
                                              Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.

                                              Comment

                                              • ruff
                                                I have a plan B
                                                • Aug 2004
                                                • 5507

                                                #24
                                                I use the CyberSEO plugin for Wordpress. I recommend it as well designed with exceptional support.
                                                CryptoFeeds

                                                Comment

                                                • xXXtesy10
                                                  Fakecoin Investor
                                                  • Jul 2012
                                                  • 7127

                                                  #25
                                                  Originally posted by RazorSharpe
                                                  I don't own the cyberseo plugin (yet) but I would sooner buy a product from Cyberseo than you.

                                                  He may say a lot of things in non-business threads that a lot of people don't agree with but he seems very professional when it comes to his product. That counts for something. You on the other hand are always an arse.

                                                  Funny, the mods deleted your last post in this thread saying the exact same thing and you think it's ok to repost?
                                                  opinion is free to all. you want kiss his ass that is yours too.
                                                  WARNING: Stay Away From Marlboroack aka aka Brandon Ackerman
                                                  http://gfy.com/21169705-post8.html
                                                  Donny Long is Felon, Stalker, Scammer & Coward
                                                  http://www.ripoffreport.com/reports/...lon-int-761244

                                                  Comment

                                                  • RazorSharpe
                                                    Confirmed User
                                                    • Aug 2001
                                                    • 2238

                                                    #26
                                                    Originally posted by xXXtesy10
                                                    opinion is free to all. you want kiss his ass that is yours too.
                                                    Kiss his ass? I don't have any need to. I don't do any business with him, have never done any business with him and likely will never do any business with him. What else you got?
                                                    Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.

                                                    Comment

                                                    • just a punk
                                                      So fuckin' bored
                                                      • Jun 2003
                                                      • 32393

                                                      #27
                                                      Originally posted by Olga BongaCash
                                                      They work correctly
                                                      Good to know. Thanks for the fix
                                                      Obey the Cowgod

                                                      Comment

                                                      • levd
                                                        Confirmed User
                                                        • Jul 2006
                                                        • 581

                                                        #28
                                                        Thanks for the fix. I just wonder what the problem was

                                                        Comment

                                                        • magneto664
                                                          God Bless You
                                                          • Aug 2014
                                                          • 1470

                                                          #29
                                                          Hi, anybody can show me a working chaturbate with cyberseo I would like to see working site with this solution pls PM me tnx.
                                                          magneto664 📧 gmail.com
                                                          Cams.Zone 💘 Best CDN for Adult Content
                                                          My Fav: 👍 Chaturbate 👍 Stripchat 👍 AdultFriendFinder

                                                          Comment

                                                          • just a punk
                                                            So fuckin' bored
                                                            • Jun 2003
                                                            • 32393

                                                            #30
                                                            Originally posted by magneto664
                                                            Hi, anybody can show me a working chaturbate with cyberseo I would like to see working site with this solution pls PM me tnx.
                                                            Sure. Here is a special thread for you: http://gfy.com/fucking-around-and-pr...wordpress.html

                                                            Chaturbate, BongaCams, LiveJasmin - everything is there with step-by-step instructions and ready-to-use presets for CyberSEO 7. Now you can import a livecam feed into your WP site with a couple of mouse clicks. No PHP scripting or Voodoo magic anymore - everything is extremely simply.

                                                            Feel free to post your comments to the dedicated thread.
                                                            Obey the Cowgod

                                                            Comment

                                                            • Panty Snatcher
                                                              eat a peach for Hours
                                                              • Aug 2013
                                                              • 540

                                                              #31
                                                              its a good plugin , and support is great.

                                                              I need to dust off my copy

                                                              Comment

                                                              Working...