Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Template Shares (http://www.bvlist.com/forumdisplay.php?f=26)
-   -   error TS Special Edition v.5.6 ( Nulled by Danix ) (http://www.bvlist.com/showthread.php?t=11909)

dj_otrov 20th January 2019 23:17

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');

djfenixx 20th January 2019 23:28

Quote:

Originally Posted by dj_otrov (Post 53132)
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

lafouine022 21st January 2019 22:56

what is your version php and mysql?

dj_otrov 2nd February 2019 02:49

php
 
Quote:

Originally Posted by lafouine022 (Post 53137)
what is your version php and mysql?

php.5.6 + news version

z3ro 3rd February 2019 00:07

Quote:

Originally Posted by dj_otrov (Post 53216)
php.5.6 + news version

Hi

max php5.3

Napon 3rd February 2019 12:51

2 Attachment(s)
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

z3ro 3rd February 2019 19:19

Quote:

Originally Posted by Napon (Post 53222)
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 :lol:

I no coder.:sun:

download and install , me look

O my god :ok::sos: @Napon
http://p.coldline.hu/2019/02/03/3056...203-0PC7Bt.png
http://p.coldline.hu/2019/02/03/3056...203-ecqPw2.png
http://p.coldline.hu/2019/02/03/3056...203-fCU5ew.png
http://p.coldline.hu/2019/02/03/3056...203-z7pD9X.png
http://p.coldline.hu/2019/02/03/3056...203-xweje5.png

Napon 3rd February 2019 20:36

Do not make out some fool as you are want to be coder

z3ro 3rd February 2019 20:52

Quote:

Originally Posted by Napon (Post 53225)
Do not make out some fool as you are want to be coder

I'm not a coder!!!!!!!!!!!!!

You are not you nor encoder :lol:

dj_otrov 3rd February 2019 21:12

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/


All times are GMT +2. The time now is 10:47.

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