GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Traffic Trading Script (https://gfy.com/showthread.php?t=1361633)

Nick_awt 02-05-2023 03:10 PM

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 03-02-2023 04:02 PM

bump.....

sandman! 03-02-2023 04:24 PM

nope there is nothing no one is updating their scripts

brassmonkey 03-02-2023 05:20 PM

so downgrade the folder to 7.4 there is one that works with 8.1

DVTimes 03-02-2023 05:28 PM

Fast Traffic Trader 2

brassmonkey 03-02-2023 06:29 PM

Quote:

Originally Posted by DVTimes (Post 23103968)

those are some 2001 prices :helpme:helpme:helpme:helpme :1orglaugh :1orglaugh :1orglaugh :Oh crap

DVTimes 03-02-2023 06:47 PM

Quote:

Originally Posted by brassmonkey (Post 23103989)
those are some 2001 prices :helpme:helpme:helpme:helpme :1orglaugh :1orglaugh :1orglaugh :Oh crap

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.

.

DVTimes 03-02-2023 06:53 PM

Quote:

Originally Posted by Nick_awt (Post 23093496)
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.

Nick_awt 03-03-2023 12:41 AM

Quote:

Originally Posted by brassmonkey (Post 23103966)
so downgrade the folder to 7.4 there is one that works with 8.1

Quote:

Originally Posted by DVTimes (Post 23103995)
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.

Klen 03-03-2023 01:30 AM

Quote:

Originally Posted by Nick_awt (Post 23104068)
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 ?

k0nr4d 03-03-2023 01:43 AM

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.

Klen 03-03-2023 01:46 AM

Quote:

Originally Posted by k0nr4d (Post 23104087)
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.

Nick_awt 03-03-2023 02:23 AM

Quote:

Originally Posted by k0nr4d (Post 23104087)
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.

Best-In-BC 03-03-2023 09:31 AM

People still trading traffic ? was thinking of launching some

k0nr4d 03-03-2023 10:20 AM

Quote:

Originally Posted by Klen (Post 23104088)
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.

Klen 03-03-2023 12:45 PM

Quote:

Originally Posted by k0nr4d (Post 23104275)
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.

brassmonkey 03-03-2023 03:42 PM

im going to test tradex again. i was getting a bunch of errors in the log script runs fine lower the php version

emmasexytime 03-03-2023 11:46 PM

Quote:

Originally Posted by Best-In-BC (Post 23104253)
People still trading traffic ? was thinking of launching some

"traffic" :1orglaugh:1orglaugh

k0nr4d 03-04-2023 02:44 AM

Quote:

Originally Posted by Klen (Post 23104323)
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

Klen 03-04-2023 03:03 AM

Quote:

Originally Posted by k0nr4d (Post 23104595)
You can turn off STRICT_TRANS_TABLES and it works normal

Good to know that for future :)

Best-In-BC 03-04-2023 07:12 AM

Quote:

Originally Posted by emmasexytime (Post 23104563)
"traffic" :1orglaugh:1orglaugh

LOL:1orglaugh

Holy Damage 03-04-2023 10:54 AM

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

redwhiteandblue 03-04-2023 11:05 AM

Quote:

Originally Posted by k0nr4d (Post 23104275)
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.

SilentBean 03-07-2023 08:32 AM

Don't upgrade your PHP. Problem solved.

brassmonkey 03-11-2023 11:45 PM

Quote:

Originally Posted by brassmonkey (Post 23104397)
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 :winkwink: :thumbsup

candyflip 03-12-2023 11:14 AM

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

brassmonkey 03-12-2023 12:32 PM

Quote:

Originally Posted by candyflip (Post 23108607)
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 :Oh crap


All times are GMT -7. The time now is 05:09 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123