CyberSEO

Status
Not open for further replies.
  1. The http://www.cyberseo.net/morphing-rss-host-mode-content-spinner/ which is available in Suite Edition only. This module allows one to create morphing RSS feeds. In two words, you write the posts using Spintax so every time your feed opened it has a different content. Here is an example: http://www.cyberseo.net/category/cyberseo/demos/feed/ - reload it as many times as you want and you'll get the different content there. Just make sure to hold "Shift" to prevent browser caching.
  2. Yes I do. Email me with your BHW nickname for 20% discount coupon.
  3. Yes it's able to parse any XML/RSS/Atom feeds. But if you want to pull the full articles from shortened feeds, you rather need to do some simple PHP coding or wait for CyberSEO ver. 6 which can extract full articles from shortened feeds automatically.
  4. No. CyberSEO is not based on any 3rd-party code such us SimplePie or anything else. It uses my own algorithms to parse the feeds, so it's the only autoblogging plugin which can parse not just RSS and Atom feeds. It can parse almost any XML feeds as well (various XML shop feeds, XML tube feeds etc).
You are welcome.
 
Yes it's able to parse any XML/RSS/Atom feeds. But if you want to pull the full articles from shortened feeds, you rather need to do some simple PHP coding or wait for CyberSEO ver. 6 which can extract full articles from shortened feeds automatically.You are welcome.


thank you for your detailed response. Will be taking up your discount offer.

meantime, please confirm if your existing version can in fact pull in the video or image, and the news article that appeared with that particular news on the source site? That was what I wanted to know on whether video or the image can be pulled in with the news and show up on my own news blog.

Or are you saying the your forthcoming version 6 will be able to do so?

This particular feature is essential I would like to see a demo site showing the video and/or image together with the news article - similar to that in the source site where the news/video/image were pulled from.
Let me know once this is available for viewing and your launch of version 6.

Best Regards
 
meantime, please confirm if your existing version can in fact pull in the video or image, and the news article that appeared with that particular news on the source site? That was what I wanted to know on whether video or the image can be pulled in with the news and show up on my own news blog.

Yes, it can do this but it usually requires some additional code. Here are the examples:

http://www.cyberseo.net/demo/tube-autoblog/ - autoblog tube demo. CyberSEO parses youtube RSS for keyword "funny" and generates the video posts with descriptions automatically.

http://www.cyberseo.net/demo/amazon-store-blog/ - this is an amazon shop demo. If you click on some item there (e.g. http://www.cyberseo.net/demo/amazon-store-blog/the-handmade-marketplace-how-to-sell-your-crafts-locally-globally-and-on-line/), you'll see it has a long description and a bigger picture - both are absent in the RSS feed.


Or are you saying the your forthcoming version 6 will be able to do so?

The upcoming CyberSEO v.6 is able to pull full articles (full text, images and videos and everything else which is available in the original article) from the shortened feeds automatically w/o any additional code, which was required by CyberSEO v.5 for the examples above and available in the http://www.cyberseo.net/category/cyberseo/examples/ section.
 
Yes, it can do this but it usually requires some additional code. Here are the examples:

http://www.cyberseo.net/demo/tube-autoblog/ - autoblog tube demo. CyberSEO parses youtube RSS for keyword "funny" and generates the video posts with descriptions automatically.

http://www.cyberseo.net/demo/amazon-store-blog/ - this is an amazon shop demo. If you click on some item there (e.g. http://www.cyberseo.net/demo/amazon-store-blog/the-handmade-marketplace-how-to-sell-your-crafts-locally-globally-and-on-line/), you'll see it has a long description and a bigger picture - both are absent in the RSS feed.




The upcoming CyberSEO v.6 is able to pull full articles (full text, images and videos and everything else which is available in the original article) from the shortened feeds automatically w/o any additional code, which was required by CyberSEO v.5 for the examples above and available in the http://www.cyberseo.net/category/cyberseo/examples/ section.

Yes, that's exactly what I wanted ...the full articles, images and/or video as available from the original article. And when is your v6 expected out ?
you mentioned about contacting you by email with my BHW username for the discount coupon code, what's your email address or you can pm to me.

Thanks
 
Yes, that's exactly what I wanted ...the full articles, images and/or video as available from the original article. And when is your v6 expected out ?
you mentioned about contacting you by email with my BHW username for the discount coupon code, what's your email address or you can pm to me.

Thanks


  1. The CyberSEO v.5. is also able to full full articles, but it requires some PHP knowledge (it's all explained on the official support forum). Version 6 is able to do it automatically. It will be available for purchase withing a month or so.
  2. You can find my contact info here: http://www.cyberseo.net/#contacts
 
hey CyberSEO, i tried to follow the wordpress tube but i couldnt get it to work it, still pulling and posting the feed without thumbmail and embed video.

what should i do?

thnks
 
Please answer the following questions:
1) Which exactly WP theme you have installed on your tube blog?
2) Which exactly code (manual) you are using to syndicate it?
 
im using adultsiteskins theme, and im using that link i pmd you,
Code:
[URL]http://tubefeeder.aebn.net/public/getFeed.php?feedID=18764&action=True[/URL]
and if by code you mean the php code, im using the one provided on the tutorial you sent me the link, of youtube rss + wordpress.
 
The problem with tube-style themes that almost every theme has its own way of adding thumbnails and video content. There is no standard at all, thus every theme needs its own manual.

Here is the autoblogging instruction for the AdultSiteSkins tube theme:

1) Make sure, your upload folder (by default it's wp-content/uploads) is writeable. You must CHMOD it to 777.

2) Syndicate the sponsored video XML feed with CyberSEO.

3) Assign the feed's title and switch the "Post thumbnail" option to "Generate from the 'thumb' custom field".

4) Scroll to the "Custom fields" box and paste there the following content:

Code:
screen_url->screen_url
screen->screen
clip_url->clip_url
flv->flv
duration->duration

5) Put the PHP code below into the "PHP code <?php .. ?>" box:

Code:
$paysite_url = 'http://www.google.com/';
$post['guid'] = $post['custom_fields']['clip_url'] . $post['custom_fields']['flv'];
if (!cseo_post_exists($post)) {
    if (isset($post['custom_fields']['duration'])) {
        $post['custom_fields']['duration'] = date('i:s', $post['custom_fields']['duration']);
    } else {
        $post['custom_fields']['duration'] = '5:00';
    }
    $screen = $post['custom_fields']['screen'];
    if (is_array($screen)) {
        $post['custom_fields']['thumb'] = $post['custom_fields']['screen_url'] . $screen[rand(0, count($screen) - 1)];
    } else {
        $post['custom_fields']['thumb'] = $post['custom_fields']['screen_url'] . $screen;
    }
    $post['post_excerpt'] = trim($post['post_excerpt']);
    $post['post_content'] = '[flv:' . $post['guid'] . ' ' . $post['custom_fields']['thumb'] . ' 750 564 ' . $paysite_url . ']';
    $post['post_content'] .= '<h3><a href="' . $paysite_url . '">Watch full-lenght video in HDV quality!</a></h3><p>' . $post['post_excerpt'] . '.</p>';
    unset($post['custom_fields']['screen_url']);
    unset($post['custom_fields']['screen']);
    unset($post['custom_fields']['clip_url']);
    unset($post['custom_fields']['flv']);
} else {
    $post = false;
}

Don't forget to replace "http://www.google.com/" with your affiliate link.

6) Click "Syndicate This Feed" and let the plugin do the rest of work for you.

IMPORTANT: It is assumed that the http://wordpress.org/extend/plugins/kvs-flv-player/ is already installed on your blog. Is not, make sure to install it.
 
Last edited:
It almost worked! now the thumbmails are working, but the embed video is not appearing, just the "place" that it should be, a white square.

i got KVS FLV installed.
 
Looks like something is wrong with your copy of KVS player. Try to use some other copy (e.g. the one from the officials site: http://www.kernel-video-sharing.com/files/kt_player.swf)

Just find this line:

Code:
$post['post_content'] = '[flv:' . $post['guid'] . ' ' . $post['custom_fields']['thumb'] . ' 750 564 ' . $paysite_url . ']';

and replace change it as follows:

Code:
$post['post_content'] = '[flv:' . $post['guid'] . ' ' . $post['custom_fields']['thumb'] . ' 750 564 ' . $paysite_url . ' http://www.kernel-video-sharing.com/files/kt_player.swf]';

If it will work, then the problem is definitely in your copy of the KVS player.

Edit: As an alternative to KVS Player, you may install the http://www.cyberseo.net/simple-flv/ plugin which uses JW Player 4 by LongTail Video Inc.
 
Last edited:
CyberSEO i suggest you build a support forum. :)
 
i tried to change the code and worked =D

so now i can just leave the code like this right?

thanks
 
You decide. But I'd suggest you to update your KVS player or switch to JW Player because I'm not sure that KVS guys will be happy with you for hotlinking their player...
 
i see, ill try to update

thanks

EDIT:

Everything seems to be working fine, minus the auto update.

i set the syndicator to auto pull from the feed each 5 minutes, but its not working.

when i click the "pull from feed now" buttom it works fine, but the automatic stuff isnt working properly.

any fix?
 
Last edited:
It's not a bug. It's a feature :)

If the update method is set to "auto" (the default option) then the feeds will be pulled only when someone opens your blog in the browser (http://codex.wordpress.org/Function_Reference/wp_schedule_event). In other words, if you set it to update every 5 minutes and there was no single visit since that time, the feeds won't be pulled. Thus is you want to be sure that your blog updates every given period of time, use http://en.wikipedia.org/wiki/Cron.
 
Last edited:
i tried to follow the wordpress platforms systems tube but i could not get it to perform it, still getting and posting the take care of without thumbmail and consist of movie.
 
im a little late to the party but can someone explain what cyberseo plugin does? in simple terms please.
 
i tried to follow the wordpress platforms systems tube but i could not get it to perform it, still getting and posting the take care of without thumbmail and consist of movie.

What exactly plugin and tube theme you are using for it?

im a little late to the party but can someone explain what cyberseo plugin does? in simple terms please.

As its description says. It's a professional autoblogging and content spinning plugin. Please don't confuse professional and premium, because all those popular premium autoblogging plugins I knowabout are for newbies and they have nothing to do with professional autoblogging.
 
Last edited:
Status
Not open for further replies.
Back
Top