Jump to content

bluerace

New Members
  • Posts

    5
  • Joined

  • Last visited

    Never

Posts posted by bluerace

  1. 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.
  2. Hello folks!

     

    I am having a serious problem using Jquery Jcarousellite as I have 3 srolls in my home loading all products, it is more than a thousand. It takes a long time if loading via Internet Explorer as you can see at www.florflor.pt.

     

    I have tryed already lazy images, there´s not conflict, but it didn´t solve the problem.

     

    Also loading a div, using ajax but it didnt load the scripts and css from the main page (home).

     

    Please, does anyone had the same problem to sort it out for me??

     

     

    I will really apreciate any help.

     

    Rodrigo

    from Lisbon

    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.

×
×
  • 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.