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)
-   -   Business Chaturbate Whitelabel XML Script (https://gfy.com/showthread.php?t=1191719)

kaloz 04-22-2016 08:26 AM

Quote:

Originally Posted by CyberSEO (Post 20824634)
Just easily. Here is the WORKING instruction for my

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

Hello Cyberseo,

Useful plugin! XML solution works well.:thumbsup
How to create from chaturbate RSS to WP post?
example: chaturbate.com/feed/latest/?gender=f&wm=hMHEp
I tried several times, but I'm no expert ...
Thank you

mrmister 04-22-2016 08:43 AM

what is the benefit of these scripts over using a white label?

just a punk 04-22-2016 09:12 AM

Quote:

Originally Posted by mrmister (Post 20852378)
what is the benefit of these scripts over using a white label?

  1. You can have as many cam programs and mix them all together at the same site (not just one, as in case with sponsored WL's).
  2. Your site is fully under your control: the design, the layout, the ads, the links, the descriptions, the additional features (e.g. WP plugins and widgets) just E-V-E-R-Y-T-H-I-N-G!
  3. If you do it in a right way, you won't be banned by Google. Enjoy organic SE traffic from while others buy useless bot traffic from their banned WL's.
  4. CyberSEO is not specially made for cams. It's an absolutely universal content curation plugin which allows you to do similar tricks with tube videos, image galleries etc.

just a punk 04-22-2016 11:07 AM

Quote:

Originally Posted by kaloz (Post 20852330)
Hello Cyberseo,

Useful plugin! XML solution works well.:thumbsup
How to create from chaturbate RSS to WP post?
example: Female Latest online cams
I tried several times, but I'm no expert ...
Thank you

This feed does not include cam iframes, but... with CyberSEO we can change the rules as we want :pimp

So, here is the instruction.

1) Add your feed to CyberSEO XML Syndicator (e.g. Female Latest online cams).

2) I then "Post thumbnail" drop-down box select "Generate from the 'thumb' custom field".

3) Put the following text into the "Custom fields" box:

Code:

cb:image_url->thumb
cb:location->location
cb:interested_in->interested_in

4) Put this code into the "PHP code <?php .. ?>" box:

Code:

$post['post_title'] = 'Chat with ' . $post['post_title'];
if (!cseo_post_exists($post)) {
    $post['post_content'] = "<p style='text-align: center;'><iframe src='" . str_replace('/LQps/', '/Jrvi/', str_replace('track=default', 'track=embed', $post['link'])) . "&bgcolor=white' height=524 width=800 style='border: none;'></iframe></p>";
    $post['post_content'] .= '<p style="text-align: center;"><b>Location:</b> ' . $post['custom_fields']['location'] . ', <b>Interested in:</b> ' . $post['custom_fields']['interested_in'] . '</p>';
    $post['post_excerpt'] = '';
    unset($post['custom_fields']['username']);
    unset($post['custom_fields']['location']);
    unset($post['custom_fields']['interested_in']);
} else {
    $post = false;
}

8) Save the settings and let CyberSEO pull the feed on autopilot :thumbsup

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

Index page:

http://s013.radikal.ru/i325/1604/02/18f91f54ab74.jpg

Random model page:

http://s017.radikal.ru/i413/1604/38/c65e8385aecb.jpg

This time I was using pinterest-like WP theme "Pinboard" by Drag & Drop WordPress Themes ? Themify to show you that CyberSEO will work with any theme and the same cam feeds may look very different depending on which exactly theme you have picked for your own WL cam site. Enjoy and feel free to use this instruction in your projects - it's free!

kaloz 04-22-2016 11:26 AM

Quote:

Originally Posted by CyberSEO (Post 20852603)
This feed does not include cam iframes, but... with CyberSEO we can change the rules as we want :pimp

So, here is the instruction.

1) Add your feed to CyberSEO XML Syndicator (e.g.
...

It works perfectly, under Novavideo theme. :thumbsup
Thank you for fast solution Cyberseo!

JosephFM 04-24-2016 06:22 AM

I know that to save you and me some time I can just use the RSS feed to pull only shemale or gay content from Chaturbate but, can CyberSEO « #1 professional content curation plugin for WordPress since 2006. pull only certain content from the XML API url?

I just want to pull the male and shemale only info for two niche sites I'm working on. Like I said before, I can use the RSS feeds for that, but the API has more info I want to extract.

Shemale models in the CB API are identified like so:

Code:

<gender>s</gender>
And male models like so:

Code:

<gender>m</gender>

just a punk 04-24-2016 07:55 AM

Quote:

Originally Posted by JosephFM (Post 20856056)
I know that to save you and me some time I can just use the RSS feed to pull only shemale or gay content from Chaturbate but, can CyberSEO « #1 professional content curation plugin for WordPress since 2006. pull only certain content from the XML API url?

I just want to pull the male and shemale only info for two niche sites I'm working on. Like I said before, I can use the RSS feeds for that, but the API has more info I want to extract.

Shemale models in the CB API are identified like so:

Code:

<gender>s</gender>
And male models like so:

Code:

<gender>m</gender>

With CyberSEO you can do it easily. E.g.:

Put the following text into the "Custom fields" box:

Code:

gender->gender
Now you can manipulate it with your posts. E.g.

The "PHP code <?php .. ?>" box:

Code:

if ($post['custom_fields']['gender'] == 's') {
  $post['categories'][] = 'Shemale';
}
if ($post['custom_fields']['gender'] == 'm') {
  $post['categories'][] = 'Male';
}
if ($post['custom_fields']['gender'] == 'f') {
  $post['categories'][] = 'Female';
}

So every gender will go to its own category (the same method works with tags). Also you can filter them out. E.g.

The "PHP code <?php .. ?>" box:

Code:

if ($post['custom_fields']['gender'] != 'f') {
  $post = false;
}

So only female profiles will be added to your site. Everything else will be ignored.

DBS.US 04-24-2016 03:05 PM

Looking good:thumbsup

brassmonkey 04-24-2016 03:20 PM

cyber i might want that unlimited copy.

cybermike 05-13-2016 09:18 AM

So anyone make some pretty sites using the chaturbate feed?

just a punk 05-13-2016 09:24 AM

Quote:

Originally Posted by cybermike (Post 20892740)
So anyone make some pretty sites using the chaturbate feed?

I guess many, but who will post their links here? :winkwink:

P.S. The main advantage of the CyberSEO-powered sites is that Google has no idea that they are just White Labels but not some hand-made WordPress resources (no typical fingerprints to detect and catch), so it doesn't ban 'em.

cybermike 05-13-2016 10:36 AM

Quote:

Originally Posted by CyberSEO (Post 20892752)
I guess many, but who will post their links here? :winkwink:

P.S. The main advantage of the CyberSEO-powered sites is that Google has no idea that they are just White Labels but not some hand-made WordPress resources (no typical fingerprints to detect and catch), so it doesn't ban 'em.

Well you set up one for yourself thats doing good with SE? :)

Ps. Love my copy of gallery magic

just a punk 05-13-2016 11:07 AM

Quote:

Originally Posted by cybermike (Post 20892929)
Well you set up one for yourself thats doing good with SE? :)

Ps. Love my copy of gallery magic

I have posted a few instructions on how to set it up for various cam programs. I have actually did install every cam feed at my own test site to... make a screenshot and delete all the syndicated content forever :)

I just don't push cams by myself - not a my thing. But I know how to make sites which will not be banned by Google for so-called "context duplication", and it doesn't matter which niche that is. The common problem of all existing CMS for TGP's, tubes etc is fingerprints. That's why someday Google stars slaughter TGP sites powered by some particular engine. It just detects them by fingerprints. The CyberSEO plugin is a different thing. It has no fingerprints at all, because it's not a CMS. WhorPress is the CMS (25% of all sites in the Internet use it and nobody can say which one is hand-made or it works on autopilot under CyberSEO). My plugin is just a tool to fill WP sites with content, and it's absolutely impossible to find-out a way and sources it uses at every particular site. That's why Matt Cutts hates my tool, but he can do nothing to stop it :pimp

Quote:

Originally Posted by cybermike (Post 20892929)
Ps. Love my copy of gallery magic

Trying to do all my best :)

just a punk 05-17-2016 08:10 AM

I'll bump it because people still ask for something similar.

AmeliaG 02-19-2022 02:06 PM

Such a great thread. Cyber makes good software.

Clown 03-03-2022 04:08 PM

Chaturbate Script
 
If you're looking for a stand alone chaturbate script without using wordpress I may be able to help you out. I have created such a script that works well and fast. You can see a preview of it in action at juicysluts.com

Thanks.


All times are GMT -7. The time now is 06:49 PM.

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