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)
-   -   Business Is there wordpress plugin which can do this ? (https://gfy.com/showthread.php?t=1198901)

freecartoonporn 05-24-2016 10:20 PM

Is there wordpress plugin which can do this ?
 
i have one master blog, where i upload images and create posts.
each post has around 15-20 images. which i manually upload them after retouching.

now i have 2 other blogs , lets call them sub-blogs.

now what i want it.

i get post url from master blog and feed it to sub-blog and sub-blog should download all images from post and host them with my sub-blog and not just link it from there.

then i can write article and post it on my sub-blog.
so i downt have to re upload same images in my 2 saub-blogs for each and every post and each and every image.

is there any plugin which can do some thing like this ?

thanks for your time.

freecartoonporn 05-24-2016 10:24 PM

damn i crossed 5k already.

just a punk 05-24-2016 11:04 PM

Quote:

Originally Posted by freecartoonporn (Post 20917898)
i have one master blog, where i upload images and create posts.
each post has around 15-20 images. which i manually upload them after retouching.

now i have 2 other blogs , lets call them sub-blogs.

now what i want it.

i get post url from master blog and feed it to sub-blog and sub-blog should download all images from post and host them with my sub-blog and not just link it from there.

then i can write article and post it on my sub-blog.
so i downt have to re upload same images in my 2 saub-blogs for each and every post and each and every image.

is there any plugin which can do some thing like this ?

thanks for your time.

See sig. The CyberSEO plugin does everything you have asked above. And yes, every sub-blog will download the images, crop the thumbs and host them all. It will even make a featured image for every gallery if you want it.

freecartoonporn 05-24-2016 11:12 PM

Quote:

Originally Posted by CyberSEO (Post 20917952)
See sig. The CyberSEO plugin does everything you have asked above. And yes, every sub-blog will download the images, crop the thumbs and host them all. It will even make a featured image for every gallery if you want it.

fuck me, is there anything cyberseo plugin does not do ?

which edition is better for me ?

edit: ill wait for some free plugin suggestion.

bns666 05-24-2016 11:36 PM

:thumbsup for cyberseo.

j3rkules 05-25-2016 03:11 AM

Quote:

Originally Posted by freecartoonporn (Post 20917961)
fuck me, is there anything cyberseo plugin does not do ?

which edition is better for me ?

edit: ill wait for some free plugin suggestion.

It is worth every penny.

just a punk 05-25-2016 08:42 AM

Quote:

Originally Posted by freecartoonporn (Post 20917961)
fuck me, is there anything cyberseo plugin does not do ?

which edition is better for me ?

edit: ill wait for some free plugin suggestion.

I would suggest to start with Single Blog one which is $29.95. So you can see if it works well for your needs.

freecartoonporn 05-25-2016 06:34 PM

Quote:

Originally Posted by CyberSEO (Post 20918750)
I would suggest to start with Single Blog one which is $29.95. So you can see if it works well for your needs.

can i later upgrade to unlimited site just by paying difference ?

thanks

just a punk 05-26-2016 06:46 AM

Quote:

Originally Posted by freecartoonporn (Post 20919830)
can i later upgrade to unlimited site just by paying difference ?

thanks

Not upgrade, but just buy the Unlimited License with a discount which fully covers the price of the Single Blog one.

just a punk 05-26-2016 07:05 AM

BTW, here is the step-by-step instruction on how to import the FHG galleries with CyberSEO.

1) Simply add the FHG RSS feed with CyberSEO. It can be the RSS feed of your "master blog" with galleries, or any sponsored FHG feed like this: Digital Desire Fully Hosted Galleries, this: MC-NUDES.COM - FREE HOSTED GALLERIES or this: Cindy Cupcakes Galleries (actually any FHG RSS feed will work).

2) Put the following code into the "PHP code" box:

Code:

if (!cseo_post_exists($post)) {
    $max_images = 20;
    $comumns = 4;
    $thumb_width = 180;
    $thumb_height = 240;
    add_image_size('thumbnail', $thumb_width, $thumb_height, true);
    if ($post['link'] != '') {
        $glink = urldecode($post['link']);
    } else {
        $glink = urldecode($post['guid']);
    }
    $gallery = cseo_file_get_contents($glink);
    global $cseo_last_effective_url;
    if (isset($cseo_last_effective_url)) {
        $base_url = $cseo_last_effective_url;
    } else {
        $base_url = $glink;
    }
    $base_url = parse_url($base_url, PHP_URL_SCHEME) . '://' . parse_url($base_url, PHP_URL_HOST) . parse_url($base_url, PHP_URL_PATH);
    if ($base_url[strlen($base_url) - 1] != '/') {
        $base_url = str_replace(basename($base_url), "", $base_url);
    }
    preg_match_all('/<a.+?href=[\s]?["|\']?([\w%-\.\/:\?&=]+\.jpg([\?0-9a-zA-Z_\-,=]+)?)["|\']?.*?>.*?<img.*?src.*?>/is', html_entity_decode($gallery), $matches);
    if (!isset($matches[1]) || !count($matches[1])) {
        return $post = false;
    }
    for ($i = 0; $i < min(((int) (count($matches[1]) / $comumns)) * $comumns, $max_images); $i++) {
        if (substr($matches[1][$i], 0, 2) == '//') {
            $matches[1][$i] = 'http:' . $matches[1][$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 = $base_url . $matches[1][$i];
        }
        cseo_must_be_binary($image);
        cseo_add_image_to_library($image, $post['post_title']);
    }
    $post['post_content'] = '<p>' . strip_tags($post['post_excerpt']) . '</p><p>[gallery columns="4" link="file"]</p>';
    $post['post_excerpt'] = $post['post_content'];
} else {
    $post = false;
}

3) Select "Generate from the first post image" in the "Post thumbnail" drop-down box, if you want to automatically create featured images for every imported gallery.

4) Save the settings and let CyberSEO do all your job on autopilot. It will check the feeds for updates, download the images to your host, crop the thumbnails, build the galleries and generate new WP posts with them. Even featured images will be created, if you want it.

just a punk 05-26-2016 08:04 AM

And one more thing. If you are going to manually create image galleries to your "master blog", you may want to try my another plugin Gallery Magic. You just just give it the URL of some existing gallery (e.g. FHG) and it automatically downloads the images to your host, crops the thumbs and etc. So it allows you to import the gallery into your WP post in just a couple of clicks. Lust like this:

http://www.cyberseo.net/image/img/gallery-magic-1.jpg

http://www.cyberseo.net/image/img/gallery-magic-2.jpg

http://www.cyberseo.net/image/img/gallery-magic-4.jpg

Also you can use it to butch import galleries from a CSV files (provided by almost all affiliate programs) in case if you are too lazy to import 100's of galleries manually:

http://www.cyberseo.net/image/img/gallery-magic-5.jpg

:pimp


All times are GMT -7. The time now is 07:53 AM.

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