GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   CyberSEO 6.00 has been released (https://gfy.com/showthread.php?t=1062553)

fspwebmaster 08-07-2012 12:23 PM

Quote:

Originally Posted by CyberSEO (Post 19109005)
Your password should be working now. Sorry for the inconvenience.

Yep, it works fine now, thanks!

Hey I understand that $hit happens so it's no big inconvenience, thanks for the quick fix, it's much appreciated!!

shinmusashi44 08-10-2012 07:04 AM

Do you have a walk through for the CyberSEO Suite version? It would be a huge help.

just a punk 08-10-2012 07:11 AM

Quote:

Originally Posted by shinmusashi44 (Post 19113970)
Do you have a walk through for the CyberSEO Suite version? It would be a huge help.

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.

shinmusashi44 08-10-2012 07:49 AM

Quote:

Originally Posted by CyberSEO (Post 19113981)
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.

Ok I'll do a little reading on the forum. I mainly wanted to know how to scrape galleries.

just a punk 08-10-2012 08:04 AM

Quote:

Originally Posted by shinmusashi44 (Post 19114026)
Ok I'll do a little reading on the forum. I mainly wanted to know how to scrape galleries.

There is a thread about it on Russian. Use Google translate to read it.

Inter-Sex 08-10-2012 09:02 AM

Quote:

Originally Posted by CyberSEO (Post 19114051)
There is a thread about it on Russian. Use Google translate to read it.

You have a link to this, will be hard for me to guess the right toppic. :)

just a punk 08-10-2012 09:27 AM

Quote:

Originally Posted by Inter-Sex (Post 19114141)
You have a link to this, will be hard for me to guess the right toppic. :)

Of course I have but I can't post it here because the GFY rules do not allow to publish links to other boards. Email me and I give you the link.

shinmusashi44 08-10-2012 08:21 PM

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 so

just a punk 08-11-2012 02:28 AM

Quote:

Originally Posted by shinmusashi44 (Post 19115025)
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.

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:

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_heighttrue);
    
$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], 01) == "/") {
            
$image "http://" parse_url($base_urlPHP_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;


Make sure to setup the following variables:
$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.

Quote:

Originally Posted by shinmusashi44 (Post 19115025)
2: How to remove the image from the RSS Feed, since said image is being used and stored locally as a featured image.

Simple do not store it locally (disable the appropriate option).

campimp 08-13-2012 10:49 PM

if i buy the single site version and like it, and decide to use it on more sites can i go from single site to the unlimited and just pay the difference

just a punk 08-14-2012 02:49 AM

Quote:

Originally Posted by campimp (Post 19119171)
if i buy the single site version and like it, and decide to use it on more sites can i go from single site to the unlimited and just pay the difference

Yes. You'll get a coupon which compensates the single blog edition's price.

pluginsite 08-29-2012 09:57 AM

two quick questions...

yes/no - so basically i can use this to set up my own wordpress sites that grab their content from rss feeds on other sites that i subscribe to in order to create automated wordpress sites of my own?

yes/no - can i get a coupon or something to try it out with before paying full price?

just a punk 08-30-2012 09:53 AM

Quote:

Originally Posted by pluginsite (Post 19151978)
two quick questions...

yes/no - so basically i can use this to set up my own wordpress sites that grab their content from rss feeds on other sites that i subscribe to in order to create automated wordpress sites of my own?

yes/no - can i get a coupon or something to try it out with before paying full price?

1) Yes.
2) Yes. The 85% off coupon code for CyberSEO Single Blog edition is "SUNNYAUGUST". But hurry up because it will be valid till the end of this summer (only 2 days left).

babymaker 08-31-2012 12:50 AM

Quote:

Originally Posted by CyberSEO (Post 19154090)
1) Yes.
2) Yes. The 85% off coupon code for CyberSEO Single Blog edition is "SUNNYAUGUST". But hurry up because it will be valid till the end of this summer (only 2 days left).

Just tried to buy single edition to try it with SUNNYAUGUST and updated cart price didnt change, is it over? Still aug 31st here.

just a punk 08-31-2012 03:59 AM

It's expired today (on August 31), but I've just prolonged it for one day more. Tomorrow it will be finally inactive.

dallasnovelty 08-31-2012 11:17 AM

I bought 2 copies so far and will probably buy a few more then just have to figure out how to use it ;)

V_RocKs 08-31-2012 11:20 AM

always good tools from you.

V_RocKs 08-31-2012 11:20 AM

100 happy CyberSEO clients

just a punk 08-31-2012 11:54 AM

Quote:

Originally Posted by dallasnovelty (Post 19156137)
I bought 2 copies so far and will probably buy a few more then just have to figure out how to use it ;)

Feel free to contact me by email or on Jabber/GTalk if you have any question, and make sure to check out the official support forum - there are many threads on how to efficiently use the plugin for this and for that.

P.S. A few more content spinning services will be added to SpinnerChief and built-in synonymizer soon. Stay tuned :pimp

babymaker 08-31-2012 04:15 PM

Kool, going to try it out :) Will buy in a few mins. If my internet connection stays up, waiting on techs should be here at 8pm.

adultflash 08-31-2012 07:54 PM

Great SEO Product.

ShoeBox 08-31-2012 07:55 PM

i heard gimme website is giving this edition away for free

XSAXS 09-01-2012 11:43 PM

Didn't I see a big coupon code for this somewhere?

XSAXS 09-01-2012 11:46 PM

Aw. Yep. Just found it in another thread... SUNNYAUGUST. But it seems to have expired now. I missed it.

babymaker 09-02-2012 12:29 AM

Quote:

Originally Posted by XSAXS (Post 19158477)
Aw. Yep. Just found it in another thread... SUNNYAUGUST. But it seems to have expired now. I missed it.

Tho it got extended, but still doesn't work, guess I missed it. My internet is on and off for 5 days now and verizon are idiots so barely functioning.

teomaxxx 09-02-2012 02:17 PM

Quote:

Originally Posted by XSAXS (Post 19158477)
Aw. Yep. Just found it in another thread... SUNNYAUGUST. But it seems to have expired now. I missed it.

had some problem yesterday, just a half day after experiation, lol
i wanted to give it a test, if i should buy unlimited domain license.....

Fiddler 09-03-2012 06:40 AM

anyone got that synonym table available? ;) or one they use?

just a punk 09-03-2012 06:44 AM

Do you need the adult-oriented one (500+ lines / 1000+ words)? I can sell it for $50.

Just please keep in mind that even with an ideal synonym table, the synonymized content still won't be as perfect as the manually written one.

just a punk 10-18-2012 04:26 AM

Parsing LiveJasmin XML feeds
 
My customers ask if it's possible use non-RSS feeds like LiveJasmin XML feed as content sources for WP blogs.

Here is the instruction on how to do that with CyberSEO.

1) Click the "Alter default settings" button.

2) Find the "XML section tag names (separate with commas)" field and add the "PERFORMERINFO" word there. The whole field may look like this: "ITEM,VIDEO,MOVIE,GALLERY,ENTRY,PERFORMERINFO" ).

3) Save the default settings and import your feed.

4) On the feed settings page assign some name to your feed ("Feed title:" box).

5) Now you have to decide which exactly XML sections you want to import into your posts. Let's assume you want to parse the following ones: <performerid>, <bio>, <picture> and <link>.

6) Find the "Custom fields" box and put the following lines there:

performerid->performerid
bio->bio
picture->picture
link->link


7) Now copy this code into the "PHP code <?php .. ?>" box:
PHP Code:

$post['guid'] = 'http://' $post['custom_fields']['performerid'];
$post['post_title'] = $post['custom_fields']['performerid'];
if (
is_array($post['custom_fields']['picture'])) {
    
$img $post['custom_fields']['picture'][rand(0count($post['custom_fields']['picture']) - 1)];
} else {
    
$img $post['custom_fields']['picture'];
}
$post['post_content'] = '<p><a href="' $post['custom_fields']['link'] . '"><img src="' $img '" /></a></p><p>' $post['custom_fields']['bio'] . '</p>'

8) Save settings and pull the feed.

Instruction example above just a basic example on how your non-standard feed can be parsed. There are many other sections that you may want to use as well (e.g. <turnon>, <turnoff>, <age> etc). To do so, you have to make the necessary changes in (6) and (7). Please find the additional info in the "XML section tag names (separate with commas)" part here: http://www.cyberseo.net/xml-syndicator/

just a punk 11-08-2012 02:46 AM

CyberSEO 6.30 is now available.

Changes:
  • The $post['custom_fields_attr'] array variable is now available for
  • the custom PHP code.
  • Improved handling of RSS image attachments. More attachment formats are supported now.
  • Fixed "400 Error" in the SpinChimp module.
  • The new "Generate from random post image" featured image creation method was added.
https://gfy.com/images/icons/alert.gif Don't forget to update your copy of the plugin!

money biz 11-10-2012 09:46 AM

I want to buy this but dont understand the auto comments. Does it post random comments for life or is there a set number. I watched the video 4 times lol.

nolongerexists 11-10-2012 09:51 AM

Auto comments module need serious upgrades but you can always use external plugins

just a punk 11-10-2012 10:13 AM

Quote:

Originally Posted by money biz (Post 19305983)
I want to buy this but dont understand the auto comments. Does it post random comments for life or is there a set number. I watched the video 4 times lol.

It will post comments for a pref-defined set.

just a punk 04-09-2013 08:09 AM

CyberSEO 6.50 is now available.

Changes:
  • * CyberSEO has been integrated with TheBestSpinner – a famous content spinning service.
    * The "Post type" option has been added. Now you can syndicate the feed contents as posts, pages and even custom post types.

just a punk 01-30-2014 08:02 AM

CyberSEO 6.70 has been released.

CyberSEO has been integrated with WordAi text spinner, what uses artificial intelligence to understand text and is able to automatically rewrite your article with the same readability as a human writer.

djroof 01-30-2014 08:13 AM

Nice work!!!

XSAXS 01-30-2014 03:33 PM

Quote:

Originally Posted by CyberSEO (Post 19963036)
CyberSEO 6.70 has been released.

CyberSEO has been integrated with WordAi text spinner, what uses artificial intelligence to understand text and is able to automatically rewrite your article with the same readability as a human writer.

Wow. Nice work. Looking better all the time.

Any killer discounts going on right now? Specifically looking at the unlimited edition. :thumbsup

iwantchixx 01-30-2014 04:06 PM

Question, which I'm sure has been asked before, but using the rss importer thingy, can one grab hosted galleries from sponsor rss, grab the images and make a WP gallery with it, or am I thinking of something totally different?

just a punk 01-31-2014 12:11 AM

Quote:

Originally Posted by iwantchixx (Post 19963754)
Question, which I'm sure has been asked before, but using the rss importer thingy, can one grab hosted galleries from sponsor rss, grab the images and make a WP gallery with it, or am I thinking of something totally different?

This question has been answered many times too :) Yes, it can do all the mentioned above + many more. I.e. it can grab the galleries from any sponsor RSS feeds, upload the images to your WP-basesd site, crop the thumbnails, spin and translate to other languages the gallery titles/descriptions, generate tags, sort gallery posts by categories, insert your own ads (click here links, image banners or anything else) etc. And everything is being done on full autopilot.

just a punk 02-03-2014 12:42 AM

Quote:

Originally Posted by XSAXS (Post 19963715)
Wow. Nice work. Looking better all the time.

Any killer discounts going on right now? Specifically looking at the unlimited edition. :thumbsup

There are no killer ones, sorry. But as a GFYer, you can always use this coupon code: GFYMEMBER

:pimp


All times are GMT -7. The time now is 04:05 PM.

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