Bravo List
Register
Go Back   > Bravo List > P2P > Forum > Downloads
Reply
Thread Tools
  #81  
Old 28th October 2008, 12:04
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
thanks fixed in release pack
__________________
Do not ask me to help you work on your site that is not phpMyBitTorrent
Do not ask me to make a mod for any other source
Do not Ask me to setup your site.
I will no longer help you setup your site, there is a setup script if you have trouble with it post in the forum here or in BT.Manager™ forum
My Current Demo is here http://demo.btmanager.org/

Last edited by joeroberts; 28th October 2008 at 12:44.
Reply With Quote
  #82  
Old 29th October 2008, 03:15
Krypto Krypto is offline
Retired from BVList
 
Join Date: Jan 2008
P2P
Posts: 510
Default
language/english.php

ADD
PHP Code:
define("_btuserdelete","Delete Account");
define("_btuserban","Ban Account"); 
admin/files/settings.php
Change all occurances of

PHP Code:
minupload_file_size 
TO
PHP Code:
minupload_size_file 

Last edited by Krypto; 29th October 2008 at 19:08.
Reply With Quote
  #83  
Old 30th October 2008, 05:21
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
Quote:
Originally Posted by Krypto View Post
language/english.php

ADD
PHP Code:
define("_btuserdelete","Delete Account");
define("_btuserban","Ban Account"); 
admin/files/settings.php
Change all occurances of

PHP Code:
minupload_file_size 
TO
PHP Code:
minupload_size_file 
thanks I well update this as soon as I get a chance!
__________________
Do not ask me to help you work on your site that is not phpMyBitTorrent
Do not ask me to make a mod for any other source
Do not Ask me to setup your site.
I will no longer help you setup your site, there is a setup script if you have trouble with it post in the forum here or in BT.Manager™ forum
My Current Demo is here http://demo.btmanager.org/
Reply With Quote
  #84  
Old 1st November 2008, 01:35
Krypto Krypto is offline
Retired from BVList
 
Join Date: Jan 2008
P2P
Posts: 510
Default
Updated english language files.
Attached Files
File Type: rar Language Files.rar (27.5 KB, 2 views)
Reply With Quote
  #85  
Old 1st November 2008, 01:40
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
thanks man well add this to gold release soon as posible
__________________
Do not ask me to help you work on your site that is not phpMyBitTorrent
Do not ask me to make a mod for any other source
Do not Ask me to setup your site.
I will no longer help you setup your site, there is a setup script if you have trouble with it post in the forum here or in BT.Manager™ forum
My Current Demo is here http://demo.btmanager.org/
Reply With Quote
  #86  
Old 1st November 2008, 01:58
Krypto Krypto is offline
Retired from BVList
 
Join Date: Jan 2008
P2P
Posts: 510
Default
Just some spelling errors & new additions to languages:-

viewsnatches.php
Change
PHP Code:
OpenTable("Snatch Detailles"); 
To
PHP Code:
OpenTable("Snatch Details"); 
viewrequests.php
Change
PHP Code:
if (!$arr_config["enable"])bterror("Requist system is closed, come back later...","Sorry"); 
To
if (!$arr_config["enable"])bterror("Request system is closed, come back later...","Sorry");

poll.php
Change
PHP Code:
echo "You must log in to vote and view the poll"
To
PHP Code:
echo "No Polls"
makepoll.php
Change
PHP Code:
OpenTable("polls"); 
To
PHP Code:
OpenTable(_btmakepoll); 
Replace your admin/items folder with the attached, I just changed the hard coded names to use the language files that were previously attached.

There are still some other files that would need changing to make use of the languages files but I've not managed to get around to them yet.
Attached Files
File Type: rar items.rar (22.1 KB, 2 views)
Reply With Quote
  #87  
Old 1st November 2008, 13:56
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
Ok I have made all changes to release
__________________
Do not ask me to help you work on your site that is not phpMyBitTorrent
Do not ask me to make a mod for any other source
Do not Ask me to setup your site.
I will no longer help you setup your site, there is a setup script if you have trouble with it post in the forum here or in BT.Manager™ forum
My Current Demo is here http://demo.btmanager.org/
Reply With Quote
  #88  
Old 2nd November 2008, 02:58
Krypto Krypto is offline
Retired from BVList
 
Join Date: Jan 2008
P2P
Posts: 510
Default
Bug in Offers.

Once someone has made an offer and members have voted, when you click on the votes it produces a blank screen.
Reply With Quote
  #89  
Old 2nd November 2008, 03:24
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
in offervotes.php remove
PHP Code:
function get_elapsed_time($ts)
{
  
$mins floor((gmtime() - $ts) / 60);
  
$hours floor($mins 60);
  
$mins -= $hours 60;
  
$days floor($hours 24);
  
$hours -= $days 24;
  
$weeks floor($days 7);
  
$days -= $weeks 7;
  
$t "";
  if (
$weeks)
    return 
"$weeks week" . ($weeks "s" "");
  if (
$days)
    return 
"$days day" . ($days "s" "");
  if (
$hours)
    return 
"$hours hour" . ($hours "s" "");
  if (
$mins)
    return 
"$mins min" . ($mins "s" "");
  return 
"< 1 min";
}
function 
gmtime()
{
    return 
strtotime(get_date_time());
}
function 
get_date_time($timestamp 0)
{
if (
$timestamp)
return 
date("Y-m-d H:i:s"$timestamp);
else
  
$idcookie $_COOKIE['uid'];
  return 
gmdate("Y-m-d H:i:s"time());

__________________
Do not ask me to help you work on your site that is not phpMyBitTorrent
Do not ask me to make a mod for any other source
Do not Ask me to setup your site.
I will no longer help you setup your site, there is a setup script if you have trouble with it post in the forum here or in BT.Manager™ forum
My Current Demo is here http://demo.btmanager.org/
Reply With Quote
  #90  
Old 2nd November 2008, 03:26
Krypto Krypto is offline
Retired from BVList
 
Join Date: Jan 2008
P2P
Posts: 510
Default
Thanks, working wonderfully now.
Reply With Quote
Reply

Tags
phpmybittorrent , v20


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

Similar Threads
Thread Thread Starter Forum Replies Last Post
What is phpMyBitTorrent joeroberts BT.Manager (phpMyBitTorrent) 0 14th October 2009 15:43
phpMyBitTorrent 2.0.3 joeroberts BT.Manager (phpMyBitTorrent) 54 21st September 2009 13:10
req phpmybittorrent TheArcadeMaster BT.Manager (phpMyBitTorrent) 1 9th May 2009 06:33
What I Think Of phpMyBittorrent dark_dragon BT.Manager (phpMyBitTorrent) 1 10th November 2008 07:43
phpMyBitTorrent v1.0 zenja7777 BT.Manager (phpMyBitTorrent) 8 27th October 2008 17:58



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