Bravo List
Register
Go Back   > Bravo List > Source Code > Archived Trackers > Template Shares
Reply
  #1  
Old 20th January 2019, 23:17
dj_otrov's Avatar
dj_otrov dj_otrov is offline
Senior Member
 
Join Date: Jan 2012
Bulgaria
Posts: 142
Thumbs down error TS Special Edition v.5.6 ( Nulled by Danix )
step3
The installer has detected some problems with your server environment, which will not allow TS Special Edition v.5.6 ( Nulled by Danix ) to operate correctly. Please correct these issues and then refresh the page to re-check your environment.
TS Special Edition v.5.6 ( Nulled by Danix ) © 2019Welcome to mrdecoder's installation wizard for TS Special Edition v.5.6 ( Nulled by Danix )
(1) Creating table: `addedrequests` => error!!! 1064 : 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' at line 6
step4
The installer has detected some problems with your server environment, which will not allow TS Special Edition v.5.6 ( Nulled by Danix ) to operate correctly. Please correct these issues and then refresh the page to re-check your environment. Click here to to back step 3. Welcome to mrdecoder's installation wizard for TS Special Edition v.5.6 ( Nulled by Danix ) Mysql Error: 1062 : Duplicate entry '1' for key 'PRIMARY'

INSERT INTO `bannedemails` (`id`, `value`) VALUES (1, '@test.com @localhost');
Reply With Quote
  #2  
Old 20th January 2019, 23:28
djfenixx djfenixx is offline
Member
 
Join Date: Nov 2014
Posts: 1
Default
Quote:
Originally Posted by dj_otrov View Post
step3
The installer has detected some problems with your server environment, which will not allow TS Special Edition v.5.6 ( Nulled by Danix ) to operate correctly. Please correct these issues and then refresh the page to re-check your environment.
TS Special Edition v.5.6 ( Nulled by Danix ) © 2019Welcome to mrdecoder's installation wizard for TS Special Edition v.5.6 ( Nulled by Danix )
(1) Creating table: `addedrequests` => error!!! 1064 : 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' at line 6
step4
The installer has detected some problems with your server environment, which will not allow TS Special Edition v.5.6 ( Nulled by Danix ) to operate correctly. Please correct these issues and then refresh the page to re-check your environment. Click here to to back step 3. Welcome to mrdecoder's installation wizard for TS Special Edition v.5.6 ( Nulled by Danix ) Mysql Error: 1062 : Duplicate entry '1' for key 'PRIMARY'

INSERT INTO `bannedemails` (`id`, `value`) VALUES (1, '@test.com @localhost');
pishi mi na adres http://facebook.com/onyxorj shi ti pomogna
Reply With Quote
  #3  
Old 21st January 2019, 22:56
lafouine022 lafouine022 is offline
Senior Member
 
Join Date: Feb 2010
P2P
Posts: 120
Default
what is your version php and mysql?
__________________
Easy-tk - Seedbox pas cher!
Reply With Quote
  #4  
Old 2nd February 2019, 02:49
dj_otrov's Avatar
dj_otrov dj_otrov is offline
Senior Member
 
Join Date: Jan 2012
Bulgaria
Posts: 142
Post php
Quote:
Originally Posted by lafouine022 View Post
what is your version php and mysql?
php.5.6 + news version
Reply With Quote
  #5  
Old 3rd February 2019, 00:07
z3ro z3ro is offline
Senior Member
 
Join Date: Oct 2010
P2P
Posts: 121
Default
Quote:
Originally Posted by dj_otrov View Post
php.5.6 + news version
Hi

max php5.3
Reply With Quote
  #6  
Old 3rd February 2019, 12:51
Napon Napon is offline
Banned
 
Join Date: Feb 2016
P2P
Posts: 522
Default
Its not Hard Z3RO is it that shows how much you know about coding nothing

this is plane as day
before you install the Datbase
change edit
TYPE=MyISAM
On all
ENGINE=MyISAM
Also the create_tables insert phps
ALSO HERE IS FIX

Code:
$ts_tables[] = '
CREATE TABLE `bannedemails` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `value` mediumtext NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;';
Also look if you have TWO TABLE of the above

And if you have in the insert php

INSERT INTO `bannedemails` (`id`, `value`) VALUES (1, '@test.com @localhost');

Remove it as you do not need it on the insert it puts xam ban in there on install remove the lot then try installer again

Remove this in the insert.php


Code:
$_queries[] = '
 INSERT INTO `bannedemails` (`id`, `value`) VALUES
  (1, \'@test.com @localhost\');';
ts_tables find drop

Code:
 $ts_tables[] = '
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`)
) TYPE=MyISAM;';
Also drop and add

Code:
$ts_tables[] = '
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`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1;';
@The end of the day you need to Add to all the ts_tables

Code:
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1;';
And where theres no input example

Code:
 $ts_tables[] = '
CREATE TABLE `blackjack` (
`userid` int(11) NOT NULL default \'0\',
`points` int(11) NOT NULL default \'0\',
`status` enum(\'playing\',\'waiting\') NOT NULL default \'playing\',
`cards` text NOT NULL,
`date` datetime NOT NULL default \'0000-00-00 00:00:00\',
PRIMARY KEY (`userid`)
  ) ENGINE=MyISAM DEFAULT CHARSET=latin1;';
Code:
) ENGINE=MyISAM DEFAULT CHARSET=latin1;';
Ok here is the full fix for you download Replace
Attached Files
File Type: php create_tables.php (48.8 KB, 5 views)
File Type: php insert.php (113.9 KB, 5 views)

Last edited by Napon; 3rd February 2019 at 14:20.
Reply With Quote
  #7  
Old 3rd February 2019, 19:19
z3ro z3ro is offline
Senior Member
 
Join Date: Oct 2010
P2P
Posts: 121
Thumbs up
Quote:
Originally Posted by Napon View Post
Its not Hard Z3RO is it that shows how much you know about coding nothing

this is plane as day
before you install the Datbase
change edit
TYPE=MyISAM
On all
ENGINE=MyISAM
Also the create_tables insert phps
ALSO HERE IS FIX

Code:
$ts_tables[] = '
CREATE TABLE `bannedemails` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `value` mediumtext NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;';
Also look if you have TWO TABLE of the above

And if you have in the insert php

INSERT INTO `bannedemails` (`id`, `value`) VALUES (1, '@test.com @localhost');

Remove it as you do not need it on the insert it puts xam ban in there on install remove the lot then try installer again

Remove this in the insert.php


Code:
$_queries[] = '
 INSERT INTO `bannedemails` (`id`, `value`) VALUES
  (1, \'@test.com @localhost\');';
ts_tables find drop

Code:
 $ts_tables[] = '
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`)
) TYPE=MyISAM;';
Also drop and add

Code:
$ts_tables[] = '
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`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1;';
@The end of the day you need to Add to all the ts_tables

Code:
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1;';
And where theres no input example

Code:
 $ts_tables[] = '
CREATE TABLE `blackjack` (
`userid` int(11) NOT NULL default \'0\',
`points` int(11) NOT NULL default \'0\',
`status` enum(\'playing\',\'waiting\') NOT NULL default \'playing\',
`cards` text NOT NULL,
`date` datetime NOT NULL default \'0000-00-00 00:00:00\',
PRIMARY KEY (`userid`)
  ) ENGINE=MyISAM DEFAULT CHARSET=latin1;';
Code:
) ENGINE=MyISAM DEFAULT CHARSET=latin1;';
Ok here is the full fix for you download Replace
You idiot komplet nulled vezio o my good @Napon supercoder , and what he shows..... nothing

I no coder.

download and install , me look

O my god @Napon
Click the image to open in full size.
Click the image to open in full size.
Click the image to open in full size.
Click the image to open in full size.
Click the image to open in full size.

Last edited by z3ro; 3rd February 2019 at 20:05.
Reply With Quote
  #8  
Old 3rd February 2019, 20:36
Napon Napon is offline
Banned
 
Join Date: Feb 2016
P2P
Posts: 522
Default
Do not make out some fool as you are want to be coder
Reply With Quote
  #9  
Old 3rd February 2019, 20:52
z3ro z3ro is offline
Senior Member
 
Join Date: Oct 2010
P2P
Posts: 121
Default
Quote:
Originally Posted by Napon View Post
Do not make out some fool as you are want to be coder
I'm not a coder!!!!!!!!!!!!!

You are not you nor encoder
Reply With Quote
  #10  
Old 3rd February 2019, 21:12
dj_otrov's Avatar
dj_otrov dj_otrov is offline
Senior Member
 
Join Date: Jan 2012
Bulgaria
Posts: 142
Default error!!!
The installer has detected some problems with your server environment, which will not allow TS Special Edition v.5.6 ( Nulled by Danix ) to operate correctly. Please correct these issues and then refresh the page to re-check your environment. Welcome to mrdecoder's installation wizard for TS Special Edition v.5.6 ( Nulled by Danix )
(1) Creating table: `addedrequests` => error!!! 1064 : 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' at line 6

Bump: http://test01.x-cms.ml/
Reply With Quote
Reply

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



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