Quick Question: I have 120 hand written blogs and Im not in the auto blogging game. Can cyberseo be useful to me and how?
CyberSEO 6.00 has been released
Collapse
X
-
-
I don't think so. It's a different thing which is intended to automate the things. For example, dmoz.org is a fully manual project which can't be automated. On the other hand, Google works is a 99% automated system which works on autopilot and almost does not require manual manipulations. Different concepts need different implementation.Obey the CowgodComment
-
Looks and sounds like a great plugin.
Just purchased the Lite Unlimited Edition as I have a lot of mainstream blogs it would work good for. I also want to try it out on a WP tube site.XXX Porn Pinboard-Pin Your Porn, Get DoFollow Backlinks, Done! | FreeSexPins | Asian Porn Videos | Free Porn VideosComment
-
Hi CyberSEO,
I see your're online and was hoping to catch you.
I purchased the Lite Unlimited Edition (Order Number : 4776885528) but the username and password you sent are getting rejected by your server.
I sent you and email, could you have a look-see please?XXX Porn Pinboard-Pin Your Porn, Get DoFollow Backlinks, Done! | FreeSexPins | Asian Porn Videos | Free Porn VideosComment
-
-
XXX Porn Pinboard-Pin Your Porn, Get DoFollow Backlinks, Done! | FreeSexPins | Asian Porn Videos | Free Porn VideosComment
-
Do you have a walk through for the CyberSEO Suite version? It would be a huge help.ICQ 635641271 [email protected]Comment
-
There is no walk through for all 1000's of possible roadways. The "walk through" will depend on a type of site you want to create (class-style blog, video blog, tube-like site, tgp-like site, pinterest-like site, review site etc), on content sources you want to use (RSS feeds, tube site feeds, sponsor-hosted XML video feeds) etc
There are many threads on official support forum that explain on how to make this and that with CyberSEO. Is you can't find the appropriate thread, just start your own one.Obey the CowgodComment
-
Ok I'll do a little reading on the forum. I mainly wanted to know how to scrape galleries.There is no walk through for all 1000's of possible roadways. The "walk through" will depend on a type of site you want to create (class-style blog, video blog, tube-like site, tgp-like site, pinterest-like site, review site etc), on content sources you want to use (RSS feeds, tube site feeds, sponsor-hosted XML video feeds) etc
There are many threads on official support forum that explain on how to make this and that with CyberSEO. Is you can't find the appropriate thread, just start your own one.ICQ 635641271 [email protected]Comment
-
Comment
-
Comment
-
I was wondering how to do these:
1: How to script a gallery scraper so that CyberSEO can scrape galleries from a standard RSS Feed.
2: How to remove the image from the RSS Feed, since said image is being used and stored locally as a featured image.
I posted on the forum over there too, maybe I could get you to do some custom job for $5 or soICQ 635641271 [email protected]Comment
-
1) Syndicate the FHG RSS feed (e.g. http://nats.ddfcash.com/ddfrss_22_1_...17_100_c_p.rss);
2) Put the following code into the "PHP code <?php .. ?>" box:
Make sure to setup the following variables:PHP Code:if (!cseo_post_exists($post)) { $max_images = 20; $thumb_width = 180; $thumb_height = 240; $link = "http://www.google.com/"; add_image_size('thumbnail', $thumb_width, $thumb_height, true); $gallery = cseo_file_get_contents($post['link']); global $cseo_last_effective_url; if (isset($cseo_last_effective_url)) { $base_url = $cseo_last_effective_url; } else { $base_url = $post['link']; } preg_match_all('/<a.+?href=[\s]?["|\']([\w%-\.\/:\?&=]+\.(jpg|jpeg|png|gif))["|\'].*?>.*?<img.*?src.*?>/is', html_entity_decode($gallery), $matches); for ($i = 0; $i < min(((int) (count($matches[1]) / 4)) * 4, $max_images); $i++) { if (stripos($matches[1][$i], "http://") !== false) { $image = $matches[1][$i]; } elseif (substr($matches[1][$i], 0, 1) == "/") { $image = "http://" . parse_url($base_url, PHP_URL_HOST) . $matches[1][$i]; } else { $image = str_replace(basename($base_url), "", $base_url) . $matches[1][$i]; } cseo_add_image_to_library($image, $post['post_title']); } $post['post_excerpt'] = strip_tags($post['post_excerpt']) . '<p>[gallery columns="4"]</p>'; $post['post_excerpt'] .= "<h2 align=\"center\"><a href=\"" . $link . "\" target=\"_blank\">Click Here For More!</a></h2>\n"; } else { $post = false; }
$max_images – max images to be added into the gallery;
$thumb_width – thumbnail width;
$thumb_height – thumbnail height ;
$link – your affiliate link to a paysite.
3) Select "Generate from the first post image" in the "Post thumbnail" drop-down box.
4) Save the settings.
Simple do not store it locally (disable the appropriate option).Obey the CowgodComment

Comment