Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Community Cafe (http://www.bvlist.com/forumdisplay.php?f=18)
-   -   Need some help coding went wrong huh? (http://www.bvlist.com/showthread.php?t=8984)

KnightRaider 13th March 2013 03:47

Need some help coding went wrong huh?
 
Hi there, I was looking around and saw torrent-flux and decided to mess around with it, When I installed it however I get this weird code? I use Notepad++ and I can't understand why this is showing up?

Code:

Deprecated:  Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\torrentflux\adodb\adodb.inc.php on line 888

Deprecated:  Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\torrentflux\adodb\adodb.inc.php on line 1913

Deprecated:  Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\torrentflux\adodb\adodb.inc.php on line 1985

Deprecated:  Function ereg() is deprecated in C:\xampp\htdocs\torrentflux\functions.php on line 140

Deprecated:  Function ereg() is deprecated in C:\xampp\htdocs\torrentflux\functions.php on line 147



If anybody can help me that'd be great.

Thanks
KnightRaider.

Edit: also what does this mean and where do i find it?

Code:

Python Path
            Specify the path to the Python binary (usually /usr/bin/python or /usr/local/bin/python):

I'm using Windows 7 at the moment.

joeroberts 13th March 2013 05:13

would probly be able to help If I know what code source your talking about M8

KnightRaider 13th March 2013 05:14

Quote:

Originally Posted by joeroberts (Post 39935)
would probly be able to help If I know what code source your talking about M8

this one http://sourceforge.net/projects/torrentflux/

joeroberts 13th March 2013 06:41

that is a 4 year old source M8
First off I would turn off deprication notice in your php.ini
second change
PHP Code:

$rs =& new ADORecordSet_empty(); 

to
PHP Code:

$rs = new ADORecordSet_empty(); 

and
PHP Code:

$this->_metars =& new $rsclass(false,$this->fetchMode); 

to
PHP Code:

$this->_metars =& new $rsclass(false,$this->fetchMode); 

and
PHP Code:

$obj =& new $class($table,$primkeyArr,$this); 

to
PHP Code:

$obj = new $class($table,$primkeyArr,$this); 


KnightRaider 13th March 2013 06:43

Thanks I just like messing around with old stuff I guess :gum:

Edit: where do I find this php.ini?

Chez 13th March 2013 09:02

You will find PHP.ini in C:\xampp\php folder

Krypto 13th March 2013 09:44

Also Python does not come pre-installed on Windows and you'll have to add it then you'll be able to set up the path which would solve your other issue.

x360zone 13th March 2013 09:49

yep true
 
torrentflux was meant for linux os only have had a playaround on windows but causes more load and little issues for paths,

heres the latest version what got carried on by BerliOS

http://sourceforge.net/projects/tf-b...r.bz2/download

id suggest bangin it on a small vps/dedi to use and also has to be the most resource consuming client out there...

KnightRaider 13th March 2013 10:13

Thanks guys.


All times are GMT +2. The time now is 14:32.

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