View Single Post
  #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