GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Announcements (https://gfy.com/forumdisplay.php?f=44)
-   -   Tech Import tube videos, livecam feeds, picture galleries and anything else into WordPress (https://gfy.com/showthread.php?t=1259368)

magneto664 07-02-2017 05:17 AM

This part of code work amazing. One more think
- with part content from xml is go to spinner?
- how to add gender to tag, i try use this in post tag form

Code:

%xml_tags[gender]%,
but is no working, i need send this same way like a tags_item, tnx.

just a punk 07-02-2017 05:36 AM

Quote:

Originally Posted by magneto664 (Post 21865879)
- with part content from xml is go to spinner?

All parts of the post (the post contents, the title and the excerpt) will be spun/synonymized it you select the appropriate option in the feed settings.

Quote:

Originally Posted by magneto664 (Post 21865879)
- how to add gender to tag

1) Add the following line to the "Custom fields" box:

Code:

gender->gender
2) Put this code into the "PHP code <?php .. ?>" box:

Code:

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

If you want to use the cam site model sex as a WordPress post category, you should use this code:

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';
}
if ($post['custom_fields']['gender'] == 'c') {
  $post['categories'][] = 'Couple';
}

So every gender will go to its own category. Also you can filter out the model by sex. E.g.

Code:

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

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

magneto664 07-02-2017 06:12 AM

I try to overwrite custom_fields with gender

if ($post['custom_fields']['gender'] == 's') {
$post['custom_fields']['gender_rewrite'] = 'Shemale';
}

Is my way is ok?

also I notice is important to keep logic construction in php section, we need to think what to do first and last :)

just a punk 07-02-2017 06:20 AM

Quote:

Originally Posted by magneto664 (Post 21865909)
I try to overwrite custom_fields with gender

Code:

if ($post['custom_fields']['gender'] == 's') {
    $post['custom_fields']['gender_rewrite'] = 'Shemale';
}

Is my way is ok?

No, it's not. It must be done like this:

Code:

if ($post['custom_fields']['gender'] == 's') {
    $post['custom_fields']['gender'] = 'Shemale';
}


magneto664 07-04-2017 12:35 PM

I don't want do to mistake just to confirm in XML file in chaturbate we we work only on revshare program? tnx

just a punk 07-04-2017 12:51 PM

As far as I can see there are two different iframe embeds in the Chaturbate XML feed: iframe_embed (I assume it's PPS) and iframe_embed_revshare (must be revshare IMHO). So you decide which one you are going to import with CyberSEO (revashare, PPS, or both)).

magneto664 07-04-2017 01:05 PM

And one more think with give me more customs

Code:

%xml_tags[display_name]%
This is a default title from tutorial - how to display title (model name) always starting from capital letter - did I need also add a custom php code? tnx.

just a punk 07-05-2017 04:15 AM

If you want to uppercase the post title's first character, you should use the PHP code:

Code:

$post['post_title'] = ucfirst($post['post_title']);

magneto664 07-05-2017 05:57 AM

Thank you! Guys this plugin is worth any money!

Profits of Doom 07-07-2017 09:31 AM

I already own CyberSEO 7, is there any reason for me to also buy Gallery Magic, or does CyberSEO 7 already do everything that Gallery Magic does?

just a punk 07-07-2017 11:55 AM

Quote:

Originally Posted by Profits of Doom (Post 21876178)
I already own CyberSEO 7, is there any reason for me to also buy Gallery Magic, or does CyberSEO 7 already do everything that Gallery Magic does?

No, there is no reason to buy it. CyberSEO does everything that Gallery Magic can do + much more.

mamaliga 07-09-2017 07:39 AM

Purchased the cyberseo plugin friday along with a custom parser and now everything is working good.
This is an amazing plugin, i am running now a large network of wp blogs on autopilot 100%.

magneto664 07-09-2017 10:57 AM

Hi, CyberSeo can you find solution how to rewrite tracking code in chaturbate xml
tnx.

Tjeezers 07-10-2017 07:30 AM

Asking for a friend

Do we have to follow this thread to learn how to implement it, as he is not a GFY user. Is any of this info (how to add cam feeds) doable without reading this thread?

PS, and a bump for you!

just a punk 07-10-2017 07:46 AM

Quote:

Originally Posted by magneto664 (Post 21879169)
Hi, CyberSeo can you find solution how to rewrite tracking code in chaturbate xml
tnx.

You can rewrite anything with CyberSEO: Built-in Re-writer.

E.g. you want to replace all "AAAAAAA" in the HTML code with "BBBBBBB". Then just add this line to the Global Synonym Table:

Code:

|AAAAAAA|BBBBBBB
Want to replace all http://www.cnn.com/ with http://www.rt.com/? Not a problem. This line will do it:

Code:

|http://www.cnn.com/|http://www.rt.com/
Note the leading pipe ("|") - it's important.

Quote:

Originally Posted by Tjeezers_Brokerbabe (Post 21880705)
Asking for a friend

Do we have to follow this thread to learn how to implement it, as he is not a GFY user. Is any of this info (how to add cam feeds) doable without reading this thread?

Everything is doable. It's just an educational thread which explains how to use CyberSEO in the real life. If you want to import something into WordPress, just post a request here and I'll give you a step-by-step instruction for it.

magneto664 07-16-2017 10:49 AM

guys pls share working settings for tube - right now I need a pornhub. tnx.

just a punk 07-17-2017 05:49 AM

Quote:

Originally Posted by magneto664 (Post 21893053)
guys pls share working settings for tube - right now I need a pornhub. tnx.

You can download the working presets here: Custom Prestes – CyberSEO

I've just checked the PornHub preset with Pornhub - RSS Video Feed and it works fine.

magneto664 07-17-2017 06:00 AM

I think better will be use a Hub Traffic - Send traffic to our network & start to make money! xml for pornhub and rest sites from this team. tnx.

just a punk 07-17-2017 06:03 AM

Quote:

Originally Posted by magneto664 (Post 21894487)
I think better will be use a Hub Traffic - Send traffic to our network & start to make money! xml for pornhub and rest sites from this team. tnx.

That's not a problem at all. Please post the actual feed's URL and I'll give you a preset for it.

RyuLion 07-17-2017 03:52 PM

Nice plugin man!

magneto664 07-30-2017 04:03 PM

To be honest - this is No.1 plugins MOST TO HAVE! plugins is amazing, support is amazing! stuff what you can do with this plugin is a FUCKING UNIVERSE!

j3rkules 07-31-2017 04:04 AM

Quote:

Originally Posted by magneto664 (Post 21923086)
To be honest - this is No.1 plugins MOST TO HAVE! plugins is amazing, support is amazing! stuff what you can do with this plugin is a FUCKING UNIVERSE!

It really is good. I recommend to grab a theme from XWPThemes.com and this plugin and this all you need.

just a punk 07-31-2017 06:34 AM

Quote:

Originally Posted by j3rkules (Post 21923722)
It really is good. I recommend to grab a theme from XWPThemes.com and this plugin and this all you need.

Those look good. Actually the plugin can work with any theme. For example I would recommend TubeAce Play Theme. It looks, good, it responsive, it works with CyberSEO tube presets right out of the box and... it's free!

mce 07-31-2017 07:42 AM

Would this work for aggregating youtube vids based on categories and trending data? Is there a mainstream version?

just a punk 07-31-2017 08:40 AM

Quote:

Originally Posted by mce (Post 21923986)
Would this work for aggregating youtube vids based on categories and trending data? Is there a mainstream version?

Course it would work with anything, and there is no mainstream version because CyberSEO is the universal plugin which can be used for any niche and with any content source. E.g.:

Youtube, DailyMotion and Vimeo: Music Video Tube | WordPress self-populating tube

IGN: Game-World Videos

NASA: NASA Pictures Of The Day | Self-populating binboard

The content source doesn't matter. For example, personally I use the plugin to automatically run online shops, travel trip catalogs, private clinic lists, news and entertainment sites etc.

magneto664 08-03-2017 04:11 PM

Quote:

Originally Posted by CyberSEO (Post 21880738)
You can rewrite anything with CyberSEO: Built-in Re-writer.

E.g. you want to replace all "AAAAAAA" in the HTML code with "BBBBBBB". Then just add this line to the Global Synonym Table:

Code:

|AAAAAAA|BBBBBBB
Want to replace all http://www.cnn.com/ with http://www.rt.com/? Not a problem. This line will do it:

Code:

|http://www.cnn.com/|http://www.rt.com/
Note the leading pipe ("|") - it's important.



Everything is doable. It's just an educational thread which explains how to use CyberSEO in the real life. If you want to import something into WordPress, just post a request here and I'll give you a step-by-step instruction for it.


I try this and simply no work in any way.

Code:



|track=embed|track=TEST1
|track=default|track=TEST2

maybe a reason is I work on custom fields?

just a punk 08-03-2017 11:38 PM

Quote:

Originally Posted by magneto664 (Post 21931657)
I try this and simply no work in any way.

Code:



|track=embed|track=TEST1
|track=default|track=TEST2

maybe a reason is I work on custom fields?

Yes, this doesn't work for custom fields. It works for post content, post excerpt and post title only.

magneto664 08-04-2017 08:57 AM

Quote:

Originally Posted by CyberSEO (Post 21932149)
Yes, this doesn't work for custom fields. It works for post content, post excerpt and post title only.

No problem, as long we have data in custom fields we can do anything :)

EonBlue 08-04-2017 04:39 PM

Great thread. Thanks for all the tips.

I am having a problem with the AWEmpire feed. The live chatrooms are not showing up on the post pages. Same result if I enter the settings manually or use your preset file.

Any ideas?


.

just a punk 08-05-2017 12:33 AM

Quote:

Originally Posted by magneto664 (Post 21932830)
No problem, as long we have data in custom fields we can do anything :)

You can process a custom field with synonymizer/rewriter using this PHP function:

Code:

$post['custom_fields']['my_custom_field'] = cseo_synonymize($post['custom_fields']['my_custom_field']);

just a punk 08-05-2017 12:35 AM

Quote:

Originally Posted by EonBlue (Post 21933586)
Great thread. Thanks for all the tips.

I am having a problem with the AWEmpire feed. The live chatrooms are not showing up on the post pages. Same result if I enter the settings manually or use your preset file.

Any ideas?


.

Hmm.. Can I look at your feed's URL?

Tjeezers 08-05-2017 05:27 AM

Quote:

Originally Posted by CyberSEO (Post 21880738)


Everything is doable. It's just an educational thread which explains how to use CyberSEO in the real life. If you want to import something into WordPress, just post a request here and I'll give you a step-by-step instruction for it.

OK, that sounds very cool, and helpful, can not say anything bad about that at all, I actually am surprised about such a product support, keep up the good work men!
Maybe a suggestion to take elements of this thread and put them in a HowTo area on your website cause my clients are not always on GFY :( But that is just a suggestion

EonBlue 08-05-2017 08:53 AM

Quote:

Originally Posted by CyberSEO (Post 21934165)
Hmm.. Can I look at your feed's URL?

Sure, here it is:

Quote:

http://promo.awempire.com/xml/feed/index.php?siteId=jasmin&psId=69946&psTool=213_1&ps Program=revs&campaignId=&category=girl&limit=100&i mageSizes=896x504&imageType=erotic&showOffline=0&e xtendedDetails=1&responseFormat=xml&performerId=&s ubAffId={SUBAFFID}


.

magneto664 08-05-2017 04:48 PM

Hey cyberseo - can you pass rest of presets to bongacams, imlive, awempire and maybe xlovecam I see somewhere on forum but right now is hard to find. tnx.

just a punk 08-08-2017 08:32 AM

Quote:

Originally Posted by EonBlue (Post 21934624)
Sure, here it is:

Code:

http://promo.awempire.com/xml/feed/index.php?siteId=jasmin&psId=69946&psTool=213_1&ps Program=revs&campaignId=&category=girl&limit=100&i mageSizes=896x504&imageType=erotic&showOffline=0&e xtendedDetails=1&responseFormat=xml&performerId=&s ubAffId={SUBAFFID}

Thanks, I see now, but that's a bit different feed URL. It has no thumbnail image. Here is the proper one:

Code:

http://promo.awempire.com/xml/feed/index.php?siteId=jasmin&psId=69946&psTool=213_1&psProgram=revs&campaignId=&category=girl&limit=20&imageSizes=800x600,896x504&imageType=erotic&showOffline=0&extendedDetails=0&responseFormat=xml&performerId=&subAffId={SUBAFFID}
Open it in the browser and note the size800x600 and size896x504 XML fields.

just a punk 08-08-2017 08:36 AM

Quote:

Originally Posted by magneto664 (Post 21935317)
Hey cyberseo - can you pass rest of presets to bongacams, imlive, awempire and maybe xlovecam I see somewhere on forum but right now is hard to find. tnx.

Sure. Just post the feed URL's and I'll show how to import them. Actually I have no accounts at these programs, so I'm asking you to provide the feed examples.

EonBlue 08-08-2017 08:54 AM

Quote:

Originally Posted by CyberSEO (Post 21939823)
Thanks, I see now, but that's a bit different feed URL. It has no thumbnail image. Here is the proper one:

Code:

http://promo.awempire.com/xml/feed/index.php?siteId=jasmin&psId=69946&psTool=213_1&psProgram=revs&campaignId=&category=girl&limit=20&imageSizes=800x600,896x504&imageType=erotic&showOffline=0&extendedDetails=0&responseFormat=xml&performerId=&subAffId={SUBAFFID}
Open it in the browser and note the size800x600 and size896x504 XML fields.

Ok, tried that new feed URL but I'm still not getting the chat window on the post page. The thumb shows up just fine but when I click on it goes to the page and shows all of the performer info but there is no window with the live feed/chat.



.

just a punk 08-08-2017 09:18 AM

Quote:

Originally Posted by EonBlue (Post 21939919)
Ok, tried that new feed URL but I'm still not getting the chat window on the post page. The thumb shows up just fine but when I click on it goes to the page and shows all of the performer info but there is no window with the live feed/chat.

Please email me with the admin access of your WP control panel: cyberseo@cyberseo.net - I'll take a look.

EonBlue 08-08-2017 10:02 AM

Quote:

Originally Posted by CyberSEO (Post 21939955)
Please email me with the admin access of your WP control panel: cyberseo@cyberseo.net - I'll take a look.

Sent.


.

magneto664 08-15-2017 04:41 PM

Hi cyberseo - how to create a custom code with a value for example I have few feeds and would like a control cutom_field with my own value.

for example
my_custom_field with "value" = "my value 123"

tnx.


All times are GMT -7. The time now is 03:42 PM.

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