View Single Post
Old 10-04-2012, 11:07 AM  
just a punk
So fuckin' bored
 
just a punk's Avatar
 
Industry Role:
Join Date: Jun 2003
Posts: 32,381

Quote:
Originally Posted by Relentless View Post
Yup. Tubes can't benefit from original text content. Just keep pumping out cookie-cutters full of the same dupe scene text and sponsor content used on thousands of other domains. Great idea.
Tubes - can't, but CyberSEO-powered sites can benefit from both: the video content (sponsored, or scrapped from other tubes such as xHamster, RedTube, XVideos etc) and the unique (spun) descriptions, in order to avoid the competition with those "thousands of other domains"

P.S. One my customer asked if it's possible for CyberSEO to pull videos from hosted video galleries like this or that and embed them into your own tube-blog. I answered: "sure, why not?". Here is the instruction for those who want to use such type of feeds on WP tubes that use popular AdultSiteSkins themes:

1) Install and activate the KVS FLV Player plugin.

2) Add the hosted video gallery feed.

3) Find the "Post thumbnail" option and set it to "Generate from the "thumb" custom field"

4) Put the following code snippet into the "PHP code <?php .. ?>" box:
PHP Code:
if (!cseo_post_exists($post)) {
    
$paysite 'HTTP://WWW.GOOGLE.COM/';
    
$content cseo_file_get_contents($post['link']);
    
set_post_thumbnail_size180240true );
    
preg_match('/addVariable.+?image.+?[\'|"](.*?)[\'|"]\)/'$content$image);
    
preg_match('/addVariable.+?file.+?[\'|"](.*?)[\'|"]\)/'$content$video);
    if (!isset(
$image[1]) || !isset($video[1])) {
        
preg_match('/image=(.*?)&/'$content$image);
        
preg_match('/file=(.*?)&/'$content$video);
    }
    if (isset(
$image[1]) && isset($video[1])) {
        
$post['custom_fields']['thumb'] = $image[1];
        
$post['post_content'] = $post['post_excerpt'] = '[flv:' $video[1] . ' ' $post['custom_fields']['thumb'] . ' 750 564 ' $paysite ']';
        return 
$post;
    }
}
$post false
5) Don't forget to replace "HTTP://WWW.GOOGLE.COM/" with your affiliate link and pull the feed.

Wanna take over your competitors? Use the content which is unreachable for their standard tube engines
__________________
Obey the Cowgod

Last edited by just a punk; 10-04-2012 at 11:12 AM..
just a punk is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote