Jump to content

bluerace

New Members
  • Posts

    5
  • Joined

  • Last visited

    Never

Contact Methods

  • Website URL
    http://www.nukekorea.net

Profile Information

  • Gender
    Not Telling

bluerace's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I don't want to post a relatively long answer. So, I put a link for you to ride on. http://www.nukekorea.net/modules.php?name=phpBB3&file=viewtopic&f=28&t=69
  2. bb2nuke PM does follow phpBB2 style coding. Simply weaving up a code file with <?php ....... ?> does not make sense in your casse.
  3. In your code, CREATE TABLE nuke_products (   id tinyint(4) NOT NULL auto_increment,   id_cat tinyint(4) NOT NULL default '0',   question varchar(255) default ",   answer text,   PRIMARY KEY  (id),   KEY id (id),   KEY id_cat (id_cat) ) TYPE=MyISAM; # # Dumping data for table `nuke_products` # # -------------------------------------------------------- # # Table structure for table `nuke_products` # CREATE TABLE nuke_products (   id_cat tinyint(3) NOT NULL auto_increment,   categories varchar(255) default NULL,   flanguage varchar(30) NOT NULL default ",   PRIMARY KEY  (id_cat),   KEY id_cat (id_cat) ) TYPE=MyISAM; # # Dumping data for table `products` # # -------------------------------------------------------- the table names you are creating are SAME!! add 2 to the end of the second table name. like this: CREATE TABLE nuke_products (   id tinyint(4) NOT NULL auto_increment,   id_cat tinyint(4) NOT NULL default '0',   question varchar(255) default ",   answer text,   PRIMARY KEY  (id),   KEY id (id),   KEY id_cat (id_cat) ) TYPE=MyISAM; # # Dumping data for table `nuke_products` # # -------------------------------------------------------- # # Table structure for table `nuke_products` # CREATE TABLE nuke_products2 (   id_cat tinyint(3) NOT NULL auto_increment,   categories varchar(255) default NULL,   flanguage varchar(30) NOT NULL default ",   PRIMARY KEY  (id_cat),   KEY id_cat (id_cat) ) TYPE=MyISAM; # # Dumping data for table `products` # # -------------------------------------------------------- Karkas guide is not good because it is so out-of-dated. That doesn't help you a lot and most of nuke persons.
  4. css, div, ajax do not matter in your site. Your site HTTP:// outbursting is so so so bad. Your server is not good enough to send images, which means that your server is more or less slow network.
  5. Yes, there is. phpBB3ToNuke team made it.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.