Would There Be A Market For A Chaturbate WL Like This?..

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • EddyTheDog
    Just Doing My Own Thing
    • Jan 2011
    • 25433

    #1

    Business Would There Be A Market For A Chaturbate WL Like This?..

    Watch online gay cams, men chat rooms, Live Sex | Gay Live Cam XXX

    Anyone interested in something like this?..

    What other features would you like - Built in blog possibly - Would you prefer to configure the look yourself via an admin or pay to have it done by me for a bit extra?....

    What would you pay for it - Any other feedback?..

    Thanks

    EDIT: Warning, naked men!....
  • pinkz
    Mr 1%
    • May 2005
    • 1397

    #2
    Theres a WP plugin for CB WL sites similar to this, sorry to say it's a freebie!
    $$$$ Video Secrets $$$$

    Comment

    • EddyTheDog
      Just Doing My Own Thing
      • Jan 2011
      • 25433

      #3
      Originally posted by pinkz
      Theres a WP plugin for CB WL sites similar to this, sorry to say it's a freebie!
      Damn - Do you have a link?..

      Comment

      • pinkz
        Mr 1%
        • May 2005
        • 1397

        #4
        sexplugins dot com
        $$$$ Video Secrets $$$$

        Comment

        • EddyTheDog
          Just Doing My Own Thing
          • Jan 2011
          • 25433

          #5
          Originally posted by pinkz
          sexplugins dot com

          Thanks - To be honest what I have in mind is something with much more integration...

          Comment

          • pinkz
            Mr 1%
            • May 2005
            • 1397

            #6
            Why not make it work for other cam vendors, most offer some type of api or performer feed that way you are not limiting your market.
            $$$$ Video Secrets $$$$

            Comment

            • Paz
              Confirmed User
              • Jun 2012
              • 457

              #7
              Originally posted by EddyTheDog
              Watch online gay cams, men chat rooms, Live Sex | Gay Live Cam XXX

              Anyone interested in something like this?..
              Just building one now on what was a hosted tube site. I don't know where I found the script but it uses the Chaturbate API and you just do a "for each where cam='male'. It's taken two days to get the url rewrites & pagination working properly. The other problem is that a 2 meg XML feed is a bloody inefficient way to capture and process online cams, and that the individual cams are in an iframe but it's work in progress and I'm having fun too.

              Comment

              • EddyTheDog
                Just Doing My Own Thing
                • Jan 2011
                • 25433

                #8
                Originally posted by Paz
                Just building one now on what was a hosted tube site. I don't know where I found the script but it uses the Chaturbate API and you just do a "for each where cam='male'. It's taken two days to get the url rewrites & pagination working properly. The other problem is that a 2 meg XML feed is a bloody inefficient way to capture and process online cams, and that the individual cams are in an iframe but it's work in progress and I'm having fun too.
                I have 2 ideas for the feed - Just downloading and caching it with a cron job every few minutes works well - Then use the XML locally - Or writing it to a database that would keep all performer details and update them to being on/offline...

                I have been working with the downloaded XML file and it works well so I might stick with that.....

                PHP Code:
                <?php
                
                $cacheName = 'chatcache.xml';
                
                $ageInSeconds = 60;
                 
                if(!file_exists($cacheName) || filemtime($cacheName) > time() + $ageInSeconds); 
                {
                  $contents = file_get_contents('http://chaturbate.com/affiliates/api/onlinerooms/?format=xml&wm=isCir');
                  file_put_contents($cacheName, $contents);
                }
                
                ?>
                This is what I have been using to generate the cache file - EdgeProd will probably say it's crap code - It works though...

                Comment

                • AllAboutCams
                  Femcams.com
                  • Jul 2011
                  • 12234

                  #9
                  One that would rank better would be good
                  Binance - Blockchain and Crypto Asset Exchange
                  Chaturbate make money in cams

                  Comment

                  • EddyTheDog
                    Just Doing My Own Thing
                    • Jan 2011
                    • 25433

                    #10
                    Originally posted by pinkz
                    Why not make it work for other cam vendors, most offer some type of api or performer feed that way you are not limiting your market.
                    I was going to start with the CB one as I know it fairly well - I would move on to others later...

                    Comment

                    • EddyTheDog
                      Just Doing My Own Thing
                      • Jan 2011
                      • 25433

                      #11
                      Originally posted by AllAboutCams
                      One that would rank better would be good
                      I thought that - I would definitely address that...

                      Comment

                      • AllAboutCams
                        Femcams.com
                        • Jul 2011
                        • 12234

                        #12
                        Originally posted by EddyTheDog
                        I thought that - I would definitely address that...
                        I think just a case of title and a description
                        Binance - Blockchain and Crypto Asset Exchange
                        Chaturbate make money in cams

                        Comment

                        • pinkz
                          Mr 1%
                          • May 2005
                          • 1397

                          #13
                          Originally posted by EddyTheDog
                          I was going to start with the CB one as I know it fairly well - I would move on to others later...
                          let me know when you have moved on
                          $$$$ Video Secrets $$$$

                          Comment

                          • EddyTheDog
                            Just Doing My Own Thing
                            • Jan 2011
                            • 25433

                            #14
                            Originally posted by pinkz
                            let me know when you have moved on
                            I will - Thanks for your input...

                            Comment

                            • Paz
                              Confirmed User
                              • Jun 2012
                              • 457

                              #15
                              Originally posted by EddyTheDog
                              I have 2 ideas for the feed - Just downloading and caching it with a cron job every few minutes works well - Then use the XML locally - Or writing it to a database
                              Thanks for the code. My site's only a couple of weeks old but it's already getting 40 visits a day even though I don't rank very well. When they do come they have between 10 to 20 pages per visit so the potential for us is pretty high.

                              Comment

                              Working...