Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Downloads (http://www.bvlist.com/forumdisplay.php?f=16)
-   -   H20tracker Sourcecode (http://www.bvlist.com/showthread.php?t=7077)

wMan 10th October 2011 20:43

Quote:

Originally Posted by BEST (Post 30582)
I'm not running on xampp on a free hoster

free host no good best it not work for you:drink:

BEST 10th October 2011 20:48

I get it under xampp not unfortunately run to wolfman

cooly 11th October 2011 16:49

Quote:

Originally Posted by BEST (Post 30579)
Deprecated: Function eregi() is deprecated in /data/multiserv/users/692703/projects/1685865/www/backend/mysql.php on line 10

Warning: Cannot modify header information - headers already sent by (output started at /data/multiserv/users/692703/projects/1685865/www/backend/mysql.php:10) in /data/multiserv/users/692703/projects/1685865/www/backend/functions.php on line 32

Warning: Cannot modify header information - headers already sent by (output started at /data/multiserv/users/692703/projects/1685865/www/backend/mysql.php:10) in


and the captcha is not displayed


replace
Code:

if (eregi('mysql.php',$_SERVER['PHP_SELF'])) {
    die;
}

with

Code:

if (preg_match('/mysql.php/i',$_SERVER['PHP_SELF'])) {
    die;
}


Optix 11th October 2011 16:53

A preg_match here is like killing a fly with a bazooka.

stripos() is perfect here : fast and same behavior ;)

daffy 11th October 2011 16:59

new look torrent details
 
9 Attachment(s)
took me cpl hours to do lastnight, so gonna share it for the source, added bookmarks for torrents to

Optix 11th October 2011 17:02

Daffy : there is a lot of unused space that you can use. Think about how to fill it ;)

cooly 11th October 2011 17:03

Quote:

Originally Posted by Optix (Post 30605)
A preg_match here is like killing a fly with a bazooka.

stripos() is perfect here : fast and same behavior ;)


whatever suits :)

Code:

if (stripos('mysql.php',$_SERVER['PHP_SELF'])) {
    die;
}

hmm returning false.

Optix 11th October 2011 17:07

Nice try, but be careful : in stripos() , parameters of this function are inverted. Over that, it's perfect ;)

daffy 11th October 2011 17:15

Quote:

Originally Posted by Optix (Post 30610)
Daffy : there is a lot of unused space that you can use. Think about how to fill it ;)

?

Optix 11th October 2011 17:22

Quote:

Originally Posted by daffy (Post 30614)
?

http://front1.monsterup.com/upload/1318346507292.jpg

daffy 11th October 2011 17:34

maybe i could a background image with nice gfx either side? if i knew how hahahaah

cooly 11th October 2011 17:37

Quote:

Originally Posted by Optix (Post 30612)
Nice try, but be careful : in stripos() , parameters of this function are inverted. Over that, it's perfect ;)

yeh a bit too sensitive but this is good.

Code:

//Access Security check
function instr($haystack, $needle) {
  $pos = strpos($haystack, $needle, 0);
  if ($pos != 0) return true;
  return false;
}
if (instr($_SERVER['PHP_SELF'],"mysql")) {
    die("fishy");
}


wMan 14th October 2011 17:49

Quote:

Originally Posted by daffy (Post 30609)
took me cpl hours to do lastnight, so gonna share it for the source, added bookmarks for torrents to

but as it sorted the mm chapters out ?

DAKz 14th October 2011 18:31

well...yea!!!
 
"FFS PPL READ GOD DAMMIT, WHAT AM I GOOGLE?"

Well yeah you are google, I see you signed in as google bot :lol:

x360zone 14th October 2011 18:44

GOD
 
god is like google "full of shit ' if your a none believer please check me out
http://www.google.co.uk/search?um=1&...it&btnG=Search

i told you now go wash your hands:war:

wMan 14th October 2011 19:22

Quote:

Originally Posted by x360zone (Post 30682)
god is like google "full of shit ' if your a none believer please check me out
http://www.google.co.uk/search?um=1&...it&btnG=Search

i told you now go wash your hands:war:

WTF

DAKz 14th October 2011 20:19

lol
 
Please sir may I have another? :smack:

wMan 14th October 2011 22:07

Quote:

Originally Posted by DAKz (Post 30684)
Please sir may I have another? :smack:

what a twat:drink:

x360zone 15th October 2011 01:51

?
 
twats r usefull aint they well to 90 % of men say they are:coffee:

DAKz 15th October 2011 02:51

tell you what....
 
Wolfman, you need to watch who your talking to son. I am not one of these people to fool with, and I have 4 ways into your server, so do not start no shit and there wont be none! I have not started anything with you, but you want to start some crap with me? You might want to reconsider real fast.

RIAS 20th November 2011 17:03

1 Attachment(s)
Quote:

Originally Posted by urliks (Post 30515)
Why do I have the following error? to do so would not be?
*** hidden content ***

Delete this on line 906 and 907

PHP Code:

reset($privatesmilies);
    while (list(
$code$url) = each($privatesmilies)) 


Crazzy 10th December 2011 22:34

i'm a problem i try upload a torrent and when redownload in utorrent client apear this
http://img641.imageshack.us/img641/5981/31660945.jpg

exoticious 14th December 2011 00:21

JoeSchmoe < news:i6e3h8$lej$:

xDev 7th January 2012 20:04

ok now ive coder alot of this code

1.A new torrents-details

2.A new signup page

3.3 new themes

4.much more

5.You can do ex.torrents as well as Private torrents

6. Pm me if you want a install there is fees to do so

LeeHowarth 7th January 2012 23:05

The Pear errors are because &= is depreciated simply change them to =

xDev 8th January 2012 20:29

Quote:

Originally Posted by daffy (Post 30609)
took me cpl hours to do lastnight, so gonna share it for the source, added bookmarks for torrents to

would be nice if you add the takedelbookmark.php to del from bookmarks

daffy 9th January 2012 00:46

Quote:

Originally Posted by Developer (Post 32135)
would be nice if you add the takedelbookmark.php to del from bookmarks

did i not add it? oh well, go grab it then and make it work. not hard.

xDev 9th January 2012 01:28

Quote:

Originally Posted by daffy (Post 32141)
did i not add it? oh well, go grab it then and make it work. not hard.

yep it is lol

daffy 9th January 2012 02:01

1 Attachment(s)
was hard yea :nosepick::secret::fire::ok:

Isload 10th January 2012 10:57

hmm..
 
Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\php\PEAR\Config.php on line 80

Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\php\PEAR\Config.php on line 166

Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\php\PEAR\Config\Container.php on line 111

xDev 10th January 2012 12:08

Quote:

Originally Posted by Isload (Post 32162)
Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\php\PEAR\Config.php on line 80

Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\php\PEAR\Config.php on line 166

Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\php\PEAR\Config\Container.php on line 111

lol windows server yet again did u read the nfo for this you have to edit paths to suite your os:muscle:
As im the man who recoder this as i said in a few post back it as new name and new update on it which im the only coder that as it and working on a live host, very nice too,As what it says above
Developer http://bvlist.com/images/styles/vers...ser_online.gif
Wannabe
i do not thick so boss you look at some of the shit on here from alot of your want to be coders and there is alot

LeeHowarth 10th January 2012 14:04

Quote:

Originally Posted by Isload (Post 32162)
Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\php\PEAR\Config.php on line 80

Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\php\PEAR\Config.php on line 166

Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\php\PEAR\Config\Container.php on line 111

Like i said &= is depreciated change them to =

xDev 10th January 2012 14:06

Quote:

Originally Posted by djhowarth (Post 32170)
Like i said &= is depreciated change them to =

you got it djhowarth

x360zone 10th January 2012 14:36

lol
 
is that because you dint know developoo:lol:

xDev 10th January 2012 14:49

Quote:

Originally Posted by x360zone (Post 32177)
is that because you dint know developoo:lol:

i did like i said in the post im not giving any help out for this at all like i said no credit for it so on like i said a few post back ive recoder it with a new name so on with alot more in it scan paypal user

danilxd 28th February 2013 14:31

I Have 2 Errors

Warning: stripslashes() expects parameter 1 to be string, array given in /home/shakepro/public_html/tracker/backend/functions.php on line 401


Invalid passkey.

WhyMe 16th February 2015 13:58

3 Attachment(s)
ill look into the error as the more smilys are doing this from page one

Bump: here is the fix for functions and index not tested let me know errors should be gone now

:muscle::muscle::muscle:


Replace those 2 files

Bump:
Quote:

Originally Posted by WhyMe (Post 46407)
ill look into the error as the more smilys are doing this from page one

Bump: here is the fix for functions and index not tested let me know errors should be gone now

:muscle::muscle::muscle:


Replace those 3 files


Replace those 3 files


All times are GMT +2. The time now is 05:03.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.