GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   CyberSEO & Bonga API (https://gfy.com/showthread.php?t=1193561)

JosephFM 04-20-2016 12:47 PM

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 04-20-2016 01:14 PM

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 :winkwink:

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

Index page:

http://s13.radikal.ru/i186/1604/fb/502111bc9cdf.jpg

Random model page:

http://s020.radikal.ru/i710/1604/5b/c13d4275985b.jpg

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: https://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 :thumbsup

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!

srockhard 04-20-2016 02:21 PM

Good stuff! What other sponsors you got?

just a punk 04-20-2016 02:26 PM

Quote:

Originally Posted by srockhard (Post 20848901)
Good stuff! What other sponsors you got?

Every sponsor my customers work with.

Profits of Doom 04-20-2016 03:27 PM

Quote:

Originally Posted by CyberSEO (Post 20848916)
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?

just a punk 04-20-2016 04:01 PM

Quote:

Originally Posted by Profits of Doom (Post 20848982)
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.

JosephFM 04-20-2016 08:05 PM

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;
}


Relic 04-21-2016 12:33 AM

He knows his shit

just a punk 04-21-2016 06:11 AM

Quote:

Originally Posted by JosephFM (Post 20849462)
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.

Andreweb 04-21-2016 06:18 AM

Quote:

Originally Posted by xXXtesy10 (Post 20849897)
that's what is, shit and garbage. CYBERSEO awful product, avoid at all cost

Do you have a better product ?

Vendot 04-21-2016 06:30 AM

Quote:

Originally Posted by xXXtesy10 (Post 20849426)
why anyone do business with this pos asshole cocksucker garbage software.

Why so negative? His software rocks.....

just a punk 04-21-2016 10:22 AM

Quote:

Originally Posted by Relic (Post 20849561)
He knows his shit

Quote:

Originally Posted by Vendot (Post 20849918)
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 ;)

levd 05-24-2016 07:02 AM

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

just a punk 05-24-2016 08:58 AM

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.

levd 05-24-2016 11:20 AM

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.

oppoten 05-24-2016 11:56 AM

Good plugin :thumbsup

levd 05-24-2016 12:41 PM

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

just a punk 05-24-2016 12:43 PM

Quote:

Originally Posted by levd (Post 20916611)
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.

Olga BongaCash 05-30-2016 12:21 AM

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

just a punk 05-30-2016 08:18 AM

Quote:

Originally Posted by Olga BongaCash (Post 20927108)
Hey there! Please clear your cache and try once again. It should be ok now

So your iframes are fixed now?

Olga BongaCash 05-30-2016 09:04 AM

Quote:

Originally Posted by CyberSEO (Post 20927864)
So your iframes are fixed now?

They work correctly

xXXtesy10 05-30-2016 10:48 AM

trash garbage junk software

RazorSharpe 05-30-2016 10:54 AM

Quote:

Originally Posted by xXXtesy10 (Post 20928188)
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?

ruff 05-30-2016 01:30 PM

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

xXXtesy10 05-30-2016 02:03 PM

Quote:

Originally Posted by RazorSharpe (Post 20928200)
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.

RazorSharpe 05-30-2016 02:16 PM

Quote:

Originally Posted by xXXtesy10 (Post 20928632)
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?

just a punk 05-30-2016 02:44 PM

Quote:

Originally Posted by Olga BongaCash (Post 20927972)
They work correctly

Good to know. Thanks for the fix :thumbsup

levd 05-31-2016 10:19 AM

Thanks for the fix. I just wonder what the problem was :disgust

magneto664 06-23-2017 02:37 PM

Hi, anybody can show me a working chaturbate with cyberseo I would like to see working site with this solution pls PM me tnx.

just a punk 06-24-2017 07:36 AM

Quote:

Originally Posted by magneto664 (Post 21851101)
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: https://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.

Panty Snatcher 06-24-2017 12:14 PM

its a good plugin , and support is great.

I need to dust off my copy


All times are GMT -7. The time now is 09:18 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc