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


All times are GMT +2. The time now is 09:19.

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