Traffic Trading Script

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Nick_awt
    Confirmed User
    • Jan 2009
    • 595

    #1

    Traffic Trading Script

    Hi

    Are there any traffic trading scripts out there that work with PHP 8.2 ?

    I was using TE3 (Trade Expert), but it appears to only support up to PHP 7.4, which is now EOL.


    Thanks
  • Nick_awt
    Confirmed User
    • Jan 2009
    • 595

    #2
    bump.....

    Comment

    • sandman!
      Icq: 14420613
      • Mar 2001
      • 15431

      #3
      nope there is nothing no one is updating their scripts
      Need WebHosting ? Email me for some great deals [email protected]

      Comment

      • brassmonkey
        Pay It Forward
        • Sep 2005
        • 77396

        #4
        so downgrade the folder to 7.4 there is one that works with 8.1
        TRUMP 2026 KEKAW!!! - The Laken Riley Act Is Law!
        DACA ENDED - SUPPORT AZ HCR 2060 52R - email: brassballz-at-techie.com

        Comment

        • DVTimes
          xxx
          • Jun 2003
          • 31658

          #5
          Fast Traffic Trader 2
          XXX

          Comment

          • brassmonkey
            Pay It Forward
            • Sep 2005
            • 77396

            #6
            Originally posted by DVTimes
            those are some 2001 prices
            TRUMP 2026 KEKAW!!! - The Laken Riley Act Is Law!
            DACA ENDED - SUPPORT AZ HCR 2060 52R - email: brassballz-at-techie.com

            Comment

            • DVTimes
              xxx
              • Jun 2003
              • 31658

              #7
              Originally posted by brassmonkey
              those are some 2001 prices
              You can use the free version.

              I use it on one site.

              It seems to trade better but I do not think the inside looks the best, and I had to get the web host to tweek things to get it to work.

              .
              XXX

              Comment

              • DVTimes
                xxx
                • Jun 2003
                • 31658

                #8
                Originally posted by Nick_awt
                Hi

                Are there any traffic trading scripts out there that work with PHP 8.2 ?

                I was using TE3 (Trade Expert), but it appears to only support up to PHP 7.4, which is now EOL.


                Thanks
                As brassmonkey has said, change to 7.4 unless you have other scripts running that wont work if you change it.
                XXX

                Comment

                • Nick_awt
                  Confirmed User
                  • Jan 2009
                  • 595

                  #9
                  Originally posted by brassmonkey
                  so downgrade the folder to 7.4 there is one that works with 8.1
                  Originally posted by DVTimes
                  As brassmonkey has said, change to 7.4 unless you have other scripts running that wont work if you change it.
                  Thanks for the replies.
                  I already have those sites running on 7.4 and the rest on 8.2, but its just not really a practical long term solution.

                  Comment

                  • Klen
                    • Aug 2006
                    • 32235

                    #10
                    Originally posted by Nick_awt
                    Thanks for the replies.
                    I already have those sites running on 7.4 and the rest on 8.2, but its just not really a practical long term solution.
                    Maybe this: https://github.com/jmbsoft/TradeX ?

                    Comment

                    • k0nr4d
                      Confirmed User
                      • Aug 2006
                      • 9231

                      #11
                      PHP 7 worked fine for many years, just because it's EOL doesn't make it useless. We'll still see servers with it for 2-3 years. Our cam agg supports PHP 8, tube script PHP 8 support coming when I get a chance to wrap it up finally.

                      I hate PHP 8 passionately. It's like a nagging wife that shit picks at everything.
                      Mechanical Bunny Media
                      Mechbunny Tube Script | Mechbunny Webcam Aggregator Script | Custom Web Development

                      Comment

                      • Klen
                        • Aug 2006
                        • 32235

                        #12
                        Originally posted by k0nr4d
                        PHP 7 worked fine for many years, just because it's EOL doesn't make it useless. We'll still see servers with it for 2-3 years. Our cam agg supports PHP 8, tube script PHP 8 support coming when I get a chance to wrap it up finally.

                        I hate PHP 8 passionately. It's like a nagging wife that shit picks at everything.
                        Like what? So far i did not noticed anything different from version 7.

                        Comment

                        • Nick_awt
                          Confirmed User
                          • Jan 2009
                          • 595

                          #13
                          Originally posted by k0nr4d
                          PHP 7 worked fine for many years, just because it's EOL doesn't make it useless. We'll still see servers with it for 2-3 years. Our cam agg supports PHP 8, tube script PHP 8 support coming when I get a chance to wrap it up finally.

                          I hate PHP 8 passionately. It's like a nagging wife that shit picks at everything.
                          There are a lot of security vulnerabilities in php 7.4 and TE script is 7.3, it just happens to work with 7.4.

                          So it's not really a great idea to keep using out of date scripts and php, unless you have to.

                          Comment

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

                            #14
                            People still trading traffic ? was thinking of launching some
                            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

                            • k0nr4d
                              Confirmed User
                              • Aug 2006
                              • 9231

                              #15
                              Originally posted by Klen
                              Like what? So far i did not noticed anything different from version 7.
                              It really depends on how you coded. There are behavioral changes that break code, needlessly. The biggest thing that pisses me off specifically, is that you can no longer do:

                              if($var) { ... }

                              Before, if $var was not set at all it was just false and didn't enter that. Worked for years and years. Now, that would throw a fatal error. You now have to do:

                              if(isset($var) && $var == true) { ... }

                              So it introduces alot of fatal errors where it wouldn't throw them before.
                              Mechanical Bunny Media
                              Mechbunny Tube Script | Mechbunny Webcam Aggregator Script | Custom Web Development

                              Comment

                              • Klen
                                • Aug 2006
                                • 32235

                                #16
                                Originally posted by k0nr4d
                                It really depends on how you coded. There are behavioral changes that break code, needlessly. The biggest thing that pisses me off specifically, is that you can no longer do:

                                if($var) { ... }

                                Before, if $var was not set at all it was just false and didn't enter that. Worked for years and years. Now, that would throw a fatal error. You now have to do:

                                if(isset($var) && $var == true) { ... }

                                So it introduces alot of fatal errors where it wouldn't throw them before.
                                You mean if you have unset variable it goes fatal error ? I think that was already before, tho just throwing warning, not fatal error. But that is normal with every php upgrade, always doing shit like that. For example, when php 5.3 was issue, if your script did not had set time zone, you would get fatal error.
                                And it's not just PHP, MYSQL latest version now require to always insert something otherwise query does not pass, meaning it cannot be empty.

                                Comment

                                • brassmonkey
                                  Pay It Forward
                                  • Sep 2005
                                  • 77396

                                  #17
                                  im going to test tradex again. i was getting a bunch of errors in the log script runs fine lower the php version
                                  TRUMP 2026 KEKAW!!! - The Laken Riley Act Is Law!
                                  DACA ENDED - SUPPORT AZ HCR 2060 52R - email: brassballz-at-techie.com

                                  Comment

                                  • emmasexytime
                                    Confirmed User
                                    • Jan 2015
                                    • 4512

                                    #18
                                    Originally posted by Best-In-BC
                                    People still trading traffic ? was thinking of launching some
                                    "traffic"
                                    Join the BEST cam affiliate program on the internet!
                                    I've referred over $1.7mil in spending this past year, you should join in.
                                    live camss > How to make a live cam site backlinks > hardlinks.org

                                    Comment

                                    • k0nr4d
                                      Confirmed User
                                      • Aug 2006
                                      • 9231

                                      #19
                                      Originally posted by Klen
                                      And it's not just PHP, MYSQL latest version now require to always insert something otherwise query does not pass, meaning it cannot be empty.
                                      You can turn off STRICT_TRANS_TABLES and it works normal
                                      Mechanical Bunny Media
                                      Mechbunny Tube Script | Mechbunny Webcam Aggregator Script | Custom Web Development

                                      Comment

                                      • Klen
                                        • Aug 2006
                                        • 32235

                                        #20
                                        Originally posted by k0nr4d
                                        You can turn off STRICT_TRANS_TABLES and it works normal
                                        Good to know that for future

                                        Comment

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

                                          #21
                                          Originally posted by emmasexytime
                                          "traffic"
                                          LOL
                                          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

                                          • Holy Damage
                                            Confirmed User
                                            • Oct 2013
                                            • 996

                                            #22
                                            https://smartcj.com/ v2 works on php 8.1.... maybe it works on php 8.2... ask on their forum, admin is quite active there

                                            Comment

                                            • redwhiteandblue
                                              Bollocks
                                              • Jun 2007
                                              • 2793

                                              #23
                                              Originally posted by k0nr4d
                                              It really depends on how you coded. There are behavioral changes that break code, needlessly. The biggest thing that pisses me off specifically, is that you can no longer do:

                                              if($var) { ... }

                                              Before, if $var was not set at all it was just false and didn't enter that. Worked for years and years. Now, that would throw a fatal error. You now have to do:

                                              if(isset($var) && $var == true) { ... }

                                              So it introduces alot of fatal errors where it wouldn't throw them before.
                                              Intelliphense on VS Code will show that up as an error anyway, using a var before it's declared, so I no longer do it even though I don't code specifically for 8 yet.
                                              Interserver unmanaged AMD Ryzen servers from $73.00

                                              Comment

                                              • SilentBean
                                                Confirmed User
                                                • Sep 2006
                                                • 1146

                                                #24
                                                Don't upgrade your PHP. Problem solved.

                                                www.BuyClickedTraffic.com: Buy clicked traffic.
                                                www.SellClickedTraffic.com: Sell clicked traffic.

                                                Comment

                                                • brassmonkey
                                                  Pay It Forward
                                                  • Sep 2005
                                                  • 77396

                                                  #25
                                                  Originally posted by brassmonkey
                                                  im going to test tradex again. i was getting a bunch of errors in the log script runs fine lower the php version
                                                  ok i had to make the folder 5.6 but it's running fine
                                                  TRUMP 2026 KEKAW!!! - The Laken Riley Act Is Law!
                                                  DACA ENDED - SUPPORT AZ HCR 2060 52R - email: brassballz-at-techie.com

                                                  Comment

                                                  • candyflip
                                                    Carpe Visio
                                                    • Jul 2002
                                                    • 43069

                                                    #26
                                                    CjOverkill Traffic Trading Script

                                                    CJ Overkill works with 7 but 8 is recommended.

                                                    ##################################
                                                    # #
                                                    # CjOverkill 5.3.1 #
                                                    # #
                                                    ##################################

                                                    Copyright Kaloyan Olegov Georgiev
                                                    ice [at] icefire.org


                                                    ##################################
                                                    # #
                                                    # REQUIREMENTS #
                                                    # #
                                                    ##################################

                                                    1) Any PHP capable web server (Apache is OK)
                                                    2) PHP 7.0 or new version. PHP 8 recommended.
                                                    3) MySQL/MariaDB database. MySQL 8 / MariaDB 10 or newer recommended.
                                                    4) A valid database login and password

                                                    Spend you some brain.
                                                    Email Me

                                                    Comment

                                                    • brassmonkey
                                                      Pay It Forward
                                                      • Sep 2005
                                                      • 77396

                                                      #27
                                                      Originally posted by candyflip
                                                      CjOverkill Traffic Trading Script

                                                      CJ Overkill works with 7 but 8 is recommended.

                                                      ##################################
                                                      # #
                                                      # CjOverkill 5.3.1 #
                                                      # #
                                                      ##################################

                                                      Copyright Kaloyan Olegov Georgiev
                                                      ice [at] icefire.org


                                                      ##################################
                                                      # #
                                                      # REQUIREMENTS #
                                                      # #
                                                      ##################################

                                                      1) Any PHP capable web server (Apache is OK)
                                                      2) PHP 7.0 or new version. PHP 8 recommended.
                                                      3) MySQL/MariaDB database. MySQL 8 / MariaDB 10 or newer recommended.
                                                      4) A valid database login and password
                                                      there is a skim for payment... he says it's 100% free
                                                      TRUMP 2026 KEKAW!!! - The Laken Riley Act Is Law!
                                                      DACA ENDED - SUPPORT AZ HCR 2060 52R - email: brassballz-at-techie.com

                                                      Comment

                                                      Working...