Filesoup
X   Site Message
(Message will auto close in 2 seconds)


> 

If you would like to advertise your Hosting, Services or Products on Filesoup, please contact Geeker for a quote.

 
Reply to this topicStart new topic
> Torrent Hoster V2.0, more features
DiEg0
post Jun 3 2007, 03:29 PM
Post #1


Clam Chowder
Group Icon

Group: Member
Posts: 86
Joined: 27-November 06
Member No.: 429,301



Well... here is another version of torrent hoster.. i fixed and modified some major stuffs as users requested..

Added

-New Style
-Registered users can Update Stats from Torrent Details page
-Can edit posted torrents
-Screenshot files path are store in db
-png supported

Fixed

-Category and Subcategory problem from Upload page
-screenshot problem
-errors from add/edit news

Thats pretty much i remember.. u guys u know when u test it.. here are some screenshots

Live demo is here http://www.myanmartorrents.com/demov2/

Attached Image


Attached Image


Attached Image


Attached Image


Attached Image


download at here http://www.myanmartorrents.com/forum/downloads.php?cat=1

sorry guys, u have to register to download because some spammers killed the site last time. and if you need help, post at http://www.myanmartorrents.com/forum/ or can post here but i'm not that active here. so posting on my site will be faster reply.

Hope you guys will like it smile.gif


--------------------
Go to the top of the pageReport Post
+
major9
post Jun 3 2007, 04:14 PM
Post #2


Spam Soup
Group Icon

Group: Contributor
Posts: 373
Joined: 13-November 04
From: India
Member No.: 215,686
 


Looking gr8 now.


--------------------
IndianMp3.Org -- Indian Bittorrent Site




Go to the top of the pageReport Post
+
juiced
post Jun 3 2007, 05:23 PM
Post #3


Tomato
Group Icon

Group: Member
Posts: 56
Joined: 7-May 07
Member No.: 452,851



Good looking project

This post has been edited by juiced: Jun 3 2007, 05:26 PM
Go to the top of the pageReport Post
+
torrent-tjappies
post Jun 3 2007, 06:09 PM
Post #4


PSP FREAK!
Group Icon

Group: Contributor+
Posts: 510
Joined: 17-June 06
From: Amsterdam
Member No.: 392,600
 


Thanks DiEgO! Looks better than before. I just don't like the big RSS button, but that's not really important now is it smile.gif


--------------------
Go to the top of the pageReport Post
+
babbano
post Jun 3 2007, 06:13 PM
Post #5


Chicken Noodle
Group Icon

Group: Member
Posts: 8
Joined: 7-March 07
Member No.: 442,227



cool.
i think it's based on WTCom Source Code.
Go to the top of the pageReport Post
+
manof
post Jun 3 2007, 07:04 PM
Post #6


Chicken Noodle
Group Icon

Group: Member
Posts: 22
Joined: 25-April 05
Member No.: 271,516



Very good
Go to the top of the pageReport Post
+
phrostwave
post Jun 3 2007, 08:12 PM
Post #7


DJ Taktikz / STR Records
Group Icon

Group: Member
Posts: 107
Joined: 7-September 06
From: 407 Area
Member No.: 411,795

System Specs: (show/hide)




looks very nice, like the part where you need to login to scrape it smile.gif


--------------------
aknova.info :: my side of the internet!
ak project :: sourceforge for the ak nova!

grand funk - nothing is the same
central line - squarepusher
Go to the top of the pageReport Post
+
DiEg0
post Jun 4 2007, 09:35 AM
Post #8


Clam Chowder
Group Icon

Group: Member
Posts: 86
Joined: 27-November 06
Member No.: 429,301



Thankss smile.gif if any bugs or errors, let me know.. so i can fix...
Go to the top of the pageReport Post
+
phrostwave
post Jun 6 2007, 01:49 AM
Post #9


DJ Taktikz / STR Records
Group Icon

Group: Member
Posts: 107
Joined: 7-September 06
From: 407 Area
Member No.: 411,795

System Specs: (show/hide)




i like the captcha, did you write it yourself?

This post has been edited by phrostwave: Jun 6 2007, 01:51 AM
Go to the top of the pageReport Post
+
diorz
post Jun 6 2007, 05:37 AM
Post #10


Tomato
Group Icon

Group: Member
Posts: 52
Joined: 24-September 06
Member No.: 415,651



hehe good project from the begining, very nice ui now.
the RSS feed logo is hudge btw § biggrin.gif
Go to the top of the pageReport Post
+
DiEg0
post Jun 6 2007, 06:40 AM
Post #11


Clam Chowder
Group Icon

Group: Member
Posts: 86
Joined: 27-November 06
Member No.: 429,301



QUOTE(phrostwave @ Jun 6 2007, 07:49 AM) *
i like the captcha, did you write it yourself?


heh nop.. i just add it in with some modifications..

QUOTE(diorz @ Jun 6 2007, 11:37 AM) *
hehe good project from the begining, very nice ui now.
the RSS feed logo is hudge btw § biggrin.gif


heheh yeah... i will be replacing with the list of latest users there in next 2.1 release.. not so soon for sure.. thinking.gif

i just set free download in the forum.. so no need to register to download anymore..

This post has been edited by DiEg0: Jun 6 2007, 06:43 AM
Go to the top of the pageReport Post
+
proxykill
post Today, 01:38 AM
Post #12


PK-Torrents
Group Icon

Group: BT Community Leader
Posts: 274
Joined: 28-October 06
From: Isle Of Wight,UK
Member No.: 422,304
 
System Specs: (show/hide)




CACHA MoD More secure and nicer lookin...IMO
Screen:


Adds more random lines and random pixels and places txt in random positions.. this all helps with security. hehe

How to mod:
Find rootdir/torrenthoster/users/php_captcha.php and replace with the att file or open php_capcha.php in an editor and replace the old code with this:

CODE
<?php
session_start();
/////////////////
////PROXYKILL////
//CHERONE.CO.UK//
/////////////////
$RandomStr = md5(microtime());// md5 to generate the random string
$ResultStr = substr($RandomStr,0,5);//trim 5 digit
$NewImage =imagecreatefromjpeg("img.jpg");//image create by existing image and as back ground
$LineColor = imagecolorallocate($NewImage, 175,157,213);//line color
$LineColor2 = imagecolorallocate($NewImage, 153,165,123);//line color
$TextColor = imagecolorallocate($NewImage, 000, 000, 000);//text color-black
imageline($NewImage,1,1,40,40,$LineColor);//create line 1 on image
imageline($NewImage,1,100,60,0,$LineColor);//create line 2 on image
imageline($NewImage,35,1,75,20,$LineColor2);//create line 3 on image
imageline($NewImage,1,15,75,5,$LineColor2);//create line 4 on image
for ($i = 0; $i <= 256; $i++) {
$point_color = imagecolorallocate ($NewImage, rand(0,255), rand(0,255), rand(0,255));
imagesetpixel($NewImage, rand(2,64), rand(2,38), $point_color);
}
$str_array=array();
$len=strlen($ResultStr);
for($i=0;$i<$len;$i++) $str_array[]=$ResultStr{$i};
imagestring($NewImage, 5, rand(2,10), rand(2,11), $str_array[0], $TextColor);// Draw a random string horizontally
imagestring($NewImage, 5, rand(18,25), rand(2,11), $str_array[1], $TextColor);// Draw a random string horizontally
imagestring($NewImage, 5, rand(33,40), rand(2,11), $str_array[2], $TextColor);// Draw a random string horizontally
imagestring($NewImage, 5, rand(47,55), rand(2,11), $str_array[3], $TextColor);// Draw a random string horizontally
imagestring($NewImage, 5, rand(61,68), rand(2,11), $str_array[4], $TextColor);// Draw a random string horizontally
$_SESSION['key'] = $ResultStr;// carry the data through session
header("Content-type: jpeg");// out out the image
imagejpeg($NewImage);//Output image to browser
?>


Image used for BKGround:


Found in rootdir/torrenthoster/users/img.jpg
enjoy

This post has been edited by proxykill: Today, 01:44 AM
Attached File(s)
Attached File  php_captcha.php ( 1.8k ) Number of downloads: 2
 


--------------------
Torrent Listers/Crawlers/Trackers/Clients Downloads Get everything in one place

PHP Photo album by me coded for my brother with a p0rnrip.net theme because thats his favorit site. ;~P

PK-Torrents PKTv0.1beta - DEMO

Go to the top of the pageReport Post
+

Fast ReplyReply to this topicStart new topic
1 User(s) are reading this topic (0 Guests and 0 Anonymous Users)
1 Members: OPPZeroCool

 




Bit Torrent Site | Cheap Loan | Home Loans | Sexy Videos | Yahoo Personals
-
Lo-Fi Version 0.2322 sec    --    13 queries    GZIP Enabled
Time is now: 20th June 2007 - 05:57 PM