Members   Search      Help    Register    Login    Home
Home » Support Forums for PMBT 2.X » Development of 2.X » Getting ready to start 2.0.5
Getting ready to start 2.0.5 [message #2458] Fri, 20 March 2009 02:08 Go to next message
joeroberts is currently offline joeroberts  United States
Messages: 1971
Registered: June 2006
Location: U.S.A
Releaser
Da HacKer
O.K. Here we go again starting a List for My next release and I am looking for your input!

No I am not skipping a release as 2.0.4 well be out shortly and it is only a cleaner release of 2.0.3.

What are you looking for in a torrent client?
What additions would you like to see?
What would you think is the best theme I got (They can all be seen at this site in Mods and themes) that should go into this release?
I am only going to release with one theme!


All Input is welcome rather you may think it is Dumb to simple or completely outrages let me know.
I may have My own tracker But I am not you so I can not create what you want with out your input.


These are some additions going in already.
My New level control system
Youtube video section
On top of the email invite system I am adding code generator so You can just give out a invite code to people.
New admin create user.

thats it for now so Please let me know people.
I await your input

Please do not Pm it to me as I well not respond to it I would like to see it from here for more input on it!


http://a.imageshack.us/img831/5562/mybikes.png
Re: Getting ready to start 2.0.5 [message #2461 is a reply to message #2458] Fri, 20 March 2009 06:54 Go to previous messageGo to next message
Marlboroman is currently offline Marlboroman  United States
Messages: 3
Registered: March 2009
Leecher
you should try to add the stats from the tracker on the forums
mabe have a phpbb forum installed to the tracker so that way it will be easier to merge them both, via database
as for stats i think slads tracker/forums had something simmiliar on his site for that were it showed how may leechers/Seeders/Downloaded and the tracker its on
ipbtt in a sence but for phpbb and using your tracker,,
also have it set that if someone uplaods a torrent to the forums it will automatically be put on the tracker as well

i know it will take alot of coding but it will be a nice little feature to add
Re: Getting ready to start 2.0.5 [message #2476 is a reply to message #2458] Sat, 21 March 2009 15:35 Go to previous messageGo to next message
Revan is currently offline Revan  Czech Republic
Messages: 125
Registered: April 2007
Super-Seeder
some feature to allow users to pm user groups (or at least moderators/admins)

that would be nice i think - cause otherwise the user can write with a problem to member of staff that may not be online in next week or something..

it could work like a trouble tickets for example, i dont know
Re: Getting ready to start 2.0.5 [message #2478 is a reply to message #2458] Sat, 21 March 2009 23:40 Go to previous messageGo to next message
Element5 is currently offline Element5  Brazil
Messages: 2
Registered: March 2009
Leecher
Hi joeroberts Smile

I integrate phpfreechat
The most importante feature, that phpfreechat already have bright to phpbb3 (see in the phpfreechat)
So its easy to integrate instaed IRC chat

Well, have some bugs, see in my site the integration

My paths:
htdocs/phpfreechat
htdocs/phpmybittorrent
Here are the chat.php code:


<?php

if (!eregi("chat.php",$_SERVER["PHP_SELF"])) die("You can't include this file.");

include("header.php");

OpenTable(_btircchat);


?>

<?

require_once "../phpfreechat/src/phpfreechat.class.php";


$params["title"] = "Quick chat";

$params["nick"] = "guest".rand(1,1000);  // setup the intitial nickname

//$params["isadmin"] = true; // do not use it on production servers ;)

$params["theme"] = "zilveer";
$params["theme_path"] = "../phpfreechat/themes";
$params["theme_default_path"] = "../phpfreechat/themes";
$params['theme_default_url'] = 'http://blablabla/phpfreechat/themes';

$params["serverid"] = md5("../phpfreechat"); // calculate a unique id for this chat

//$params["debug"] = true;

$params["server_script_path"] = "../phpfreechat";
$params['server_script_url'] = 'http://blablabla/phpfreechat/index_inho.php';

$params["client_script_path"] = "../phpfreechat";

$params["data_public_path"] = "../phpfreechat/data/public";
$params["data_public_url"] = "http://blablabla/phpfreechat/data/public";

$params["data_private_path"] = "../phpfreechat/data/private";

$chat = new phpFreeChat( $params );
?>

<html>
<head>

<?$chat->printJavascript(); ?>
<?$chat->printStyle(); ?>

</head>
<body>

<?$chat->printChat();?>

</body>
</html>


<?

CloseTable();

include("footer.php");
?>



I hope that you like Smile
PS: The forum logo, is an hypercube ?

[Updated on: Sat, 21 March 2009 23:42]

Report message to a moderator

Re: Getting ready to start 2.0.5 [message #2481 is a reply to message #2478] Sun, 22 March 2009 02:34 Go to previous messageGo to next message
joeroberts is currently offline joeroberts  United States
Messages: 1971
Registered: June 2006
Location: U.S.A
Releaser
Da HacKer
well looks ok but I see a few bugs stell need worked out
try something like this
<?php

if (!eregi("chat.php",$_SERVER["PHP_SELF"])) die("You can't include this file.");

include("header.php");

OpenTable(_btircchat);
require_once "phpfreechat/src/phpfreechat.class.php";

if($user->admin)$params["isadmin"] = true; 
else
$params["isadmin"] = false;
$params["title"] = "Quick chat";
if($user->name == "Anonymous")$params["nick"] = "guest".rand(1,1000);
else
$params["nick"] = $user->name;  // setup the intitial nickname

//$params["isadmin"] = true; // do not use it on production servers ;)

$params["theme"] = "zilveer";
$params["theme_path"] = "phpfreechat/themes";
$params["theme_default_path"] = "phpfreechat/themes";
$params['theme_default_url'] = 'http://blablabla/phpfreechat/themes';//change to your URL

$params["serverid"] = md5("phpfreechat"); // calculate a unique id for this chat

$params["debug"] = false;

$params["server_script_path"] = "phpfreechat";
$params['server_script_url'] = 'http://blablabla/phpfreechat/index_inho.php';//change to your URL

$params["client_script_path"] = "phpfreechat";

$params["data_public_path"] = "phpfreechat/data/public";
$params["data_public_url"] = "http://blablabla/phpfreechat/data/public";//change to your URL

$params["data_private_path"] = "phpfreechat/data/private";

$chat = new phpFreeChat( $params );
$chat->printJavascript();
$chat->printStyle();
$chat->printChat();
CloseTable();

include("footer.php");
?>


http://a.imageshack.us/img831/5562/mybikes.png
Re: Getting ready to start 2.0.5 [message #2543 is a reply to message #2481] Sun, 19 April 2009 05:59 Go to previous messageGo to next message
DrAgon  United States
Messages: 192
Registered: August 2007
Super-Seeder
Bug hunter
just a reminder to include all the 2.x bug fixes into 2.0.5 branch
Razz
thnx
Re: Getting ready to start 2.0.5 [message #2599 is a reply to message #2458] Wed, 06 May 2009 01:34 Go to previous messageGo to next message
wannasee is currently offline wannasee  United Kingdom
Messages: 1
Registered: May 2009
Leecher
just installed 2.0.3 on a test server
nothing monitoring dupe ips
nothing detecting fast upload speeds using clients like ratio master
a tool for adding upload credit to members accounts rather then working in bits
im liking the source and think it will run alot lighter then my current source, (butr testing a few before i migrate)
keep up the good work
Re: Getting ready to start 2.0.5 [message #2600 is a reply to message #2599] Thu, 07 May 2009 02:13 Go to previous message
joeroberts is currently offline joeroberts  United States
Messages: 1971
Registered: June 2006
Location: U.S.A
Releaser
Da HacKer
Quote:

nothing monitoring dupe ips

you can check for duplicate Ip's in admin=>User Manager there is a link to check for them under the search

Quote:

nothing detecting fast upload speeds using clients like ratio master

can you give me a sample as Im not sure what you meen??

Quote:

a tool for adding upload credit to members accounts rather then working in bits

You can add credit to a user in ther edit profile as a admin
But unfortunatly it is stell as bits I well try and fix this later.

Quote:

im liking the source and think it will run alot lighter then my current source

Thank you and it dose run very light and I well be adding a new cache system to it in 2.0.5 wich well make it even lighter as this well help slow down data base querys on mondain querys.


Please let me know if you find or know of anything else.


http://a.imageshack.us/img831/5562/mybikes.png
Previous Topic:Making External Torrents Act as External
Next Topic:substitute mail() function with smtp custom function
Goto Forum:
  


Current Time: Wed Feb 08 22:42:42 GMT 2012

Total time taken to generate the page: 0.01131 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software