Import tube videos, livecam feeds, picture galleries and anything else into WordPress

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • MrT31
    Confirmed User
    • Aug 2012
    • 63

    #201
    Hello

    Two questions please .

    I use the the preset Smart Script tube with kvs pro . Work like a charm but I want to try
    with short chode of fluid player , the basic and extended .

    1/ can I do

    Code:
    $post['post_content'] =[fluid-player video=”customfieldurlvideo or xml value <video>″ vast_file=”wanttoberichxml” vtt_file=”urlthumbsvtt” vtt_sprite=”urlthumbs.jpg” layout=”default”
    or

    Code:
    $post['post_content'] = [fluid-player-extended
        vast_file="wanttoberichxml"
        layout="default"
        auto-play="autoPlay"
        logo="/mygreatlogopng"
        logo-position="top right"
        logo-opacity=".8"
        ad-text="adText"
        ad-cta-text="adCTAText"
        html-on-pause-block-width="300"
        html-on-pause-block-height="300"
        responsive="true"]
    
        [fluid-player-multi-res-video]
            [
                {"label": "720", "url": "customfieldurlvideo or xml value <video>"},
                {"label": "480", "url": "customfieldurlvideo or xml value <video>"}
            ]
        [/fluid-player-multi-res-video]
    
        [fluid-player-html-block]
            <div>
                <img src="/pubbannerpng" />
            </div>
        [/fluid-player-html-block]
    
    [/fluid-player-extended]
    Can I put in in custom field instead of $post['post_content']


    2/

    Is it possible to grab some info in a XML e.g "paysitetitle" to put it in wordpress custom taxonomy "studio" by e.g
    or in custom taxonomy of a custom post type please ?

    thanks a lot
    Last edited by MrT31; 06-04-2018, 04:53 AM. Reason: code
    Try Adxtrem High PAYOUT, great ad networks
    BEST CAM PROGRAM XLOVECASH - 35% lifetime payment every Monday
    Myfreesex.cam

    Comment

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

      #202
      I can't answer, because din't the the working actual "fluid player". Please post the real life example here. Also, does your WP theme supports it or you have some plugin installed, or all the code must be inserted into the post body by CyberSEO?
      Obey the Cowgod

      Comment

      • MrT31
        Confirmed User
        • Aug 2012
        • 63

        #203
        I Use fluidplayer as a plugin

        i cannot put url , put it can be found in plugin category in wordpress

        Some on my wordpress theme need to grab the player in a custom field (e.g video_code)
        and other in the php content as usual.

        by example
        with a normal smarttubescript xml format


        with the preset Smart Script tube with kvs pro

        Code:
        screen_url->screen_url
        screen->screen
        clip_url->clip_url
        flv->flv
        mp4->mp4
        duration->duration
        paysite->paysite_title
        Code:
        if (isset($post['custom_fields']['mp4']) && strlen($post['custom_fields']['mp4'])) {
            $post['custom_fields']['flv'] = $post['custom_fields']['mp4'];
            unset($post['custom_fields']['mp4']);
        }
        $post['guid'] = $post['custom_fields']['clip_url'] . $post['custom_fields']['flv'];
        if (!cseo_post_exists($post)) {
            $post['custom_fields']['duration'] = date('i:s', $post['custom_fields']['duration']);
            
            $screen = $post['custom_fields']['screen'];
            if (is_array($screen)) {
                $post['custom_fields']['thumb'] = $post['custom_fields']['screen_url'] . $screen[rand(0, count($screen) - 1)];
            } else {
                $post['custom_fields']['thumb'] = $post['custom_fields']['screen_url'] . $screen;
            }
            cseo_must_be_binary($post['guid']);
            cseo_must_be_binary($post['custom_fields']['thumb']);
            $post['post_excerpt'] = trim($post['post_excerpt']);
            $post['post_content'] = '[flv:' . $post['guid'] . ' ' . cseo_save_image($post['custom_fields']['thumb'], $post['post_title']) . ']';
            unset($post['custom_fields']['screen_url']);
            unset($post['custom_fields']['screen']);
            unset($post['custom_fields']['clip_url']);
            unset($post['custom_fields']['flv']);
        } else {
            $post = false;
        }

        I would to replace

        Code:
        $post['post_content'] = '[flv:' . $post['guid'] . ' ' . cseo_save_image($post['custom_fields']['thumb'], $post['post_title']) . ']';
        by the fluid player 's short code

        this one
        Code:
        [fluid-player video=”[U]url of the video grabbed in the xml[/U] ″ vast_file=”wanttoberichxml” vtt_file=”urlthumbsvtt” vtt_sprite=”urlthumbs.jpg” layout=”default”
        or this one

        Code:
        [fluid-player-extended
            vast_file="wanttoberichxml"
            layout="default"
            auto-play="autoPlay"
            logo="/mygreatlogopng"
            logo-position="top right"
            logo-opacity=".8"
            ad-text="adText"
            ad-cta-text="adCTAText"
            html-on-pause-block-width="300"
            html-on-pause-block-height="300"
            responsive="true"]
        
            [fluid-player-multi-res-video]
                [
                    {"label": "720", "url": "[U]url of the video grabbed in the xml [/U]"},
                    {"label": "480", "url": "[U]url of the video grabbed in the xml[/U] "}
                ]
            [/fluid-player-multi-res-video]
        
            [fluid-player-html-block]
                <div>
                    <img src="/pubbannerpng" />
                </div>
            [/fluid-player-html-block]
        
        [/fluid-player-extended]
        the most important is to grab the url of the video and put in those short code



        thanks again
        Try Adxtrem High PAYOUT, great ad networks
        BEST CAM PROGRAM XLOVECASH - 35% lifetime payment every Monday
        Myfreesex.cam

        Comment

        • MrT31
          Confirmed User
          • Aug 2012
          • 63

          #204
          ok , I just replace

          Code:
          $post['post_content'] = '[flv:' . $post['guid'] . ' ' . cseo_save_image($post['custom_fields']['thumb'], $post['post_title']) . ']';
          by

          Code:
          $post['post_content'] or $post['custom_fields']['mycustomfield']= [fluid-player-extended
              vast_file="wanttoberichxml"
              layout="default"
              auto-play="autoPlay"
              logo="/mygreatlogopng"
              logo-position="top right"
              logo-opacity=".8"
              ad-text="adText"
              ad-cta-text="adCTAText"
              html-on-pause-block-width="300"
              html-on-pause-block-height="300"
              responsive="true"]
          
              [fluid-player-multi-res-video]
                  [
                      {"label": "720", "url": ' . $post['guid'] . '},
                      {"label": "480", "url": ' . $post['guid'] . '}
                  ]
              [/fluid-player-multi-res-video]
          
              [fluid-player-html-block]
                  <div>
                      <img src="/pubbannerpng" />
                  </div>
              [/fluid-player-html-block]
          
          [/fluid-player-extended]
          And apparently it works
          Try Adxtrem High PAYOUT, great ad networks
          BEST CAM PROGRAM XLOVECASH - 35% lifetime payment every Monday
          Myfreesex.cam

          Comment

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

            #205
            You can also use the the Fluid Player plugin for WordPress (https://wordpress.org/plugins/fluid-player/) and use these shortcodes:

            Simple shortcode example:
            Code:
            [fluid-player video="foo.mp4" vast_file="vast.xml"  vtt_file="thumbs.vtt" vtt_sprite="thumbs.jpg" layout="default"]
            Extended shortcode example:
            Code:
            [fluid-player-extended
                vast_file="vast.xml"
                layout="default"
            
                auto-play="autoPlay"
                allow-download="true"
                playback-speed-control="true"
            
                logo="https://www.fluidplayer.com/images/yourlogo.png"
                logo-position="top right"
                logo-opacity=".8"
                logo-hyperlink="https://www.fluidplayer.com/"
            
                ad-text="adText"
                ad-cta-text="adCTAText"
            
                html-on-pause-block-width="100"
                html-on-pause-block-height="100"
            
                responsive="true"]
            
                [fluid-player-multi-res-video]
                    [
                        {"label": "720", "url": "https://cdn.fluidplayer.com/videos/1.3/fluidplayer_720.mp4"},
                        {"label": "480", "url": "https://cdn.fluidplayer.com/videos/1.3/fluidplayer_480.mp4"}
                    ]
                [/fluid-player-multi-res-video]
            
                [fluid-player-html-block]
                    <div>
                        <img src="https://www.fluidplayer.com/images/yourbanner.png" />
                    </div>
                [/fluid-player-html-block]
            
            [/fluid-player-extended]
            Obey the Cowgod

            Comment

            • MrT31
              Confirmed User
              • Aug 2012
              • 63

              #206
              yes , that' s what i've done.

              Download and install the fluid plugin

              and copy/paste the code like i've post below.

              I can grab the video url and put in the short code with ' . $post['guid'] . ' and it works


              by the way do you know if it's possible to grab a field of an smart tube xml line to put in in custom post field. by example <performer></performer> to put it in my custom post field that i've created "actresses" .

              thanks again
              Try Adxtrem High PAYOUT, great ad networks
              BEST CAM PROGRAM XLOVECASH - 35% lifetime payment every Monday
              Myfreesex.cam

              Comment

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

                #207
                Originally posted by MrT31
                by the way do you know if it's possible to grab a field of an smart tube xml line to put in in custom post field. by example <performer></performer> to put it in my custom post field that i've created "actresses" .
                Sure.

                1) Enter the feed settings page.

                2) Find the "Custom fields" box and put there the following line:

                performer->actresses

                3) Save the settings

                Find more information about this feature here: Content Syndicator – CyberSEO
                Obey the Cowgod

                Comment

                • MrT31
                  Confirmed User
                  • Aug 2012
                  • 63

                  #208
                  thanks
                  In fact I wanted to say custom taxonomy not custom field sorry .

                  I created in my wordpress theme function.php a custom taxonomy "actresses" and "studio".

                  And I would like to grab to the xml the <performer></performer> and <website></website> to my custom taxonomy actresses and studio
                  if it's possible .

                  thanks again
                  Try Adxtrem High PAYOUT, great ad networks
                  BEST CAM PROGRAM XLOVECASH - 35% lifetime payment every Monday
                  Myfreesex.cam

                  Comment

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

                    #209
                    Unfortunately custom taxonomies are not supported in the current version. But I'm going to implement them in one of the next updates.
                    Obey the Cowgod

                    Comment

                    • Bladewire
                      StraightBro
                      • Aug 2003
                      • 56228

                      #210
                      ↑↑↑ Excellent programmer & great tech support


                      Skype: CallTomNow

                      Comment

                      • MrT31
                        Confirmed User
                        • Aug 2012
                        • 63

                        #211
                        Originally posted by CyberSEO
                        Unfortunately custom taxonomies are not supported in the current version. But I'm going to implement them in one of the next updates.
                        Hello ,


                        Thank you for your answer .

                        No problem . for the moment Can I grab in xml the <performer></performer> field
                        to put as a tag or category in wordpress ? (not as a custom field , just a wordpress's tag or category)

                        maybe is a dumb question but I have read the content syndicator doc and i didn't understanf how to do it .
                        Try Adxtrem High PAYOUT, great ad networks
                        BEST CAM PROGRAM XLOVECASH - 35% lifetime payment every Monday
                        Myfreesex.cam

                        Comment

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

                          #212
                          Originally posted by MrT31
                          Hello ,


                          Thank you for your answer .

                          No problem . for the moment Can I grab in xml the <performer></performer> field
                          to put as a tag or category in wordpress ? (not as a custom field , just a wordpress's tag or category)

                          maybe is a dumb question but I have read the content syndicator doc and i didn't understanf how to do it .
                          You can do it via PHP code.

                          For categories:
                          Code:
                          $post['categories'][] = $xml_tags['performer'];
                          For tags:
                          Code:
                          $post['tags_input'][] = $xml_tags['performer'];
                          Also you can do it like this:

                          For categories:
                          Code:
                          $post['categories'][] = $post['custom_fields']['actresses'];
                          For tags:
                          Code:
                          $post['tags_input'][] = $post['custom_fields']['actresses'];
                          Obey the Cowgod

                          Comment

                          • magneto664
                            God Bless You
                            • Aug 2014
                            • 1470

                            #213
                            Originally posted by MrT31
                            No problem . for the moment Can I grab in xml the <performer></performer> field
                            to put as a tag or category in wordpress ? (not as a custom field , just a wordpress's tag or category)
                            I think I know what you try to do. I also think about it few weeks ago
                            yes custom taxonomies will be a perfect for it.
                            magneto664 📧 gmail.com
                            Cams.Zone 💘 Best CDN for Adult Content
                            My Fav: 👍 Chaturbate 👍 Stripchat 👍 AdultFriendFinder

                            Comment

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

                              #214
                              I have tow news for you a bad and a good ones.

                              A bad news: There is no discount coupons for CyberSEO plugin anymore (at least right now).
                              A good news: The price on CyberSEO has been refused for almost twice. Now you can order the unlimited domain license for only $99.95 or upgrade your old CyberSEO license ver. 5 or 6 to CyberSEO 7 for $45.95.
                              Obey the Cowgod

                              Comment

                              • magneto664
                                God Bless You
                                • Aug 2014
                                • 1470

                                #215
                                this plugin is so great that once again I would buy it
                                magneto664 📧 gmail.com
                                Cams.Zone 💘 Best CDN for Adult Content
                                My Fav: 👍 Chaturbate 👍 Stripchat 👍 AdultFriendFinder

                                Comment

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

                                  #216
                                  Just a quick reminder. If you do not use the automatic update feature, make sure to manually update the CyberSEO plugin to the latest edition.

                                  The plugin is changing constantly. For example, yesterday I have fixed some annoying bug related to import of comma- and semicolon-delimited CSV files. Many cool and new features will be added soon. So I recommend you to enable auto updates in the CyberSEO General Settings menu.
                                  Obey the Cowgod

                                  Comment

                                  • Brian mike
                                    #Alberta51
                                    • Oct 2014
                                    • 8735

                                    #217
                                    Originally posted by CyberSEO
                                    I have tow news for you a bad and a good ones.

                                    A bad news: There is no discount coupons for CyberSEO plugin anymore (at least right now).
                                    A good news: The price on CyberSEO has been refused for almost twice. Now you can order the unlimited domain license for only $99.95 or upgrade your old CyberSEO license ver. 5 or 6 to CyberSEO 7 for $45.95.
                                    I will gladly give it a try again and try out your forum support too this time

                                    Getting Ready for Tube, Cam, Pin site and more.

                                    Great offer you got there.
                                    Tube - Cam - Escorts - Top List
                                    Menu Tab - Banner - Header Link - Blog Post
                                    DM me

                                    Comment

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

                                      #218
                                      Originally posted by Brian mike
                                      I will gladly give it a try again and try out your forum support too this time
                                      Make sure you have an account at the support forum (it's hidden for the unregistered users). If you don't - just let me know and I'll add you there.
                                      Obey the Cowgod

                                      Comment

                                      • Brian mike
                                        #Alberta51
                                        • Oct 2014
                                        • 8735

                                        #219
                                        Originally posted by CyberSEO
                                        Make sure you have an account at the support forum (it's hidden for the unregistered users). If you don't - just let me know and I'll add you there.
                                        I have access to the support forum, starting working on my stuff tonight .
                                        Lots of info on your support forum :D . ( did not saw this previously eh eh eh )
                                        Tube - Cam - Escorts - Top List
                                        Menu Tab - Banner - Header Link - Blog Post
                                        DM me

                                        Comment

                                        • magneto664
                                          God Bless You
                                          • Aug 2014
                                          • 1470

                                          #220
                                          Will be nice to see what is new and was was fixed in last version.
                                          CyberSEO can U a update a changelog?
                                          CyberSEO Changelog – CyberSEO
                                          tnx
                                          magneto664 📧 gmail.com
                                          Cams.Zone 💘 Best CDN for Adult Content
                                          My Fav: 👍 Chaturbate 👍 Stripchat 👍 AdultFriendFinder

                                          Comment

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

                                            #221
                                            Originally posted by magneto664
                                            Will be nice to see what is new and was was fixed in last version.
                                            CyberSEO can U a update a changelog?
                                            CyberSEO Changelog – CyberSEO
                                            tnx
                                            Actually not much was changed. Just some bugs were fixed.

                                            * what's new in 7.032
                                            * - Added autoupdate for built-in presets
                                            *
                                            * what's new in 7.033
                                            * - Fixed bug with custom PHP code execution while full text articles are retrieved
                                            *
                                            * what's new in 7.034
                                            * - Fixed category sorting bug during custom PHP code execution
                                            *
                                            * what's new in 7.035
                                            * - Fixed post processing priority issue
                                            *
                                            * what's new in 7.036
                                            * - Better license protection
                                            *
                                            * what's new in 7.037
                                            * - Fixed bug in the comma-delimited CSV import function
                                            *
                                            * what's new in 7.038
                                            * - Improved migration from CyberSyn (the full-text extractor path now changed automatically)
                                            Obey the Cowgod

                                            Comment

                                            • NickBaer
                                              Nick Baer
                                              • Jun 2005
                                              • 1393

                                              #222
                                              Do you have some examples of working sites?

                                              I'm kind of full-up on Cams right now...

                                              But, I have my own sites, and I am an Affiliate of dozens of sites to promote.

                                              I'd have to check to see if they have (what kind of) feeds. And, perhaps, I need to have feeds regarding my own sites with content created by me.
                                              Made my first porno in 1986. Sold my first VHS in 1993. Did my first live Cam in 1994. Coach-Karl.com NickBaerGallery.com I host with MojoHost.com and To Buy or Sell Sites Imagine AI Content

                                              Comment

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

                                                #223
                                                O don't work with adult and nave no webcam sites online, but you can see their screenshots from my localhost test site: https://gfy.com/fucking-around-and-p...wordpress.html

                                                Actually with CyberSEO you can make a webcam hubs just with ease - it literally takes a couple of mouse clicks. The same applies to tubes, hosted galleries (TGP's) etc.
                                                Obey the Cowgod

                                                Comment

                                                • NickBaer
                                                  Nick Baer
                                                  • Jun 2005
                                                  • 1393

                                                  #224
                                                  I like the idea, but I would need setup assistance.

                                                  I maintain a couple-dozen sites, and just added serious Cam WLs and Tubes... so I 1) am all for automation and 2) looking for enough install and setup assist that I can learn from example after that.
                                                  Made my first porno in 1986. Sold my first VHS in 1993. Did my first live Cam in 1994. Coach-Karl.com NickBaerGallery.com I host with MojoHost.com and To Buy or Sell Sites Imagine AI Content

                                                  Comment

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

                                                    #225
                                                    Originally posted by NickBaer
                                                    I like the idea, but I would need setup assistance.

                                                    I maintain a couple-dozen sites, and just added serious Cam WLs and Tubes... so I 1) am all for automation and 2) looking for enough install and setup assist that I can learn from example after that.
                                                    Course I will provide the assistance but almost all the settings you need are available as ready to use presets.
                                                    Obey the Cowgod

                                                    Comment

                                                    • NickBaer
                                                      Nick Baer
                                                      • Jun 2005
                                                      • 1393

                                                      #226
                                                      Is this a stand-alone product, that makes its own webpage/pages... or does it require a WP and Theme installed first?

                                                      (Which is all OK, I just need to know the structure.)

                                                      I have the Domain, I would need a few minutes to create the subdomain. Then register it with Google when ready!
                                                      Made my first porno in 1986. Sold my first VHS in 1993. Did my first live Cam in 1994. Coach-Karl.com NickBaerGallery.com I host with MojoHost.com and To Buy or Sell Sites Imagine AI Content

                                                      Comment

                                                      • NickBaer
                                                        Nick Baer
                                                        • Jun 2005
                                                        • 1393

                                                        #227
                                                        Subdomain created, waiting on directions.
                                                        Made my first porno in 1986. Sold my first VHS in 1993. Did my first live Cam in 1994. Coach-Karl.com NickBaerGallery.com I host with MojoHost.com and To Buy or Sell Sites Imagine AI Content

                                                        Comment

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

                                                          #228
                                                          Originally posted by NickBaer
                                                          Is this a stand-alone product, that makes its own webpage/pages... or does it require a WP and Theme installed first?

                                                          (Which is all OK, I just need to know the structure.)

                                                          I have the Domain, I would need a few minutes to create the subdomain. Then register it with Google when ready!
                                                          It's a WordPress plugin which doesn't work alone. On the other hand, ever 1 or 4 site in the Internet works on WordPress, so it's a serious advantage for every site because there are thousands of thousands of plugins and templates (themes) that you can use our of the box for free.

                                                          For example, there are many plugins webcam and tube for WordPress that come with their own personal templates. With CyberSEO you can use all those templates or any other (one of many thousands) by your choice.
                                                          Obey the Cowgod

                                                          Comment

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

                                                            #229
                                                            Originally posted by NickBaer
                                                            Subdomain created, waiting on directions.
                                                            Did you buy the plugin already?
                                                            Obey the Cowgod

                                                            Comment

                                                            • Goethe
                                                              So Fuckin' Bored
                                                              • Nov 2014
                                                              • 1101

                                                              #230
                                                              Looks good, will pick up a copy soon
                                                              yes

                                                              Comment

                                                              • NickBaer
                                                                Nick Baer
                                                                • Jun 2005
                                                                • 1393

                                                                #231
                                                                Does it pick up feeds of new releases from AEBN, HotMovies, TLA, AdultEmpire?
                                                                Made my first porno in 1986. Sold my first VHS in 1993. Did my first live Cam in 1994. Coach-Karl.com NickBaerGallery.com I host with MojoHost.com and To Buy or Sell Sites Imagine AI Content

                                                                Comment

                                                                • NickBaer
                                                                  Nick Baer
                                                                  • Jun 2005
                                                                  • 1393

                                                                  #232
                                                                  Which is your native currency?
                                                                  Made my first porno in 1986. Sold my first VHS in 1993. Did my first live Cam in 1994. Coach-Karl.com NickBaerGallery.com I host with MojoHost.com and To Buy or Sell Sites Imagine AI Content

                                                                  Comment

                                                                  • NickBaer
                                                                    Nick Baer
                                                                    • Jun 2005
                                                                    • 1393

                                                                    #233
                                                                    Just purchased it.

                                                                    2Checkout is a real pain, but got it to go. Since I pay with PayPal, the first set of data gathering was unnecessary. And just because I am traveling in Prague, was no reason to display currency to Czech Kr... making me go change to USD!
                                                                    Made my first porno in 1986. Sold my first VHS in 1993. Did my first live Cam in 1994. Coach-Karl.com NickBaerGallery.com I host with MojoHost.com and To Buy or Sell Sites Imagine AI Content

                                                                    Comment

                                                                    • NickBaer
                                                                      Nick Baer
                                                                      • Jun 2005
                                                                      • 1393

                                                                      #234
                                                                      Waiting on the download email, hope you haven't quit for the day...!
                                                                      Made my first porno in 1986. Sold my first VHS in 1993. Did my first live Cam in 1994. Coach-Karl.com NickBaerGallery.com I host with MojoHost.com and To Buy or Sell Sites Imagine AI Content

                                                                      Comment

                                                                      • Brian mike
                                                                        #Alberta51
                                                                        • Oct 2014
                                                                        • 8735

                                                                        #235
                                                                        Originally posted by NickBaer
                                                                        Waiting on the download email, hope you haven't quit for the day...!
                                                                        Should take few minutes, 2checkout always have a delays to approved the charge
                                                                        His system seems to be all automated. Once you get the 2checkout email about charge approved you should be good to go.
                                                                        Tube - Cam - Escorts - Top List
                                                                        Menu Tab - Banner - Header Link - Blog Post
                                                                        DM me

                                                                        Comment

                                                                        • NickBaer
                                                                          Nick Baer
                                                                          • Jun 2005
                                                                          • 1393

                                                                          #236
                                                                          Will you be helping me install, or one of your staff?

                                                                          Will you help me with this, or will they: Does it pick up feeds of new releases from AEBN, HotMovies, TLA, AdultEmpire?
                                                                          Made my first porno in 1986. Sold my first VHS in 1993. Did my first live Cam in 1994. Coach-Karl.com NickBaerGallery.com I host with MojoHost.com and To Buy or Sell Sites Imagine AI Content

                                                                          Comment

                                                                          • NickBaer
                                                                            Nick Baer
                                                                            • Jun 2005
                                                                            • 1393

                                                                            #237
                                                                            Since I have sites that are catalogs of my DVD, VOD, Book and eBook content, will there be instructions on how I can create my own .csv files of stuff for your package to include?
                                                                            Made my first porno in 1986. Sold my first VHS in 1993. Did my first live Cam in 1994. Coach-Karl.com NickBaerGallery.com I host with MojoHost.com and To Buy or Sell Sites Imagine AI Content

                                                                            Comment

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

                                                                              #238
                                                                              Unfortunately it may take up to 24 hours for 2checkout to process your payment. I'm going to switch to PayPal form soon. Anyways your payment is safe (no single cent will go to nowhere).

                                                                              Originally posted by NickBaer
                                                                              Does it pick up feeds of new releases from AEBN, HotMovies, TLA, AdultEmpire?
                                                                              It does peek feeds from anywhere. There is no any other WordPress plugin which is able to pull such a huge number of various feeds of any format.
                                                                              Obey the Cowgod

                                                                              Comment

                                                                              • NickBaer
                                                                                Nick Baer
                                                                                • Jun 2005
                                                                                • 1393

                                                                                #239
                                                                                What does 2co do, take a Uber from Ohio to PayPal in Omaha to pick up the cash??

                                                                                I know my money is safe, but you got me hot to start this process yet today!

                                                                                Nothing like a huge new opportunity in the middle of a Thursday afternoon!
                                                                                Made my first porno in 1986. Sold my first VHS in 1993. Did my first live Cam in 1994. Coach-Karl.com NickBaerGallery.com I host with MojoHost.com and To Buy or Sell Sites Imagine AI Content

                                                                                Comment

                                                                                • NickBaer
                                                                                  Nick Baer
                                                                                  • Jun 2005
                                                                                  • 1393

                                                                                  #240
                                                                                  Go for it! There is no reason to process with anyone other than PayPal.
                                                                                  Made my first porno in 1986. Sold my first VHS in 1993. Did my first live Cam in 1994. Coach-Karl.com NickBaerGallery.com I host with MojoHost.com and To Buy or Sell Sites Imagine AI Content

                                                                                  Comment

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

                                                                                    #241
                                                                                    Originally posted by NickBaer
                                                                                    Just purchased it.

                                                                                    2Checkout is a real pain, but got it to go. Since I pay with PayPal, the first set of data gathering was unnecessary. And just because I am traveling in Prague, was no reason to display currency to Czech Kr... making me go change to USD!
                                                                                    I see. Unfortunately this could be a reason for a delay with 2checkout. Thus I will suggest you to contact them by phone/skype (it's toll free) and your payment will be processed within five minutes: +1 877 294 0273
                                                                                    Obey the Cowgod

                                                                                    Comment

                                                                                    • NickBaer
                                                                                      Nick Baer
                                                                                      • Jun 2005
                                                                                      • 1393

                                                                                      #242
                                                                                      email just arrived.

                                                                                      I downloaded it, but before I upload it to my Server, I need to know at what point you're going to help me with the install... so I don't go too far on my own, and slow things down.

                                                                                      It is sitting on my computer, .zip .
                                                                                      Made my first porno in 1986. Sold my first VHS in 1993. Did my first live Cam in 1994. Coach-Karl.com NickBaerGallery.com I host with MojoHost.com and To Buy or Sell Sites Imagine AI Content

                                                                                      Comment

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

                                                                                        #243
                                                                                        Originally posted by NickBaer
                                                                                        email just arrived.

                                                                                        I downloaded it, but before I upload it to my Server, I need to know at what point you're going to help me with the install... so I don't go too far on my own, and slow things down.

                                                                                        It is sitting on my computer, .zip .
                                                                                        You need to install WordPress first. After that just unzip CyberSEO and upload it into your /wp-content/plugins/ directory and activate it. I can help you to setup webcam or tube feeds, but I will need an access to your WordPress admin control panel. Email it (login/password) to me at cyberseo@cyberseo.net
                                                                                        Obey the Cowgod

                                                                                        Comment

                                                                                        • NickBaer
                                                                                          Nick Baer
                                                                                          • Jun 2005
                                                                                          • 1393

                                                                                          #244
                                                                                          email sent...

                                                                                          In the meantime, i'm so excited:

                                                                                          https://www.youtube.com/watch?v=8iwBM_YB1sE
                                                                                          Made my first porno in 1986. Sold my first VHS in 1993. Did my first live Cam in 1994. Coach-Karl.com NickBaerGallery.com I host with MojoHost.com and To Buy or Sell Sites Imagine AI Content

                                                                                          Comment

                                                                                          • NickBaer
                                                                                            Nick Baer
                                                                                            • Jun 2005
                                                                                            • 1393

                                                                                            #245
                                                                                            what time is it now?
                                                                                            Made my first porno in 1986. Sold my first VHS in 1993. Did my first live Cam in 1994. Coach-Karl.com NickBaerGallery.com I host with MojoHost.com and To Buy or Sell Sites Imagine AI Content

                                                                                            Comment

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

                                                                                              #246
                                                                                              5:27 am here and I've just woke up. I've got your emails and need some time to sort em out.

                                                                                              BTW just added a random cam feed as a demo: https://porno-mall.com/PMHotSites/wp - it's random because I don't know your webmaster ID at chaturbate or any other camsite to set up the proper feed.
                                                                                              Obey the Cowgod

                                                                                              Comment

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

                                                                                                #247
                                                                                                BTW, you can see livecam shows from different affiliate programs using WP tags like this:

                                                                                                LiveJasmin – Porno-Mall Hot Sites
                                                                                                Camsoda – Porno-Mall Hot Sites
                                                                                                BongaCams – Porno-Mall Hot Sites
                                                                                                Chaturbate – Porno-Mall Hot Sites

                                                                                                All cam shows at the same site. You can change the theme (template), add more cam programs, change the post layouts, translate them to over 100 languages, spin them and do everything you want - with CyberSEO you are not limited in any way.

                                                                                                But once again: it's just an example, because I don't know your actual webmaster ID in these cam programs.
                                                                                                Obey the Cowgod

                                                                                                Comment

                                                                                                • NickBaer
                                                                                                  Nick Baer
                                                                                                  • Jun 2005
                                                                                                  • 1393

                                                                                                  #248
                                                                                                  Thanks. it will be good to know the Times when you work.

                                                                                                  Next, I want to do feeds that are not Live Cam sites.

                                                                                                  Which is the correct Documentation file, to work through all of these possibilities?
                                                                                                  Made my first porno in 1986. Sold my first VHS in 1993. Did my first live Cam in 1994. Coach-Karl.com NickBaerGallery.com I host with MojoHost.com and To Buy or Sell Sites Imagine AI Content

                                                                                                  Comment

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

                                                                                                    #249
                                                                                                    Originally posted by NickBaer
                                                                                                    Thanks. it will be good to know the Times when you work.

                                                                                                    Next, I want to do feeds that are not Live Cam sites.

                                                                                                    Which is the correct Documentation file, to work through all of these possibilities?
                                                                                                    The documentation can be found here: CyberSEO 7 – CyberSEO

                                                                                                    Also lots of info is available at the official support forum: Support Forums – CyberSEO
                                                                                                    Obey the Cowgod

                                                                                                    Comment

                                                                                                    • NickBaer
                                                                                                      Nick Baer
                                                                                                      • Jun 2005
                                                                                                      • 1393

                                                                                                      #250
                                                                                                      You are wonderful!
                                                                                                      Made my first porno in 1986. Sold my first VHS in 1993. Did my first live Cam in 1994. Coach-Karl.com NickBaerGallery.com I host with MojoHost.com and To Buy or Sell Sites Imagine AI Content

                                                                                                      Comment

                                                                                                      Working...