Page 2 of 2 FirstFirst 12
Results 11 to 14 of 14
  1. #11
    Join Date
    Oct 2006
    Location
    Peterborough, UK
    Posts
    3,855
    Tokens
    216

    Latest Awards:

    Default

    Quote Originally Posted by Invent View Post
    i lol'd
    Just cause you can't do it doesn't mean you have to laugh at others mr. chuckles.


    visit my internet web site on the internet
    http://dong.engineer/
    it is just videos by bill wurtz videos you have been warned

  2. #12
    Join Date
    Jul 2005
    Location
    North Wales
    Posts
    4,233
    Tokens
    2,009

    Latest Awards:


  3. #13
    Join Date
    Nov 2006
    Location
    Cheshire.
    Posts
    730
    Tokens
    250

    Default

    Quote Originally Posted by redtom View Post
    I just downloaded it and put it on my localhost, you need to put the SQL file or make an install for it, since then I won't have to try and figure it out.


    Give us an add like!

  4. #14
    Join Date
    Jul 2005
    Location
    North Wales
    Posts
    4,233
    Tokens
    2,009

    Latest Awards:

    Default

    Sorry, here it is:

    Create a database then run this;

    Code:
    CREATE TABLE `news` (
      `by` text NOT NULL,
      `title` text NOT NULL,
      `body` text NOT NULL,
      `id` int(11) NOT NULL auto_increment,
      PRIMARY KEY  (`id`)
    )
    And this;

    Code:
    CREATE TABLE `users` (
      `username` text NOT NULL,
      `password` text NOT NULL,
      `level` varchar(11) NOT NULL default '1',
      `id` int(11) NOT NULL auto_increment,
      PRIMARY KEY  (`id`)
    );
    INSERT INTO `users` VALUES ('admin', '4cb9c8a8048fd02294477fcb1a41191a', '2', 1);
    That will create the tables and create this account;

    Username: admin
    Password: changeme

Page 2 of 2 FirstFirst 12

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •