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
CyberSEO & Bonga API
Collapse
X
-
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:
7) Put the following code into the "PHP code <?php .. ?>" 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
8) Save the settings and let CyberSEO pull this feed for you on autopilot while you are enjoying your priceless lifeCode:$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; }
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
-
Comment
-
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 CowgodComment
-
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
-
That's correct some themes use excerpt's some content, some use both. So I would suggest to modify the code like this: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.
So if your theme looks weird, just comment this line: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; }
$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 CowgodComment
-
Do you have a better product ?Originally posted by xXXtesy10that's what is, shit and garbage. CYBERSEO awful product, avoid at all costComment
-
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 CowgodComment
-
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 allComment
-
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":
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> ... </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.Code:<embed_chat_url> http://bongacams.com/chat-popup/FANTAST1CFOUR?hit_url=http%3A%2F%2Fbongacams.com%2Ftrack%3Fc%3D289165 </embed_chat_url>
Obey the CowgodComment
-
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 CowgodComment
-
Hey there! Please clear your cache and try once again. It should be ok nowComment
-
Comment
-
Comment
-
trash garbage junk softwareWARNING: 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
-
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
-
I use the CyberSEO plugin for Wordpress. I recommend it as well designed with exceptional support.Comment
-
opinion is free to all. you want kiss his ass that is yours too.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?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
-
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
-
Comment
-
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 👍 AdultFriendFinderComment
-
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 CowgodComment
-


Comment