Bravo List
Register
Go Back   > Bravo List > Source Code > Archived Trackers > BT.Manager (phpMyBitTorrent)
Reply
Thread Tools
  #41  
Old 5th August 2009, 05:24
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
first error with pass word
open edit.php and find
PHP Code:
                if ($password == ""$password "NULL";
                else 
$password htmlspecialchars($password); 
and replace it with
PHP Code:
                if ($password != "" AND $announce == "") {
                if (!
get_magic_quotes_gpc()) $password addslashes($password);
                
$password "'".$password."'";
                } else 
$password "NULL"
Quote:
Originally Posted by wolfman View Post
one more bug when i edit someones profile seting more upload it makes number like this 137986690.0 < makes upload not count so error
what are you entering for upload amount ?

it works in bytes so you can not enter a 1.1 you can do:

1024*1024*1024
or
137986690+10000000
or
137986690-10000000
or
137986690/2

as long as the end done come out to a 137986690.1

better yet to insure no decimals edit user/editprofile.php
PHP Code:
        processload("uploaded",$up); 
to
PHP Code:
        processload("uploaded",number_format($up,0)); 
__________________
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; 5th August 2009 at 05:54.
Reply With Quote
  #42  
Old 6th August 2009, 06:39
wMan wMan is offline
Banned
 
Join Date: Feb 2008
P2P
Posts: 1,433
Default
both fixed
Reply With Quote
  #43  
Old 8th August 2009, 03:27
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
edit user/editprofile.php and change
PHP Code:
processload("uploaded",number_format($up,0)); 
to
PHP Code:
processload("uploaded",str_replace(",","",number_format($up,0))); 
__________________
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
  #44  
Old 13th August 2009, 21:50
wMan wMan is offline
Banned
 
Join Date: Feb 2008
P2P
Posts: 1,433
Default
source is great but i wan't to ask you hove to do this resizing thing
(image atached )
if u have free moment u coud take a quick look but it's nothing important any way

Code:
if ($user->user ) { 
        echo "<form name=\"Shoutform\" method=\"POST\" action=\"frame.php\" target=\"Shoutbox\" onsubmit=\"sendshout(text.value);\">\n"; 
        echo "<input type=\"hidden\" name=\"op\" value=\"shout\">\n"; 
        echo "<textarea id=\"shout_text_area\" name=\"text\" rows=\"1\" cols=\"110\"  onkeyup=\" if (event.keyCode == 13) {this.value=''}\" onkeypress=\"if (event.keyCode == 13) {sendshoutout(this.value, 'shout_out');}\"></textarea>\n"; //echo "<textarea name=\"text\" rows=\"5\" cols=\"19\"></textarea>\n";

Click image for larger version

Name:	Ekranattels.png
Views:	32
Size:	228.5 KB
ID:	1604
Reply With Quote
  #45  
Old 14th August 2009, 02:33
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
the shout box size is defined in the css file
__________________
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
  #46  
Old 14th August 2009, 02:35
wMan wMan is offline
Banned
 
Join Date: Feb 2008
P2P
Posts: 1,433
Default
not shoutbox style but shoutbox text box or what ever u call that thing where u type
Reply With Quote
  #47  
Old 14th August 2009, 02:40
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
OMG
What part of in css dont you get??
Code:
.shoutbox{
font-size:12px;
  margin-right: 5px;
  display: inline;
  float: left;
  width: 98%;
  height: 300px;
  overflow:auto;
  color:#CC9900;
}
.shout_time {
color:#FF0000;
}
#shout_text_area{
clear: right;
  width: 90%;
  height: 20px;
}
.shoutbox_bold{
  font-weight: bold;
}
__________________
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
  #48  
Old 14th August 2009, 02:47
wMan wMan is offline
Banned
 
Join Date: Feb 2008
P2P
Posts: 1,433
Default
wtf ? (atached image )
btw ur stop confir mail don't work user don't register at all no mysql inserts notin youst say succses

Click image for larger version

Name:	Ekranattels.png
Views:	23
Size:	110.2 KB
ID:	1620

Last edited by wMan; 18th August 2009 at 21:57.
Reply With Quote
  #49  
Old 19th August 2009, 01:45
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
Quote:
Originally Posted by wolfman View Post
wtf ? (atached image )
btw ur stop confir mail don't work user don't register at all no mysql inserts notin youst say succses
umm then you did something wrong as it dose work because I used it for 2 weeks when I first opened Jungle Pirates
and I need a little more info on how you got that image?
And please start new threads
__________________
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
  #50  
Old 20th September 2009, 12:01
get_fire's Avatar
get_fire get_fire is offline
Member
 
Join Date: Aug 2009
Russia
Posts: 10
Default The problem with downloading torrent
phpMyBitTorrent 2.0.3

I have here is a problem:
Code:
Catchable fatal error: Object of class php4DOMDocument could not be converted to string in / usr / local / www / xak / upload / taketorrent.php on line 173
when trying to download torrent, when I fill the required fields click on download you walk is a miracle.

picture will also be present

PS if something is misspelled sorry I do not know much English

Click image for larger version

Name:	help.PNG
Views:	18
Size:	139.7 KB
ID:	1722
Reply With Quote
Reply

Tags
phpmybittorrent


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
req phpmybittorrent TheArcadeMaster BT.Manager (phpMyBitTorrent) 1 9th May 2009 06:33
phpMyBitTorrent v2.0 joeroberts Downloads 126 12th January 2009 20:53
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 06:00. vBulletin skin by ForumMonkeys. Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.