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)

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

Quote:

Originally Posted by magneto664 (Post 21956329)
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.

You can use PHP code like this:

Code:

$post['custom_fields']['my_custom_field'] = "my value 123";

magneto664 09-04-2017 02:14 PM

Quote:

Originally Posted by CyberSEO (Post 21957340)
You can use PHP code like this:

Code:

$post['custom_fields']['my_custom_field'] = "my value 123";

tnx for it. I work now with tags. how to wrote value from custom field to tags?



Quote:

$post['custom_fields']['my_custom_field'] = $post['tags'];
?

tnx

just a punk 09-08-2017 03:51 AM

Quote:

Originally Posted by magneto664 (Post 21985328)
tnx for it. I work now with tags. how to wrote value from custom field to tags?

Depends on how exactly the tags are formatted in the XML file. E.g. if they are comma-delimited, you can import them with this code:

Code:

$post['tags_input'] = explode(',', $post['custom_fields']['some_custom_field']);

magneto664 09-08-2017 05:08 AM

Quote:

Originally Posted by CyberSEO (Post 21990285)
Depends on how exactly the tags are formatted in the XML file. E.g. if they are comma-delimited, you can import them with this code:

Code:

$post['tags_input'] = explode(',', $post['custom_fields']['some_custom_field']);

I need insert one single custom field to one single tag.
tnx

edit:

Code:

$post['tags_input'] = $post['custom_fields']['some_custom_field'];
look correct for it?

magneto664 09-08-2017 05:16 AM

To be clear full working code I think is ok to use?

Code:

$post['tags_input'] = strtolower($post['custom_fields']['some_custom_field']);
for setup a single custom field in lowercase ?

tnx

just a punk 09-08-2017 07:13 AM

Yes, that's a fully working code.

magneto664 09-08-2017 07:44 AM

Quote:

Originally Posted by CyberSEO (Post 21990443)
Yes, that's a fully working code.


:thumbsup :thumbsup cool!

Can we go forward i try do more whitelabels with xml from sites :

cambuilder.com = streamate.com, I don't have idea how to run it I have only access to PDF

and XML

looks to small for me so must be a some trick how to export more.

xcam.com = camspower.com 20-30 % done

xml is located:
Code:

https://cams.dnxlive.com/xml/v0.3/allCamsInfo.xml
(a pretty big file)

cams.com

I don't know with value in xml i need to use or how to use this variables

Quote:

<color eye="Blue eyes" ethnicity="" hair="Blonde Hair"/>
imlive.com - i saw some examples on gfy.com mostyly on this xml i don't know how to put each image with is saves in some array in XML

tnx.

MaDalton 09-08-2017 08:29 AM

i was wondering - can i create a usable feed from Youtube?

just a punk 09-08-2017 11:50 AM

Quote:

Originally Posted by StefanG (Post 21990521)
i was wondering - can i create a usable feed from Youtube?

Yes, why not? E.g.: https://www.youtube.com/feeds/videos...q6Ov1UwYrWYkZA

Even freeware version of CyberSEO can process them as well as DailyMotion, IGN, Flickr, Vimeo and Ustream ones.

https://ps.w.org/cybersyn/trunk/scre...ng?rev=1676836

2magneto664, I see. Give me some time to make presets for these feeds.

magneto664 09-08-2017 12:02 PM

Quote:

2magneto664, I see. Give me some time to make presets for these feeds.
No rush - I already do some feeds but I need simply explanation I always have a problems in details or individual settings in XML files.

MaDalton 09-10-2017 10:25 AM

Quote:

Originally Posted by CyberSEO (Post 21990799)
Yes, why not? E.g.: https://www.youtube.com/feeds/videos...q6Ov1UwYrWYkZA

Even freeware version of CyberSEO can process them as well as DailyMotion, IGN, Flickr, Vimeo and Ustream ones.

now if only i could create a Youtube feed based on a keyword - like "cats"

Zeiss 09-10-2017 10:50 AM

Quote:

Originally Posted by CyberSEO (Post 21727657)
Block what? CyberSEO? It can't be blocked :) The plugin can easily scrape any kind of content from almost anywhere ;) Course you can block it by IP, but it won't help, because CyberSEO is able to work via proxy and staff user agent info :pimp

http://s16.radikal.ru/i190/1704/5c/29a8ef613a09.png


Wohoooo! :)

just a punk 09-18-2017 05:46 AM

Quote:

Originally Posted by StefanG (Post 21993141)
now if only i could create a Youtube feed based on a keyword - like "cats"

Youtube API allows you to generate the RSS feeds using various criteria such as keywords, channel name etc.

For example, this is the basic youtube RSS feed format for a specific channel:

https://www.youtube.com/feeds/videos.xml?channel_id=<channel_id>

Just replace <channel_id> with the actual youtube channel ID, and you'll get an RSS feed which is ready to be imported into CyberSyn or CyberSEO with two mouse clicks. E.g.:

https://www.youtube.com/feeds/videos...q6Ov1UwYrWYkZA

EonBlue 09-21-2017 02:27 PM

When using the plugin for image galleries is there a way to add a value to the description field for each individual image in a gallery? The value would be the same for each image in a single gallery but would vary from one gallery to the next.

For instance, I am using a lightbox plugin that displays the image description at the bottom of each image and I would like to insert a link to sponsor there. I have put it in manually by editing the post images directly but I would like to automate it with Cyberseo.

just a punk 10-26-2017 09:59 AM

Quote:

Originally Posted by EonBlue (Post 22009095)
When using the plugin for image galleries is there a way to add a value to the description field for each individual image in a gallery? The value would be the same for each image in a single gallery but would vary from one gallery to the next.

For instance, I am using a lightbox plugin that displays the image description at the bottom of each image and I would like to insert a link to sponsor there. I have put it in manually by editing the post images directly but I would like to automate it with Cyberseo.

This is very depends on the WP theme which is used at your site. You can add a post description of course, but it doesn't mean that it will be shown by your site template.

clickhappy 10-26-2017 07:07 PM

I bought this plugin. I found it to sooooooooo confusing and frustrating that I never even used it. When I tried to get help from you you were pretty short and your explanations were confusing and not helpful. Maybe its a Russian-rudeness thing, I dont know.
I ended up never using it. I regret buying it because I dont even understand what it does.

If youre a programmer then I guess go for it.
If you're a newbie I can't recommend it, its hard to understand

klinton 10-26-2017 11:01 PM

Quote:

Originally Posted by clickhappy (Post 22051681)
When I tried to get help from you you were pretty short and your explanations were confusing and not helpful. Maybe its a Russian-rudeness thing, I dont know.
I ended up never using it. I regret buying it because I dont even understand what it does.

If youre a programmer then I guess go for it.
If you're a newbie I can't recommend it, its hard to understand

it ain't THAT bad, although I admit that the more extended tutorial WITH SAMPLES would be really useful. just like builtin debug option

The guy doesnt charge arm and leg for totally custom parsers, so in any case, you may try to build something TOTALLY custom.

just a punk 10-27-2017 05:38 AM

Quote:

Originally Posted by clickhappy (Post 22051681)
I bought this plugin. I found it to sooooooooo confusing and frustrating that I never even used it. When I tried to get help from you you were pretty short and your explanations were confusing and not helpful. Maybe its a Russian-rudeness thing, I dont know.
I ended up never using it. I regret buying it because I dont even understand what it does.

If youre a programmer then I guess go for it.
If you're a newbie I can't recommend it, its hard to understand

It's a professional plugin. That's written on the site and that's not some ad slogan. It's not intended for newbies. The 7th version is much easier in use and there are many examples right in this thread of how to use it for this and for that, but you have to spend some time to learn it. First of all, you have to read the documentation (available on the site) and that's not just a recommendation. You must read it. After that there is a support forum and course you can send your questions to me by email.

bns666 11-15-2017 05:06 PM

:thumbsup for cyberseo and gallerymagic

just a punk 11-16-2017 08:49 AM

Quote:

Originally Posted by bimbocams (Post 22075954)
Hi can you tell me how i can use the camsoda json feed?

i have 2 feeds

Feed of Models online right now:

https://feed.camsoda.com/api/v1/brow...cams&type=revs

Feed of Tonight's featured shows:

https://feed.camsoda.com/api/v1/feat...HERE&type=revs

thnx

Here is the instruction for both Camsoda JSON feeds:

1) Download this file and unzip it into your /cyberseo/presets folder: http://www.cyberseo.net/downloads/share/camsoda.zip

2) Now choose the "Camsoda JSON Feed" preset in the "Select processing rules (preset)" drop-down box and add the your camsoda JSON feed to CyberSEO.

3) Save the feed settings (don't alter them) and pull the feed.

That's all you need to do :)

Depending on your WP theme, your index page will look like this:

http://s16.radikal.ru/i191/1711/23/561d3bc00af4.jpg

Here is an example of a single page:

http://i056.radikal.ru/1711/61/1520bf3d70d6.jpg

Could it be easier? :)

just a punk 11-16-2017 01:50 PM

Quote:

Originally Posted by bimbocams (Post 22077000)
Great thnx. Were can i edit the post titles?

Yes, of course. How exactly would you like to alter them?

XSAXS 11-16-2017 03:07 PM

When is your Black Friday 50% Off Sale gonna start?
That's the only thing I'm waiting for.

klinton 11-16-2017 03:22 PM

Quote:

Originally Posted by XSAXS (Post 22077308)
That's the only thing I'm waiting for.

just that ? nothing more ? got everything else ?:1orglaugh:1orglaugh

just a punk 11-18-2017 05:33 AM

Quote:

Originally Posted by bimbocams (Post 22078976)
Hi is it possible to randomize the titles with my own keywords?

Not sure, I've got your question. Do you want to add some random prefix/suffix to the titles, or you want to spin/synonymize them?

just a punk 11-18-2017 06:03 AM

Quote:

Originally Posted by bimbocams (Post 22078988)
I have a list of cam keywords and i want to use a diffrent keyword from that list in every diffrent post title.

I see. Do you want simply add it at the beginning of the post title or you want something else? Witch CyberSEO you can do everything, I just need to know what exactly you want.

just a punk 11-18-2017 06:40 AM

Quote:

Originally Posted by bimbocams (Post 22078994)
I want the keyword in the beginning followed by models name:thumbsup

You can use the following PHP code:

Code:

$keywords = array('my keyword', 'my keyword 2', 'my keyword 3');
$post['post_title'] = $keywords[rand(0, count($keywords) - 1)] . ' ' . $post['post_title'];

If your keywords are stored as a text file (one keyword per line), you can use it like this:

Code:

$keywords = file('http://www.mysite.com/keywordlist.txt');
$post['post_title'] = $keywords[rand(0, count($keywords) - 1)] . ' ' . $post['post_title'];

Just make sure to replace http://www.mysite.com/keywordlist.txt with the actual URL of your text file.

just a punk 11-23-2017 06:34 AM

Yes, of course. You can do it by altering your post template like this:

Code:

<p><img src="%xml_tags[thumb]%" /></p>
<p>%xml_tags[subject]%</p>


XSAXS 11-23-2017 07:49 AM

Hey CyberSEO.
Where's that 50% off BlackFriday coupon?
Or are you gonna make us wait for Friday?

Hook us up, bro.

j3rkules 11-23-2017 09:04 AM

Quote:

Originally Posted by XSAXS (Post 22082575)
Hey CyberSEO.
Where's that 50% off BlackFriday coupon?
Or are you gonna make us wait for Friday?

Hook us up, bro.

I am not sure if he offers some other discounts, but there is a one 20% off discount "GFYMEMBER".

Fenris Wolf 12-13-2017 08:20 PM

Can I build tube (content pulled from .CSV files provided and RSS added / deleted videos) and Reddit aggregator sites easily with this?

just a punk 12-14-2017 07:26 AM

Quote:

Originally Posted by Fenris Wolf (Post 22115709)
Can I build tube (content pulled from .CSV files provided and RSS added / deleted videos) and Reddit aggregator sites easily with this?

Sure, you can do everything of that (plus many many many more) with ease, except the auto deleting videos via RSS. Actually I wanted to make a special plugin for that, because it's not really hard to do and it can work in conjunction with CyberSEO.

Please find more details here: CyberSEO 7

topadult 01-09-2018 05:44 AM

Can we use your script to build a Chaturbate cam site?

bns666 01-09-2018 06:19 AM

Quote:

Originally Posted by topadult (Post 22155318)
Can we use your script to build a Chaturbate cam site?

it's described here: https://gfy.com/21835426-post21.html

just a punk 01-09-2018 06:53 AM

Quote:

Originally Posted by bns666 (Post 22155378)

Yes. And here is a ready-to-use preset for that: http://www.cyberseo.net/downloads/share/chaturbate.zip

Just unzip it into your /cyberseo/presets folder and you will be able to import Chaturbate feeds in two mouse clicks. No additional actions needed.

BTW, I've just updated the Reddit preset. So you can import Reddit content (both images and gif videos) in two mouse clicks as well. Just select "Reddit RSS feed" in the dropdown box, add the RSS URL (e.g. https://www.reddit.com/r/nsfw/new/.rss) and save the settings. That's all you have to do. Now CyberSEO will parse it and generate WordPress posts on autopilot. It will even create the post thumbnails (featured images) using large high quality images instead of those small thumbs from the feed.

Fire and forget :)

P.S. Also here is a list of presets for adult tubes: Custom Prestes – CyberSEO

topadult 01-09-2018 07:32 AM

Quote:

Originally Posted by CyberSEO (Post 22155411)
Yes. And here is a ready-to-use preset for that: http://www.cyberseo.net/downloads/share/chaturbate.zip

Just unzip it into your /cyberseo/presets folder and you will be able to import Chaturbate feeds in two mouse clicks. No additional actions needed.

BTW, I've just updated the Reddit preset. So you can import Reddit content (both images and gif videos) in two mouse clicks as well. Just select "Reddit RSS feed" in the dropdown box, add the RSS URL (e.g. https://www.reddit.com/r/nsfw/new/.rss) and save the settings. That's all you have to do. Now CyberSEO will parse it and generate WordPress posts on autopilot. It will even create the post thumbnails (featured images) using large high quality images instead of those small thumbs from the feed.

Fire and forget :)

P.S. Also here is a list of presets for adult tubes: Custom Prestes ? CyberSEO

Sounds great.
Can you send me sample of white label webcam sites using your script, especially Chaturbate platform?

just a punk 01-09-2018 08:17 AM

Quote:

Originally Posted by topadult (Post 22155453)
Sounds great.
Can you send me sample of white label webcam sites using your script, especially Chaturbate platform?

Here are screenshots from my test site on localhost (I don't run any online cam site personally):

http://s018.radikal.ru/i506/1706/d0/5daad38f0de7.jpg

http://s16.radikal.ru/i190/1706/cc/eed2948dede4.jpg

As you must understand, I can not provide any URL of sites that belong to my customers w/o their permission. So this is all I can show.

P.S. The most important thing is that with CyberSEO you can mix many various cams (e.g. Bonga, Chaturbate, LiveJasmin etc) on one single site. Your own site!

P.P.S. I was using a free WordPress theme for the example above. You can use any other theme and the result will look a way different.

topadult 01-09-2018 08:34 AM

Quote:

Originally Posted by CyberSEO (Post 22155555)
As you must understand, I can not provide any URL of sites that belong to my customers w/o their permission. So this is all I can show.

P.S. The most important thing is that with CyberSEO you can mix many various cams (e.g. Bonga, Chaturbate, LiveJasmin etc) on one single site. Your own site!

P.P.S. I was using a free WordPress theme for the example above. You can use any other theme and the result will look a way different.

Final questions:
1) Do you offer Skype support?
2) Is there any new year coupon?
3) Can I pay via Paypal beside 2CO?

just a punk 01-09-2018 08:38 AM

Quote:

Originally Posted by topadult (Post 22155579)
Final questions:
1) Do you offer Skype support?
2) Is there any new year coupon?
3) Can I pay via Paypal beside 2CO?

Unfortunately, the answer to all questions is "no". As about PayPal, so it's being accepted by 2CO w/o any problem.

EonBlue 01-09-2018 11:11 AM

Is there a way to display the performer image instead of the "Room is currently offline" message for Chaturbate? It looks really shitty when that message is shown. (Fault of the Chaturbate iframe and not your script). At least LiveJasmin does it automatically and it looks much better.

just a punk 01-09-2018 11:39 AM

Quote:

Originally Posted by EonBlue (Post 22155972)
Is there a way to display the performer image instead of the "Room is currently offline" message for Chaturbate? It looks really shitty when that message is shown. (Fault of the Chaturbate iframe and not your script). At least LiveJasmin does it automatically and it looks much better.

You should ask Chaturbate about it. CyberSEO embeds their iframes into your posts, but it can not control what exactly is being shown inside.


All times are GMT -7. The time now is 02:25 PM.

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