Which TGP script can do this?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • JamesM
    Confirmed User
    • Nov 2012
    • 732

    #1

    Which TGP script can do this?

    I provide dump in

    gallery-link|title

    #it then downloads all images from galleries,
    #creates thumbs acording to my predefined specification.
    #create a gallery using my custom template.
    #then in gallery each image open as new html page with next and previous buttons for images navigation.


    and then obviously on front page it will rotate the galleries.


    Thanks.


    Ex GF Films | Grab Dollars
    Up To 80% Rev-Share | 255 Day Cookie | Legal Content | Variety of Promo Tools | CCBill Program | GF Niche
    james[at]grabdollars[dot]com | ICQ::611-99-zero-zero-20
  • just a punk
    So fuckin' bored
    • Jun 2003
    • 32393

    #2
    WP (freeware) + CyberSEO ($29.95 per license) + the following small script to convert your text dump into the preoperly-formatted RSS feed:

    Code:
    <?php
    if (isset ( $_GET ["dump"] )) {
        $dump = file ( $_GET ["dump"] );
        $time = time ();
        echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
        echo "<rss version=\"2.0\">\n";
        echo "<channel>\n";
        echo "<title>My Feed</title>\n";
        foreach ( $dump as $item ) {
            list ( $url, $title ) = explode ( "|", trim ( $item ) );
            echo "       <item>\n";
            echo "               <title><![CDATA[" . $title . "]]></title>\n";
            echo "               <link><![CDATA[" . $url . "]]></link>\n";
            echo "               <guid><![CDATA[" . $url . "]]></guid>\n";
            echo "               <pubDate>" . date ( "D, d M  Y H:i:s O", $time ) . "</pubDate>\n";
            echo "               <description></description>\n";
            echo "       </item>\n";
            $time -= 86400;
        }
        echo "</channel>\n";
        echo "</rss>\n";
    }
    ?>
    The result site may look like this or like that depends on which exactly WP theme you are going to use.
    Obey the Cowgod

    Comment

    • _Lush_
      Confirmed User
      • Jul 2005
      • 536

      #3
      Gallery daemon
      IcQ 50611033

      Comment

      • JamesM
        Confirmed User
        • Nov 2012
        • 732

        #4
        Originally posted by CyberSEO
        WP (freeware) + CyberSEO ($29.95 per license) + the following small script to convert your text dump into the preoperly-formatted RSS feed:

        Code:
        <?php
        if (isset ( $_GET ["dump"] )) {
            $dump = file ( $_GET ["dump"] );
            $time = time ();
            echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
            echo "<rss version=\"2.0\">\n";
            echo "<channel>\n";
            echo "<title>My Feed</title>\n";
            foreach ( $dump as $item ) {
                list ( $url, $title ) = explode ( "|", trim ( $item ) );
                echo "       <item>\n";
                echo "               <title><![CDATA[" . $title . "]]></title>\n";
                echo "               <link><![CDATA[" . $url . "]]></link>\n";
                echo "               <guid><![CDATA[" . $url . "]]></guid>\n";
                echo "               <pubDate>" . date ( "D, d M  Y H:i:s O", $time ) . "</pubDate>\n";
                echo "               <description></description>\n";
                echo "       </item>\n";
                $time -= 86400;
            }
            echo "</channel>\n";
            echo "</rss>\n";
        }
        ?>
        The result site may look like this or like that depends on which exactly WP theme you are going to use.
        looks good, but the images arent opeing in new pages as html page , both sites are using something like lightbox or thickbox.

        arylia can do what i want but its just gallery creator and not tgp script, so i have to handle 2 separate installations., one for just creating gallery and another one is tgp script.

        thanks


        Ex GF Films | Grab Dollars
        Up To 80% Rev-Share | 255 Day Cookie | Legal Content | Variety of Promo Tools | CCBill Program | GF Niche
        james[at]grabdollars[dot]com | ICQ::611-99-zero-zero-20

        Comment

        • JamesM
          Confirmed User
          • Nov 2012
          • 732

          #5
          Originally posted by _Lush_
          Gallery daemon
          i have contacted the developer for demo.

          thanks.


          Ex GF Films | Grab Dollars
          Up To 80% Rev-Share | 255 Day Cookie | Legal Content | Variety of Promo Tools | CCBill Program | GF Niche
          james[at]grabdollars[dot]com | ICQ::611-99-zero-zero-20

          Comment

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

            #6
            Originally posted by JamesM
            looks good, but the images arent opeing in new pages as html page , both sites are using something like lightbox or thickbox.
            You are the one who decides who exactly the images are being shown. First of all, you can enable "gallery navigation" in the lightbox plugin to display "previous/next" buttons. Alternatively you may use the WP built-in feature to show every image in the new HTML page. So it's just a matter of your WP setting, but nothing else.
            Obey the Cowgod

            Comment

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

              #7
              Read this: http://codex.wordpress.org/Gallery_Shortcode

              A shortcode to display images as files: [gallery columns="4" link="file"]
              A shortcode to display images as a HTML pages: [gallery columns="4"]

              The CyberSEO plugin allows you to use any method
              Obey the Cowgod

              Comment

              • _Lush_
                Confirmed User
                • Jul 2005
                • 536

                #8
                Originally posted by JamesM
                i have contacted the developer for demo.

                thanks.
                Np
                I bought a copy when he first developed script. Worked great for ripping any gallery and creating new ones with your templates.
                IcQ 50611033

                Comment

                • JamesM
                  Confirmed User
                  • Nov 2012
                  • 732

                  #9
                  Originally posted by CyberSEO
                  You are the one who decides who exactly the images are being shown. First of all, you can enable "gallery navigation" in the lightbox plugin to display "previous/next" buttons. Alternatively you may use the WP built-in feature to show every image in the new HTML page. So it's just a matter of your WP setting, but nothing else.
                  Originally posted by CyberSEO
                  Read this: http://codex.wordpress.org/Gallery_Shortcode

                  A shortcode to display images as files: [gallery columns="4" link="file"]
                  A shortcode to display images as a HTML pages: [gallery columns="4"]

                  The CyberSEO plugin allows you to use any method
                  checked cyberseo and looks great, but looking for something non wp for current project.

                  Thanks


                  Ex GF Films | Grab Dollars
                  Up To 80% Rev-Share | 255 Day Cookie | Legal Content | Variety of Promo Tools | CCBill Program | GF Niche
                  james[at]grabdollars[dot]com | ICQ::611-99-zero-zero-20

                  Comment

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

                    #10
                    Np, you are welcome.
                    Obey the Cowgod

                    Comment

                    • Oracle Porn
                      Affiliate
                      • Oct 2002
                      • 24433

                      #11
                      Arylia is what you are looking for.


                      Comment

                      • crockett
                        in a van by the river
                        • May 2003
                        • 76818

                        #12
                        Liquid Media could do all that and it was a good script, but I think the developer went AWOL.
                        In November, you can vote for America's next president or its first dictator.

                        Comment

                        • JamesM
                          Confirmed User
                          • Nov 2012
                          • 732

                          #13
                          Originally posted by Oracle Porn
                          Arylia is what you are looking for.
                          already have arylia, but need something to rotate galleries also and all in one.

                          thanks

                          Originally posted by crockett
                          Liquid Media could do all that and it was a good script, but I think the developer went AWOL.
                          you have any link ?

                          thanks


                          Ex GF Films | Grab Dollars
                          Up To 80% Rev-Share | 255 Day Cookie | Legal Content | Variety of Promo Tools | CCBill Program | GF Niche
                          james[at]grabdollars[dot]com | ICQ::611-99-zero-zero-20

                          Comment

                          • Klen
                            • Aug 2006
                            • 32235

                            #14
                            Originally posted by JamesM
                            already have arylia, but need something to rotate galleries also and all in one.

                            thanks



                            you have any link ?

                            thanks
                            Liquid was able to do it,but it went to shitter so dont think you can buy it.Beside it,only script which can do that is i think smartcj.com .

                            Comment

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

                              #15
                              If you could find one that printed dollar bills that would be good as well.....

                              Bloody kids don't know what work is -

                              Comment

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

                                #16
                                Good sig you have
                                Obey the Cowgod

                                Comment

                                • JamesM
                                  Confirmed User
                                  • Nov 2012
                                  • 732

                                  #17
                                  Originally posted by KlenTelaris
                                  Liquid was able to do it,but it went to shitter so dont think you can buy it.Beside it,only script which can do that is i think smartcj.com .
                                  yes smartcj is already on the list.

                                  Thanks

                                  Originally posted by EddyTheDog
                                  If you could find one that printed dollar bills that would be good as well.....

                                  Bloody kids don't know what work is -

                                  Thanks for your time.


                                  Ex GF Films | Grab Dollars
                                  Up To 80% Rev-Share | 255 Day Cookie | Legal Content | Variety of Promo Tools | CCBill Program | GF Niche
                                  james[at]grabdollars[dot]com | ICQ::611-99-zero-zero-20

                                  Comment

                                  • fris
                                    Too lazy to set a custom title
                                    • Aug 2002
                                    • 55679

                                    #18
                                    Originally posted by crockett
                                    Liquid Media could do all that and it was a good script, but I think the developer went AWOL.
                                    every project he does he goes missingk same with his old nn script
                                    Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

                                    Comment

                                    • crockett
                                      in a van by the river
                                      • May 2003
                                      • 76818

                                      #19
                                      Originally posted by fris
                                      every project he does he goes missingk same with his old nn script
                                      Yea I know.. that was one of my main concerns when I bought the script. I think it's the typical case of a good coder doesn't' always make a good support person.

                                      His script worked great for what I wanted but then he disappeared.

                                      On a side note, when Arylia was put up for sale, I looked into buying and the original developer already had most of a custom CMS developed to run a babelog front and back end.

                                      Would of been one of the better ones out there but it was never released. I'm not sure if who ever ended up taking over Arylia got that in the deal or not, but I was always surprised that it was never released because I figured it would of made them a decent amount of money.
                                      Last edited by crockett; 02-10-2013, 05:25 AM.
                                      In November, you can vote for America's next president or its first dictator.

                                      Comment

                                      • Oracle Porn
                                        Affiliate
                                        • Oct 2002
                                        • 24433

                                        #20
                                        Originally posted by JamesM
                                        already have arylia, but need something to rotate galleries also and all in one.

                                        thanks
                                        there is no all in one, you can make an rss output using arylia and have ST get it so it updates and rotates.


                                        Comment

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

                                          #21
                                          Originally posted by Oracle Porn
                                          there is no all in one, you can make an rss output using arylia and have ST get it so it updates and rotates.
                                          Yep - RSS is the key.

                                          Integrate some iftt.com recipes and you could be onto something.

                                          Comment

                                          • twitmytwat
                                            Confirmed User
                                            • May 2012
                                            • 162

                                            #22
                                            Wow this is exactly the kind of script I am paying a freelancer to make. Which is better to work with WP Gallery daemon or arylia? Also I tried checking out the demo for arylia3 looks like it is down arylia.com/v3demo/index.php, is Arylia3 still alive? Any help on this would be greatly appreciated.

                                            Comment

                                            • crockett
                                              in a van by the river
                                              • May 2003
                                              • 76818

                                              #23
                                              Originally posted by twitmytwat
                                              Wow this is exactly the kind of script I am paying a freelancer to make. Which is better to work with WP Gallery daemon or arylia? Also I tried checking out the demo for arylia3 looks like it is down arylia.com/v3demo/index.php, is Arylia3 still alive? Any help on this would be greatly appreciated.
                                              Both Arylia & GD were sold by their original developers. I know the guys that took over Arylia went on to improve it and released the version 3 but that's probably been 3+ years ago.

                                              Who knows with either of them at this point TBH as TGP's kinda died a horrible death, so the developers most likely don't pay a lot of attention to either of these.
                                              In November, you can vote for America's next president or its first dictator.

                                              Comment

                                              • [Labret]
                                                Registered User
                                                • May 2001
                                                • 10945

                                                #24
                                                Stay far away from Liquid. I put a shit ton of effort into a site only to have to end up scrapping it due to sql injection problems a year later. Author went completely awol. Fuck that guy.

                                                Comment

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

                                                  #25
                                                  I do officially support my script since 2006 and don't plan to drop it

                                                  BTW it (my script) is not just a TGP parser/generator. Yes, it can be used to built self-populated TGP sites like the examples in my 1st post above, but in a same way it can be used for building tubes and any other types of "fire and forget" resources.

                                                  Just sayn'.
                                                  Last edited by just a punk; 02-10-2013, 07:56 AM.
                                                  Obey the Cowgod

                                                  Comment

                                                  • Best-In-BC
                                                    Confirmed User
                                                    • Jun 2002
                                                    • 9511

                                                    #26
                                                    Originally posted by crockett
                                                    Both Arylia & GD were sold by their original developers. I know the guys that took over Arylia went on to improve it and released the version 3 but that's probably been 3+ years ago.

                                                    Who knows with either of them at this point TBH as TGP's kinda died a horrible death, so the developers most likely don't pay a lot of attention to either of these.
                                                    I think Richard built GD and still owns it
                                                    Vacares - Web Hosting, Domains, O365, Security & More
                                                    Unparked domains burning a hole in your pocket? 5 Simple Ways to Make Easy $$$ from Unused Domains

                                                    Comment

                                                    • Oracle Porn
                                                      Affiliate
                                                      • Oct 2002
                                                      • 24433

                                                      #27
                                                      what kind of support you need for arylia? its working simply and unencoded, only $50 as well. stop being lazy retards.


                                                      Comment

                                                      • fris
                                                        Too lazy to set a custom title
                                                        • Aug 2002
                                                        • 55679

                                                        #28
                                                        Originally posted by Oracle Porn
                                                        what kind of support you need for arylia? its working simply and unencoded, only $50 as well. stop being lazy retards.
                                                        ya cheap for what it can do.
                                                        Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

                                                        Comment

                                                        • JamesM
                                                          Confirmed User
                                                          • Nov 2012
                                                          • 732

                                                          #29
                                                          Originally posted by Oracle Porn
                                                          there is no all in one, you can make an rss output using arylia and have ST get it so it updates and rotates.
                                                          this is great., i can do this.

                                                          Originally posted by EddyTheDog
                                                          Yep - RSS is the key.

                                                          Integrate some iftt.com recipes and you could be onto something.
                                                          Thanks for reminding me ifttt.com again.
                                                          Last edited by JamesM; 02-10-2013, 06:26 PM.


                                                          Ex GF Films | Grab Dollars
                                                          Up To 80% Rev-Share | 255 Day Cookie | Legal Content | Variety of Promo Tools | CCBill Program | GF Niche
                                                          james[at]grabdollars[dot]com | ICQ::611-99-zero-zero-20

                                                          Comment

                                                          Working...