Bravo List
Register
Go Back   > Bravo List > P2P > Forum > Downloads
Reply
  #31  
Old 21st February 2012, 01:13
Petr1fied Petr1fied is offline
Senior Member
 
Join Date: Sep 2009
United Kingdom
Posts: 39
Default
Quote:
Originally Posted by dj_otrov View Post
Latest News
Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1272

Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1273

Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1274

Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1275

Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1276

Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1277
What do you expect for a script that hasn't been updated in nearly 3½ years?

Quote:
Originally Posted by Fynnon View Post
Release Date 10-10-2008 By FatePower
Just disable the output of Deprecated errors in php.ini, unless you're a developer you really shouldn't be outputting non fatal errors.

The functions still work fine and will continue to do so until the release of PHP 6.x.x, as this is a dead project running on an old core, unless someone else decides to take up the mantle it's not likely to be fixed by anyone. You can always update them to preg_replace() yourself.
Reply With Quote
  #32  
Old 25th February 2012, 02:11
dj_otrov's Avatar
dj_otrov dj_otrov is offline
Senior Member
 
Join Date: Jan 2012
Bulgaria
Posts: 142
Angry error
Latest News
Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1272

Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1273

Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1274

Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1275

Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1276

Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1277
Add Edit Delete Click the image to open in full size.Title: Uploaders Posted by: Otrov
Posted on: 22/02/2012 17:13


Balkan Ritam Info
Trazimo Uploaders
Tarsime Uploaders


Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1272

Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1273

Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1274

Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1275

Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1276

Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1277
Add Edit Delete
Reply With Quote
  #33  
Old 13th March 2012, 05:13
DAKz's Avatar
DAKz DAKz is offline
Senior Member
 
Join Date: Jul 2009
P2P
Posts: 380
Default errors for all!
You get errors on every code you try, all the different versions of each, you think maybe its not the code?

Bump: You get errors on every code you try, all the different versions of each, you think maybe its not the code?
__________________
Reply With Quote
  #34  
Old 1st January 2015, 20:20
vldutz1 vldutz1 is offline
Member
 
Join Date: Sep 2014
Posts: 6
Default Problem :(
Hi everyone, i tryed to install this script, but when i'm trying to import the DataBase, it appears this error:
Code:
Processing file: ../sql/database.sql

Starting at the line: 1

Error at the line 27: ) TYPE=MyISAM AUTO_INCREMENT=1 ;

Query: CREATE TABLE `addedrequests` ( `id` int(10) unsigned NOT NULL auto_increment, `requestid` int(10) unsigned NOT NULL default '0', `userid` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`id`), KEY `pollid` (`id`), KEY `userid` (`userid`) ) TYPE=MyISAM AUTO_INCREMENT=1 ;

MySQL: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'TYPE=MyISAM AUTO_INCREMENT=1' at line 8

Stopped on error
Any ideas? :(
Reply With Quote
  #35  
Old 2nd January 2015, 03:49
BamBam0077 BamBam0077 is offline
Banned
 
Join Date: Jul 2013
P2P
Posts: 410
Default
Quote:
Originally Posted by vldutz1 View Post
Code:
Query: CREATE TABLE `addedrequests` ( `id` int(10) unsigned NOT NULL auto_increment, `requestid` int(10) unsigned NOT NULL default '0', `userid` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`id`), KEY `pollid` (`id`), KEY `userid` (`userid`) ) TYPE=MyISAM AUTO_INCREMENT=1 ;
Try this:

Code:
CREATE TABLE `addedrequests` ( `id` int(10) unsigned NOT NULL auto_increment, `requestid` int(10) unsigned NOT NULL default '0', `userid` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`id`), KEY `pollid` (`id`), KEY `userid` (`userid`) ) ENGINE=MyISAM AUTO_INCREMENT=1;
--------------

Quote:
Originally Posted by dj_otrov View Post
Latest News
Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1277
Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1277
That function has been DEPRECATED as of PHP 5.3.0. Relying on this feature is highly discouraged. - http://php.net/manual/en/function.eregi-replace.php

Last edited by BamBam0077; 2nd January 2015 at 15:40. Reason: Tidy Up! ~ Happy New Years BravoList 2015
Reply With Quote
  #36  
Old 2nd January 2015, 17:27
Joe Joe is offline
Senior Member
 
Join Date: Apr 2010
P2P
Posts: 167
Default
GUYS give it a rest man this code is old and dead unless you plan on redoing the whole code give up !! !!
Reply With Quote
  #37  
Old 9th January 2024, 07:54
crowni's Avatar
crowni crowni is offline
Senior Member
 
Join Date: Apr 2009
Bulgaria
Posts: 129
Default BtiTracker 1.5.1
BtiTracker 1.5.1
Attached Files
File Type: zip BtiTracker-1.5.1-master.zip (6.15 MB, 8 views)
File Type: zip BtiTracker-1.5.0-master.zip (1.42 MB, 5 views)
Reply With Quote
The Following User Says Thank You to crowni For This Useful Post:
miralsplet (12th January 2024)
  #38  
Old 11th January 2024, 14:09
soneigr soneigr is offline
Senior Member
 
Join Date: Dec 2023
Greece
Posts: 63
Default
Parse error: syntax error, unexpected '?' in /www/_Btitracker/include/functions.php on line 355

Bump: Processing file: ../sql/database.sql
Starting at the line: 1
Error at the line 27: ) TYPE=MyISAM AUTO_INCREMENT=1 ;
Query: CREATE TABLE `addedrequests` ( `id` int(10) unsigned NOT NULL auto_increment, `requestid` int(10) unsigned NOT NULL default '0', `userid` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`id`), KEY `pollid` (`id`), KEY `userid` (`userid`) ) TYPE=MyISAM AUTO_INCREMENT=1 ;
MySQL: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'TYPE=MyISAM AUTO_INCREMENT=1' at line 8
Stopped on error

Last edited by soneigr; 11th January 2024 at 14:24.
Reply With Quote
  #39  
Old 13th January 2024, 01:51
mogo mogo is offline
Senior Member
 
Join Date: Jun 2020
P2P
Posts: 96
Default
Quote:
Originally Posted by soneigr View Post

Bump: Processing file: ../sql/database.sql
Starting at the line: 1
Error at the line 27: ) TYPE=MyISAM AUTO_INCREMENT=1 ;
Query: CREATE TABLE `addedrequests` ( `id` int(10) unsigned NOT NULL auto_increment, `requestid` int(10) unsigned NOT NULL default '0', `userid` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`id`), KEY `pollid` (`id`), KEY `userid` (`userid`) ) TYPE=MyISAM AUTO_INCREMENT=1 ;
MySQL: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'TYPE=MyISAM AUTO_INCREMENT=1' at line 8
Stopped on error
Change TYPE=MyISAM to ENGINE=MyISAM

Bump:
Quote:
Originally Posted by dj_otrov View Post
Latest News
Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1272

Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1273

Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1274

Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1275

Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1276

Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1277
Add Edit Delete Click the image to open in full size.Title: Uploaders Posted by: Otrov
Posted on: 22/02/2012 17:13


Balkan Ritam Info
Trazimo Uploaders
Tarsime Uploaders


Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1272

Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1273

Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1274

Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1275

Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1276

Deprecated: Function eregi_replace() is deprecated in /data/multiserv/users/806408/projects/1919362/www/include/functions.php on line 1277
Add Edit Delete
https://stackoverflow.com/questions/...-is-deprecated

Last edited by mogo; 13th January 2024 at 01:54. Reason: Edit link
Reply With Quote
  #40  
Old 13th January 2024, 08:26
crowni's Avatar
crowni crowni is offline
Senior Member
 
Join Date: Apr 2009
Bulgaria
Posts: 129
Default
This version 1.5.4 is not made properly and is full of holes! I do not recommend using it in this form!
Reply With Quote
Reply

Tags
btitracker , edition , pb

Thread Tools

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
FTS 1.1 Bug Fix Edition Phogo Free Torrent Source 45 16th March 2014 09:08
TS Special Edition v.5.6 need help stall20080 Template Shares 10 9th August 2012 10:46
Btitracker Problem Jack747 xBTiT 13 23rd January 2010 16:04
TS Special Edition v4.0 free87239888 Template Shares 1 29th June 2009 03:39



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