CyberSEO Suite: Tips and Tricks

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • just a punk
    So fuckin' bored
    • Jun 2003
    • 32393

    #46
    Auto-updating TubePress Blog

    Today I'll explain how to use CyberSEO Suite and TubePress Theme to build a full-featured auto-updating tube site.

    CyberSEO Suite + TubePress = Auto-updating Tube Site

    Today I'll show you how to use the TubePress theme with CyberSEO Suite.

    As the manual says, the TubePress theme makes our blog look like a tube site. However we have one small problem there. All these tube-like posts must be composed and published manually which is absolutely unacceptable because we want to have an auto updating tube site which will be able to parse at least standard XML FLV feeds in Smart Tube format. This is why we need CyberSEO Suite with its unlimited abilities to parse custom XML tags, create custom WP post fields and pre-process the aggregating posts.

    So, let's take some XML feed, e.g.: http://hostave4.net/rp/hfv/xml_feed_62.xml and syndicate it with CyberSEO Suite. Set up the necessary parameters on the "RSS Feed Syndicator" page, such as post categories, post tags, update frequency, set "Use syndication date" in the "Base date" field etc.

    Now we have to follow the instruction of TubePress theme about custom fields. Thus we have to put the following text into the "Custom Fields" box:

    Code:
    screen_url::screen_url
    screen::screen
    clip_url::clip_url
    flv::flv
    Each left argument is the name of XML tag and the right one is the name of custom field of WP post where the contents of mentioned tag must go to.

    As far as we know, the FLX XML files of Smart Tube format have no link to paysite and even have no FLV code which is required by TubePress theme. So we need to write a special PHP code which will fix all the mentioned problems in aggregating posts. Move to the "PHP Code <?php .. ?>" field and put the following PHP code there:

    PHP Code:
    // put the affiliate link to paysite into the 'sponsor link' custom field according to TubePress doc
    $post ['custom_fields'] ['sponsor link'] = 'http://www.ropeporn.com/index.html?id=XXX';
    // create an URL of thumb from it's path and filename
    $post ['custom_fields'] ['thumb'] = $post ['custom_fields'] ['screen_url'] . $post ['custom_fields'] ['screen'];
    // since FLV videos have no uniqui GUID's let's use their URL's as post GUID's  
    $post ['guid'] = $post ['custom_fields'] ['clip_url'] . $post ['custom_fields'] ['flv'];
    // put the post description into the 'descrip' custom field according to TubePress doc 
    $post ['custom_fields'] ['descrip'] = $post ['post_excerpt'];
    // now the most complex part. we have to create the FLV player code, assuming that our FLV player is stored as flvplayer.swf in the root dir of the blog
    $post ['post_excerpt'] = '<object id="player" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" name="player" width="600" height="480"> 
    <param name="movie" value="/flvplayer.swf" /> 
    <param name="allowfullscreen" value="true" /> 
    <param name="allowscriptaccess" value="always" /> 
    <param name="flashvars" value="image=' . $post ['custom_fields'] ['thumb'] . '&file=' . $post ['guid'] . '&autostart=false&linkfromdisplay=true&link=' . urlencode ( $post ['custom_fields'] ['sponsor link'] ) . '" /> <object type="application/x-shockwave-flash" data="/flvplayer.swf" width="600" height="480"> 
    <param name="movie" value="' . $post ['guid'] . '" /> 
    <param name="link" value="' . urlencode ( $post ['custom_fields'] ['sponsor link'] ) . '" /> 
    <param name="allowfullscreen" value="true" /> 
    <param name="linkfromdisplay" value="true" /> 
    <param name="allowscriptaccess" value="always" /> 
    <param name="flashvars" value="image=' . $post ['custom_fields'] ['thumb'] . '&file=' . $post ['guid'] . '&autostart=false&linkfromdisplay=true&link=' . urlencode ( $post ['custom_fields'] ['sponsor link'] ) . '" /> <p><a href="http://get.adobe.com/flashplayer">Get Flash</a> to see this player.</p> 
    </object> 
    </object><br />' . $post ['post_excerpt'] . "</p>";
    // now let's delete all useless custom fields 
    unset ( $post ['custom_fields'] ['screen_url'] );
    unset ( $post ['custom_fields'] ['screen'] );
    unset ( $post ['custom_fields'] ['clip_url'] );
    unset ( $post ['custom_fields'] ['flv'] ); 
    

    Now save the feed options and relax while the CyberSEO Suite syndicates the given XML file and updates our tube blog with synonymized content automatically. Fire and forget!


    Have a nice day
    Obey the Cowgod

    Comment

    • just a punk
      So fuckin' bored
      • Jun 2003
      • 32393

      #47
      Image path cloaking and nginx

      Some customers do complain that "image path cloaking does not work".

      Problem: This happens in case if nginx is being used as a front-end for Apache to process static files. In this case the .htaccess modrewrite rule for images in being ignored.

      Solution: There is only one way to avoid this problem. Do not use nginx for as a front end for jpg files.
      Obey the Cowgod

      Comment

      • just a punk
        So fuckin' bored
        • Jun 2003
        • 32393

        #48
        The CyberSEO Suite ver. 4.85 has been released

        Changes:
        • "Store Images Locally" option has been added. If enabled, all images from the syndicating feeds will be copied into the default uploads folder of this blog. Make sure that your "/wp-content/uploads" folder is writable.
        • "Don't Morph Titles" option has been added. Enable it to preserve the syndicating post tittles from morphing.
        • A few minor bugs were fixed.


        Hurry up to buy CyberSEO Suite for only $95!
        Obey the Cowgod

        Comment

        • 2intense
          Too lazy to set a custom title
          • Dec 2009
          • 12493

          #49
          Originally posted by Brujah
          Do you take epassporte?
          Most Affordable Firewall & Malware Protection for Linux Servers

          Comment

          • woj
            <&(©¿©)&>
            • Jul 2002
            • 47882

            #50
            50 CyberSEO Suite Tips and Tricks
            Custom Software Development, email: woj#at#wojfun#.#com to discuss details or skype: wojl2000 or gchat: wojfun or telegram: wojl2000
            Affiliate program tools: Hosted Galleries Manager Banner Manager Video Manager
            Wordpress Affiliate Plugin Pic/Movie of the Day Fansign Generator Zip Manager

            Comment

            • just a punk
              So fuckin' bored
              • Jun 2003
              • 32393

              #51
              Feeding your WordPress tube with YouTube content

              Here is another example on how to auto-fill your WordPress tube with the YouTube clips using YouTube RSS feed: http://www.cyberseo.net/wordpress-tube/

              This is example of such an auto-updating WordPress tube site: http://www.hcshemaletube.com/ which is powered by sponsored content only (no stolen shit). For mainstream you can do the same using YouTube RSS feed or tube clips form any other video hosting which allows to embed its content into your site.

              More examples will be added soon.

              Have a nice day!
              Last edited by just a punk; 09-23-2010, 04:52 AM.
              Obey the Cowgod

              Comment

              • d-null
                . . .
                • Apr 2007
                • 13724

                #52
                the updates look great

                __________________

                Looking for a custom TUBE SCRIPT that supports massive traffic, load balancing, billing support, and h264 encoding? Hit up Konrad!
                Looking for designs for your websites or custom tubesite design? Hit up Zuzana Designs
                Check out the #1 WordPress SEO Plugin: CyberSEO Suite

                Comment

                • just a punk
                  So fuckin' bored
                  • Jun 2003
                  • 32393

                  #53
                  CyberSEO Suite + TubePress3

                  Today I'll explain how to build an auto-updating WordPress tube site using CyberSEO Suite plugin and TubePress3 theme which is not compatible with its older versions (TubePress and TubePress2). You may find my manual on using CyberSEO Suite with TubePress/TubePress2 in my previous posts.

                  CyberSEO Suite + TubePress3 = Auto-updating Tube Site

                  So, let's take some XML feed, e.g.: http://royal-cash.com/index.php?hand...dwebmaster=100 and syndicate it with CyberSEO Suite. Set up the necessary parameters on the "RSS Feed Syndicator" page, such as post categories, post tags, update frequency, set "Use syndication date" in the "Base date" field etc.

                  Put the following text into the "Custom Fields" box:

                  Code:
                  screen_url::screen_url
                  screen::screen
                  clip_url::clip_url
                  flv::flv
                  Note that each left argument is the name of XML tag and the right one is the name of custom field of WP post where the contents of mentioned tag must go to.

                  Now move to the "PHP Code <?php .. ?>" field and put the following PHP code there:

                  PHP Code:
                  // Paysite URL
                  $post ['custom_fields'] ['dbt_text2'] = "HTTP://WWW.SITE.COM/";
                  // create an URL of thumb from it's path and file name
                  $screen = $post ['custom_fields'] ['screen'];
                  if (is_array ( $screen )) {
                  // choose one random screenshot if there are many
                      $post ['custom_fields'] ['dbt_text3'] = $post ['custom_fields'] ['screen_url'] . $screen [rand ( 0, count ( $screen ) - 1 )];
                  } else {
                  // or use the single one
                      $post ['custom_fields'] ['dbt_text3'] = $post ['custom_fields'] ['screen_url'] . $screen;
                  }
                  // uncomment the line below to store thumbnails on your server
                  // $post ['custom_fields'] ['dbt_text3'] = cseo_save_image ( $post ['custom_fields'] ['dbt_text3'], $post ['post_title'] );
                  // since FLV videos have no unique GUID's let's use their URL's as post GUID's  
                  $post ['guid'] = $post ['custom_fields'] ['clip_url'] . $post ['custom_fields'] ['flv'];
                  // save the FLV URL
                  $post ['custom_fields'] ['dbt_text'] = $post ['guid'];
                  // now let's delete all useless custom fields 
                  unset ( $post ['custom_fields'] ['screen_url'] );
                  unset ( $post ['custom_fields'] ['screen'] );
                  unset ( $post ['custom_fields'] ['clip_url'] );
                  unset ( $post ['custom_fields'] ['flv'] ); 
                  
                  Save the feed options and relax while the CyberSEO Suite syndicates the given XML file and updates our tube blog with synonymized content automatically. Fire and forget!

                  Here is an example of an auto-updating WordPress tube site which uses TubePress3 theme: http://www.truerussianporn.com/

                  Have a nice day
                  Last edited by just a punk; 10-08-2010, 04:01 AM.
                  Obey the Cowgod

                  Comment

                  • just a punk
                    So fuckin' bored
                    • Jun 2003
                    • 32393

                    #54
                    Don't want to be an ass, but I have to announce that I don't accept Epassporte anymore

                    The available payment options are: PayPal, VISA/MC and Webmoney.
                    Obey the Cowgod

                    Comment

                    • just a punk
                      So fuckin' bored
                      • Jun 2003
                      • 32393

                      #55
                      As it was announced earlier, a single blog license CyberSEO Suite is now available for only $35. You can instantly order yours at http://www.cyberseo.net/ for Paypal, VISA/MC or Webmoney.
                      Obey the Cowgod

                      Comment

                      • tonyparra
                        Confirmed User
                        • Jul 2008
                        • 4568

                        #56
                        Gimme one!

                        High Performance Vps $10 Linode
                        Manage your Digital Ocean, Linode, or Favorite Cloud Server. Simple, fast, and secure Server Pilot

                        Comment

                        • pornguy
                          Too lazy to set a custom title
                          • Mar 2003
                          • 62912

                          #57
                          Not only is this a top notch product but so is its creator. I love this tool and have used it for a while now.
                          PornGuy skype me pornguy_epic

                          AmateurDough The Hottes Shemales online!
                          TChicks.com | Angeles Cid | Mariana Cordoba | MAILERS WELCOME!

                          Comment

                          • tonyparra
                            Confirmed User
                            • Jul 2008
                            • 4568

                            #58
                            Originally posted by pornguy
                            Not only is this a top notch product but so is its creator. I love this tool and have used it for a while now.
                            im sold its pornguy approved!

                            High Performance Vps $10 Linode
                            Manage your Digital Ocean, Linode, or Favorite Cloud Server. Simple, fast, and secure Server Pilot

                            Comment

                            • just a punk
                              So fuckin' bored
                              • Jun 2003
                              • 32393

                              #59
                              The price for single blog version of CyberSEO Suite has been reduced to $24.95 only!
                              Obey the Cowgod

                              Comment

                              • just a punk
                                So fuckin' bored
                                • Jun 2003
                                • 32393

                                #60
                                CyberSEO Affiliate Program

                                The official CyberSEO Affiliate Program has been launched today!

                                Become a partner and earn 30% commission on every sale of CyberSEO Suite, and receive your money on Payoneer or via bank wire!

                                More info here: http://www.cyberseo.net/affiliate-program/
                                Obey the Cowgod

                                Comment

                                Working...