Bravo List
Register
Go Back   > Bravo List > Source Code > Active Trackers > Torrent Trader
Reply
  #41  
Old 18th August 2023, 23:52
DND DND is offline
VIP
 
Join Date: Dec 2008
Posts: 1,242
Default
why avoid what i just said.
how can you use PHP 8 with Mariadb 5.5
it's not logical
__________________
Need HELP!? I can install:

  1. Server/VPS (Debian,CentOS,Ubuntu,Fedora, FreeBSD) Optimization and ... + Modules
  2. Webserver Windows/Linux (Apache/Lighttpd/Nginx/Mysql/PhpMyAdmin/SSL) Optimization and ... + Modules
  3. Seedbox Windows/Linux (uTorrent,rTorrent,libTorrent,ruTorrent) + Modules
  4. Multiple source code engines
  5. Linux Server Administration (security, cryptography/encryption, proxy, load balancer, custom ddos firewall)
Reply With Quote
  #42  
Old 19th August 2023, 01:04
mogo mogo is offline
Senior Member
 
Join Date: Jun 2020
P2P
Posts: 96
Default
Stop spaming this theme my friend. View this
https://gtmetrix.com/reports/remaste....org/NxpgRXj0/
https://gtmetrix.com/reports/tbtw.xyz/D47md0O5/
Maybe the best performance if you ever seen.
And also I see my fonawesome icons in your screen i mean for torrents columns(color, size and align)
and what is this PHP 8 OS 8.2.8

View in this site https://torrenttrader.uk also is there :)
Reply With Quote
  #43  
Old 19th August 2023, 07:51
xblade's Avatar
xblade xblade is offline
Cod3r
 
Join Date: Nov 2020
P2P
Posts: 239
Default
what those icons that are in bootstrap Lol
and do not belong to you at all
why spam shit Lol
also shoot up troll or ill give that bigmax code out you got to every one what you think you coder up like crap Lol what a mess it is ...ive hed to sort a few sites out for everyone with it and remove alot of code with in it that you put on and you call your self a coder my ass, And you do not know what PHP PLATFORM IS HERE I WILL HELP YOU https://www.php.net/releases/8_2_8.php PHP 8.2.8
A side note you can not even code to PHP 8 8.2.8 ive seen your work Lol and i have to sort it out to work DEVIL
IVE ALREADT STARTED WORK ON THE PHP 8.3.0 AND ITS WORKING LIKE A CHARM but that abit hard for you too
------------------------------------------------------------------------------------------------------------
Going on about icons here is a modification with this so here we go to replace the old icons

@stdhead.php
Add
Code:
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
or
ADD
@header.php
Code:
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
Now we Add the new icons to torrenttable so it can be viewed by one and all....

Code:
<i class='fa-solid fa-download' style='font-size:14px; color:green;' title='".Add here what you are using("DL")."'></i>
Code:
<i class='fas fa-user-edit' style='font-size:14px; color:#1E90FF;' title='".Add here what you are using("ADDED_BY")."'></i>
Code:
<i class='far fa-comment-alt' style='font-size:14px; color:#FFC300;' title='".Add here what you are using("COMM")."'></i>
Code:
<i class='fas fa-hdd' style='font-size:14px; color:#4682B4;' title='".Add here what you are using("SIZE")."'></i>
Code:
<i class='fas fa-check' style='font-size:14px; color:#32CD32;' title='".Add here what you are using("COMPLETED")."'></i>
Code:
<i class='fas fa-angle-double-up' style='font-size:14px; color:#32CD32;' title='".Add here what you are using("SEEDERS")."'></i>
Code:
<i class='fas fa-angle-double-down' style='font-size:14px; color:#FF0000;' title='".Add here what you are using("LEECHERS")."'></i>
Code:
<i class='far fa-calendar-alt' style='font-size:14px; color:#C70039;' title='".Add here what you are using("DATE")."'></i>
New change
the Add here what you are using
to what Languages you using

for those who have a @stdhead.php
On torrenttable functions .php
Easy way to do

Code:
<td class="hone" align="center"><i class='fas fa-check' style='font-size:14px; color:#32CD32;' title='Progres'></i></td> 
<td class="hone" align="right">Files</td>
<td class="hone" align="right"><i class='far fa-comment-alt' style='font-size:14px; color:#FFC300;' title='Comm'></i></td>
<td class="hone" align="center"><i class='far fa-calendar-alt' style='font-size:14px; color:#C70039;' title='Added'></i></td>
<td class="hone" align="center"><i class='fas fa-hdd' style='font-size:14px; color:#4682B4;' title='Size'></i></td>
<td class="hone" align="right"><i class='fas fa-angle-double-up' style='font-size:14px; color:#32CD32;' title='Seeders'></i></td>
<td class="hone" align="right"><i class='fas fa-angle-double-down' style='font-size:14px; color:#FF0000;' title='Leechers'></i></td>
<?php if ($variant == "index") print("<td class=\"hone\" align=\"center\"><i class='fas fa-user-edit' style='font-size:14px; color:#1E90FF;' title='Upped'></i></td>\n");
As you can see its bootstap css made by bootstap and not by Devil nor by hes mate

My site is bootstap.
not the crap mogo putting out nor the mate
i hope this clears everything up for everyone also have the modification for this now
__________________

i do custom mods in torrenttrader for £

Last edited by xblade; 19th August 2023 at 09:12.
Reply With Quote
  #44  
Old 23rd August 2023, 15:22
mogo mogo is offline
Senior Member
 
Join Date: Jun 2020
P2P
Posts: 96
Default
These icons are from bootstrap???
I mean your Modification.

Quote:
Originally Posted by DND View Post
how can you use PHP 8 with Mariadb 5.5
it's not logical
With xblade, there is nothing logical

PS: You'll never have a website like mine. It is super light and does not burden the server with unnecessary requests. Also works perfectly with MariaDB 10.5 and PHP 8.
As you know, this script was created by Nemesida.
Have a nice day :)

Last edited by mogo; 23rd August 2023 at 15:37.
Reply With Quote
  #45  
Old 23rd August 2023, 17:55
Botanicar's Avatar
Botanicar Botanicar is offline
Senior Member
 
Join Date: Jun 2013
Croatia
Posts: 127
Talking
The actual idea to change all icons to fontawesome or flat icons came a few years ago when we tried to fix all file images in torrent-datails.php.
The whole gang was involved in this "transformation" and the result was obviously nice.



Stealing ideas from others, today, seems perfectly legitimate and natural, but people very quickly forget to thank everyone involved in the coding process and development as well as those who designed the whole idea.



To me, it's rude to poke your nose into other people's jobs, a bit marginal and primitive.

The team working on this project is very nice and helpful to anyone who needs help regarding TT
welcome to TorrentTrader






Click the image to open in full size.


Click the image to open in full size.Click the image to open in full size.
Click the image to open in full size.
Click the image to open in full size.
Click the image to open in full size.
Click the image to open in full size.
Click the image to open in full size.
Reply With Quote
  #46  
Old 31st August 2023, 11:41
JohnHasher JohnHasher is offline
Coder
 
Join Date: Apr 2020
P2P
Posts: 62
Default unable to import from old tt to This
its not possible to import from old TT to This script since i use different methods(like torrent file index old TT used a separate table to store filename but new method is different to get file tree)

Bump: i changed the whole old PM system to new chat system

Bump: the development is slow because there is a lot of areas like admin panel, search engine (from sphinx to manticore), other good stuff..


i don't want to rush and make a buggy/incomplete release


since i don't have vpn/dedi servers i use shared hosting to host the demo
__________________
i do custom mods in xbtitfm and torrenttrader for $$, PM me for details.
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



All times are GMT +2. The time now is 06:39. vBulletin skin by ForumMonkeys. Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.